/*
@File: Ledu HTML Template

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************
** - Default CSS Style 
** - Top Header Area CSS Style
** - Navbar Area CSS Style
** - Main Banner Area CSS Style
** - Inner Banner Area CSS Style 
** - Counter Area CSS Style 
** - Featured Area CSS Style 
** - Courses Area CSS Style
** - Cart Area CSS Style
** - Checkout Area CSS Style
** - Play Area CSS Style
** - FAQ Area CSS Style 
** - Instructors Area CSS Style 
** - Testimonials Area CSS Style
** - Enrolled Area CSS Style
** - Event Area CSS Style 
** - Contact Area CSS Style 
** - Blog Area CSS Style 
** - Blog Details Area CSS Style
** - Register Area CSS Style
** - Footer Area CSS Style
** - Other Area CSS Style


*******************************************
/*

/*================================================
Default CSS
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Merienda:wght@300..900&family=Outfit:wght@100..900&family=Salsa&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Merienda:wght@300..900&family=Outfit:wght@100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
:root {
  --bodyFonts: "Salsa", sans-serif;
  --mainColor: #08A9E6;
  --redColor: #EC272F;
  --titleColor: #21225F;
  --bodyColor: #555555;
  --whiteColor: #ffffff;
  --fontSize: 16px;
  --transition: 0.5s;
}

body {
  padding: 0;
  margin: 0;
  line-height: 1.6;
  color: var(--bodyColor);
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--bodyFonts);
}

p {
  color: var(--bodyColor);
  font-family: var(--bodyFonts);
  margin-bottom: 10px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
  transition: var(--transition);
  font-family: "Merienda", sans-serif;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

button {
  outline: 0;
  border: none;
}
button:focus {
  outline: 0;
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--titleColor);
  line-height: 1.4;
  font-family: "Merienda", sans-serif;
}

h3 {
  font-size: 22px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

img {
  max-width: 100%;
}

.pt-150 {
  padding-top: 150px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px !important;
}

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

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-20 {
  padding-top: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-10 {
  padding-bottom: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-45 {
  margin-bottom: 45px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.border-radius-5 {
  border-radius: 5px !important;
}

.border-radius-50 {
  border-radius: 50px !important;
}

.border-radius-0 {
  border-radius: 0 !important;
}
.border-radius-0 img {
  border-radius: 0 !important;
}

.box-shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.default-btn {
  padding: 15px 35px;
  text-align: center;
  color: var(--whiteColor);
  font-size: var(--fontSize);
  font-weight: 400;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  background: var(--mainColor);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
}
.default-btn i {
  position: relative;
  top: 3px;
  margin-left: 10px;
}
.default-btn:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 550px;
  height: 550px;
  margin: auto;
  background: var(--titleColor);
  border-radius: 50%;
  z-index: -1;
  transform-origin: top center;
  transform: translateX(-50%) translateY(-5%) scale(0.4);
  transition: transform 0.9s;
}
.default-btn.two {
  background: var(--redColor);
  color: var(--whiteColor);
}
.default-btn.two::before {
  background-color: var(--mainColor);
}
.default-btn:hover {
  color: var(--whiteColor) !important;
}
.default-btn:hover:before {
  transition: transform 1s;
  transform: translateX(-45%) translateY(0) scale(1);
  transform-origin: bottom center;
}

.section-title {
  position: relative;
  z-index: 1;
}
.section-title span {
  color: var(--mainColor);
  display: block;
  margin-bottom: 7px;
}
.section-title h2 {
  font-size: 35px;
  margin-top: 0;
  line-height: 1.2;
  margin-bottom: 0;
}
.section-title h2 b {
  color: var(--mainColor);
  font-weight: 700;
}
.section-title p {
  padding-top: 15px;
  margin-bottom: 0;
}
.section-title.text-center h2 {
  margin: 0 auto;
}
.section-title.text-center p {
  margin: 0 auto;
  max-width: 640px;
}

.section-bg {
  background-color: #F5F5F5;
}

/*================================================
Top Header CSS
=================================================*/
.top-header {
  padding: 15px 0;
  position: relative;
  z-index: 5;
  background-color: var(--titleColor);
}

.header-left {
  float: left;
}
.header-left ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header-left ul li {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  color: var(--whiteColor);
  margin-right: 35px;
  font-size: 15px;
}
.header-left ul li:last-child {
  margin-right: 0;
}
.header-left ul li i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 20px;
  color: var(--whiteColor);
}
.header-left ul li a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.header-left ul li a:hover {
  color: var(--mainColor);
}

.header-right {
  float: right;
}
.header-right .header-language {
  display: inline-block;
  margin-right: 20px;
  position: relative;
  top: -3px;
}
.header-right .header-language .dropdown-toggle {
  background-color: transparent;
  color: var(--whiteColor);
  font-size: 15px;
  display: flex;
  align-items: center;
  padding: 0;
  outline: 0;
  border: 0;
  transition: all 0.3s linear;
}
.header-right .header-language .dropdown-toggle:after {
  content: "\ea4e";
  font-family: "remixicon" !important;
  border: 0;
  margin-left: 8px;
  font-size: 20px;
  color: var(--yellowColor);
}
.header-right .header-language .dropdown-menu {
  margin: 0;
  padding: 0;
  box-shadow: 0px 9px 54px 0px rgba(32, 32, 32, 0.1);
  left: auto;
  right: 0;
  border: 0;
  border-radius: 0;
  transform: translateY(100px) !important;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s linear;
}
.header-right .header-language .dropdown-menu.show {
  transform: translateY(40px) !important;
  opacity: 1;
  pointer-events: all;
}
.header-right .header-language .dropdown-menu a {
  padding: 5px 25px;
  transition: all 0.3s linear;
  font-size: 15px;
}
.header-right .header-language .dropdown-menu a:active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.header-right .header-language .dropdown-menu a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.header-right .header-language .dropdown-menu a img {
  width: 20px;
  margin-right: 10px;
}
.header-right .header-language .dropdown-menu[style] {
  right: 0 !important;
  left: auto !important;
}
.header-right .social-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.header-right .social-list li {
  display: inline-block;
  margin-right: 10px;
}
.header-right .social-list li:last-child {
  margin-right: 0;
}
.header-right .social-list li a {
  color: var(--whiteColor);
  font-size: var(--fontSize);
  transition: var(--transition);
}
.header-right .social-list li a:hover {
  color: var(--mainColor);
}

/*================================
Navbar Area
===================================*/
.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar {
  background-color: var(--whiteColor);
  padding-right: 0;
  padding-top: 10px;
  padding-left: 0;
  padding-bottom: 10px;
}
.desktop-nav .navbar .navbar-brand .logo-two {
  display: none;
}
.desktop-nav .navbar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav {
  margin-left: auto;
  margin-right: 40px;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-right: 0;
  padding-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-toggle {
  padding-right: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-toggle::before {
  position: absolute;
  content: "\ea4e";
  line-height: 1;
  right: -2px;
  top: 6px;
  font-family: "remixicon" !important;
  font-size: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  font-size: 17px;
  color: var(--titleColor);
  position: relative;
  z-index: 1;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}
.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  background: var(--whiteColor);
  border: none;
  position: absolute;
  visibility: hidden;
  transform-origin: top;
  border-radius: 0;
  display: block;
  width: 250px;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  transform: scaleY(0);
  transition: var(--transition);
  padding-top: 2px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
  border-bottom: 1px solid #f0eeee;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child {
  border: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  color: var(--titleColor);
  padding: 12px 20px 9px;
  margin: 0;
  font-size: 15px;
  position: relative;
  transition: var(--transition);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle {
  padding-right: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  position: absolute;
  content: "\ea4e";
  line-height: 1;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "remixicon" !important;
  font-size: 17px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  left: -245px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  margin-top: 11px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -245px;
  right: auto;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
  font-size: 15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  left: -250px;
  top: 0;
  opacity: 0;
  visibility: hidden;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: var(--titleColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  top: -15px;
  visibility: visible;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
  transform: scaleY(1);
}

.ledu-area {
  background-color: #F5F5F5;
}
.ledu-area .navbar {
  background-color: transparent;
}

.navbar-area.is-sticky {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor) !important;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}

.nav-widget-form {
  margin-left: 10px;
}
.nav-widget-form .search-form {
  position: relative;
  margin: 0 auto;
  border-radius: 0;
  border: 1px solid #F5F5F5;
  width: 260px;
}
.nav-widget-form .search-form .form-control {
  background-color: var(--whiteColor);
  border-radius: 0;
  border: none;
  height: 50px;
  line-height: 50px;
  font-size: 17px;
  margin: 0;
  border: none;
  padding: 0 25px;
  color: var(--bodyColor);
}
.nav-widget-form .search-form .form-control::-webkit-input-placeholder, .nav-widget-form .search-form .form-control:-ms-input-placeholder, .nav-widget-form .search-form .form-control::-ms-input-placeholder, .nav-widget-form .search-form .form-control::placeholder {
  color: var(--bodyColor);
}
.nav-widget-form .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.nav-widget-form .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--bodyColor);
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  padding: 0 25px;
  transition: var(--transition);
}
.nav-widget-form .search-form button:hover {
  background: var(--mainColor);
  color: var(--whiteColor);
}
.nav-widget-form .search-form-bg {
  border: none;
}
.nav-widget-form .search-form-bg .form-control {
  background-color: #F5F5F5;
  border-radius: 50px;
}
.nav-widget-form .search-form-bg button {
  border-radius: 0 50px 50px 0;
}
.nav-widget-form .search-form-bg2 {
  border: none;
}
.nav-widget-form .search-form-bg2 .form-control {
  background-color: #F5F5F5;
  border-radius: 5px;
}
.nav-widget-form .search-form-bg2 button {
  border-radius: 0 5px 5px 0;
}

.navbar-category {
  margin-left: 15px;
}
.navbar-category .category-list-dropdown {
  display: inline-block;
}
.navbar-category .category-list-dropdown .btn {
  font-weight: 500;
  font-size: 17px;
  transition: 0.5s;
  color: var(--bodyColor);
}
.navbar-category .category-list-dropdown .btn i {
  font-size: 19px;
  position: relative;
  top: 4px;
  display: inline-block;
  margin-right: 10px;
}
.navbar-category .category-list-dropdown .btn:hover, .navbar-category .category-list-dropdown .btn:focus, .navbar-category .category-list-dropdown .btn.active {
  color: var(--mainColor);
  box-shadow: none;
  outline: none;
}
.navbar-category .category-list-dropdown .dropdown-menu {
  border: none;
  top: 170%;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 260px;
  display: block;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  position: absolute;
  visibility: hidden;
  background: var(--whiteColor);
  transition: all 0.7s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.navbar-category .category-list-dropdown .dropdown-menu a {
  padding: 12px 24px;
  display: block;
  color: var(--titleColor);
  font-size: 15px;
  font-weight: 600;
  background-color: transparent;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  border-radius: 0;
  transition: all 0.7s ease-in-out;
}
.navbar-category .category-list-dropdown .dropdown-menu a i {
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  top: 5px;
}
.navbar-category .category-list-dropdown .dropdown-menu a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
  box-shadow: none;
}
.navbar-category .category-list-dropdown .dropdown-menu a:last-child {
  border-bottom: 0;
}
.navbar-category .category-list-dropdown .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  top: 135%;
}
.navbar-category .category-list-dropdown .dropdown-toggle::after {
  display: none;
}

.mobile-responsive-nav {
  display: none;
}

.side-nav-responsive {
  display: none;
}
.side-nav-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 60px;
  top: -36px;
}
.side-nav-responsive .dot-menu .circle-inner {
  display: flex;
  align-items: center;
  height: 30px;
}
.side-nav-responsive .dot-menu .circle-inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: 0.7s;
  background-color: var(--mainColor);
}
.side-nav-responsive .dot-menu:hover .circle-inner .circle {
  background-color: var(--redColor);
}
.side-nav-responsive .container {
  position: relative;
  display: flex;
}
.side-nav-responsive .container .container {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 300px;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.7s;
  transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}
.side-nav-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.side-nav-responsive .side-nav-inner {
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
  background-color: var(--whiteColor);
}
.side-nav-responsive .side-nav-inner .side-nav {
  background-color: var(--mainColor);
  padding: 20px 15px 10px;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item {
  position: relative;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item:last-child {
  margin-bottom: 10px;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .default-btn {
  text-align: center;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .search-form {
  position: relative;
  margin: 0 auto;
  border-radius: 0;
  border: 1px solid #F5F5F5;
  width: 230px;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .search-form .form-control {
  background-color: var(--whiteColor);
  border-radius: 0;
  border: none;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  margin: 0;
  border: none;
  padding: 0 50px 0 15px;
  color: var(--bodyColor);
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .search-form .form-control::-webkit-input-placeholder, .side-nav-responsive .side-nav-inner .side-nav .side-item .search-form .form-control:-ms-input-placeholder, .side-nav-responsive .side-nav-inner .side-nav .side-item .search-form .form-control::-ms-input-placeholder, .side-nav-responsive .side-nav-inner .side-nav .side-item .search-form .form-control::placeholder {
  color: var(--bodyColor);
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  padding: 0 15px;
  transition: var(--transition);
}
.side-nav-responsive .side-nav-inner .side-nav .side-item .search-form button:hover {
  background: var(--redColor);
  color: var(--whiteColor);
}

/*================================
Main Banner Area
===================================*/
.banner-area {
  background-color: #F5F5F5;
  z-index: 1;
  position: relative;
}

.banner-area-ptb {
  padding-top: 140px;
  padding-bottom: 190px;
}

.banner-content span {
  font-size: 16px;
  color: var(--mainColor);
  display: block;
  margin-bottom: 15px;
}
.banner-content h1 {
  font-size: 60px;
  color: var(--titleColor);
  margin-bottom: 20px;
  line-height: 1.2;
}
.banner-content p {
  margin-bottom: 30px;
  max-width: 700px;
}
.banner-content .banner-form-area {
  margin-bottom: 30px;
}
.banner-content .banner-form-area .banner-form {
  position: relative;
  width: 650px;
}
.banner-content .banner-form-area .banner-form .form-control {
  background: var(--whiteColor);
  height: 55px;
  line-height: 55px;
  margin: 0;
  border-radius: 0;
  border: none;
  padding: 0 25px;
  max-width: 100%;
  color: var(--bodyColor);
  width: 600px;
}
.banner-content .banner-form-area .banner-form .form-control:focus {
  outline: none;
  box-shadow: none;
}
.banner-content .banner-form-area .banner-form .default-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 55px;
  border: 0;
}
.banner-content .banner-form-area .banner-form .default-btn i {
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.banner-content .banner-popular-tag {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.banner-content .banner-popular-tag li {
  display: inline-block;
}
.banner-content .banner-popular-tag li.title {
  color: var(--titleColor);
  font-weight: 600;
}
.banner-content .banner-popular-tag li a {
  color: var(--bodyColor);
  text-decoration: underline;
  transition: var(--transition);
}
.banner-content .banner-popular-tag li a:hover {
  color: var(--mainColor);
  letter-spacing: 0.25px;
}
.banner-content .banner-counter h3 {
  color: var(--titleColor);
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 600;
  display: inline-block;
}
.banner-content .banner-counter h3 .odometer {
  font-family: var(--bodyFonts);
  font-weight: 500;
}
.banner-content .banner-counter p {
  margin-bottom: 0;
  color: var(--bodyColor);
}

.banner-img {
  margin-left: 70px;
  position: relative;
  z-index: 1;
}
.banner-img .bg-shape {
  position: absolute;
  z-index: -1;
  top: 160px;
  left: -120px;
  right: 0;
  text-align: center;
}
.banner-img .bg-shape img {
  max-width: 550px;
}
.banner-img .top-content {
  position: absolute;
  top: 140px;
  left: -20px;
  padding: 15px;
  background-color: var(--whiteColor);
  display: flex;
  animation: movebounce 5s linear infinite;
}
.banner-img .top-content i {
  width: 45px;
  height: 45px;
  line-height: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  background-color: var(--titleColor);
  margin-right: 12px;
  text-align: center;
}
.banner-img .top-content .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.banner-img .top-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.banner-img .right-content {
  position: absolute;
  bottom: 200px;
  right: 0;
  padding: 15px;
  background-color: var(--whiteColor);
  display: flex;
  animation: movebounce 5s linear infinite;
}
.banner-img .right-content i {
  width: 45px;
  height: 45px;
  line-height: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  background-color: var(--titleColor);
  margin-right: 12px;
  text-align: center;
}
.banner-img .right-content .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.banner-img .right-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.banner-img .left-content {
  position: absolute;
  bottom: 70px;
  left: -20px;
  padding: 15px 15px 15px 65px;
  background-color: var(--whiteColor);
  animation: movebounce 5s linear infinite;
}
.banner-img .left-content img {
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 50%;
}
.banner-img .left-content .content {
  margin-bottom: 7px;
}
.banner-img .left-content .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.banner-img .left-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.banner-img .left-content .join-btn {
  padding: 7px 40px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  font-size: 13px;
  transition: 0.9s;
}
.banner-img .left-content .join-btn:hover {
  background-color: var(--titleColor);
}
.banner-img .banner-img-shape .shape1 {
  position: absolute;
  top: 30px;
  left: -100px;
  z-index: -1;
  animation: moveleftbounce 9s linear infinite;
}
.banner-img .banner-img-shape .shape2 {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: -1;
  animation: movebounce 5s linear infinite;
}

.banner-img-two {
  position: relative;
  z-index: 1;
  float: right;
  margin-right: 70px;
}
.banner-img-two img {
  max-width: 550px;
  animation: movebounce 5s linear infinite;
}
.banner-img-two .bg-shape {
  position: absolute;
  z-index: -1;
  top: 25px;
  left: 0;
  right: 0;
  text-align: center;
}
.banner-img-two .bg-shape img {
  max-width: 620px;
}

.banner-shape .banner-shape1 {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
  animation: moveleftbounce 9s linear infinite;
}

.hero-slider-area {
  background-color: #F5F5F5;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.hero-slider-area .hero-shape .shape1 {
  position: absolute;
  top: 70px;
  right: 20px;
  animation: rotated360 9s linear infinite;
}
.hero-slider-area .hero-shape .shape2 {
  position: absolute;
  bottom: 70px;
  left: 40%;
  animation: movebounce 5s linear infinite;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.hero-slider .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: transparent !important;
  color: var(--titleColor) !important;
  border: 1px solid var(--titleColor) !important;
  transition: 0.7s;
}
.hero-slider .owl-nav .owl-prev i {
  position: relative;
  top: 3px;
}
.hero-slider .owl-nav .owl-prev:hover {
  color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}
.hero-slider .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: transparent !important;
  color: var(--titleColor) !important;
  transition: 0.7s;
  border: 1px solid var(--titleColor) !important;
}
.hero-slider .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.hero-slider .owl-nav .owl-next:hover {
  color: var(--mainColor) !important;
  border-color: var(--mainColor) !important;
}
.hero-slider:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}
.hero-slider:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}

.hero-content {
  max-width: 640px;
}
.hero-content .top-title {
  font-size: 16px;
  color: var(--mainColor);
  display: block;
  margin-bottom: 15px;
}
.hero-content h1 {
  font-size: 60px;
  color: var(--titleColor);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content p {
  margin-bottom: 30px;
  max-width: 620px;
}
.hero-content .banner-btn {
  align-items: center;
  display: flex;
}
.hero-content .banner-btn .default-btn {
  margin-right: 20px;
  display: inline-flex;
}
.hero-content .banner-btn .play-btn {
  display: flex;
  align-items: center;
  color: var(--whiteColor);
}
.hero-content .banner-btn .play-btn i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  font-size: 18px;
  border-radius: 50px;
  margin: 0 auto;
  padding-left: 5px;
  padding-top: 3px;
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.hero-content .banner-btn .play-btn i::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid var(--whiteColor);
  border-radius: 50px;
  animation: ripple 2s infinite ease-in-out;
  transition: var(--transition);
}
.hero-content .banner-btn .play-btn .title-text {
  color: var(--bodyColor);
  margin-left: 15px;
  margin-bottom: 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--bodyColor);
}
.hero-content .banner-btn .play-btn:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.hero-content .banner-btn .play-btn:hover i::after {
  border-color: var(--mainColor);
}
.hero-content .banner-btn .play-btn:hover .title-text {
  color: var(--mainColor);
  border-color: var(--mainColor);
}

.hero-img {
  position: relative;
  z-index: 1;
}
.hero-img img {
  max-width: 550px;
}
.hero-img .hero-bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.hero-img .hero-bg-shape img {
  max-width: 582px;
}
.hero-img .hero-bg-shape .bg-img-shape2 {
  display: none !important;
}
.hero-img .hero-img-content {
  padding: 15px;
  background-color: var(--whiteColor);
  display: flex;
  border-radius: 10px;
}
.hero-img .hero-img-content i {
  width: 45px;
  height: 45px;
  line-height: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  background-color: var(--titleColor);
  margin-right: 12px;
  text-align: center;
  border-radius: 50px;
}
.hero-img .hero-img-content .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.hero-img .hero-img-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.hero-img .top-content {
  position: absolute;
  top: 140px;
  left: -20px;
  animation: movebounce 5s linear infinite;
}
.hero-img .right-content {
  position: absolute;
  bottom: 200px;
  right: 0;
  animation: movebounce 5s linear infinite;
}

.owl-item.active .hero-content .top-title {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.5s;
}
.owl-item.active .hero-content h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.7s;
}
.owl-item.active .hero-content p {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.9s;
}
.owl-item.active .hero-content .banner-btn {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.1s;
}
.owl-item.active .hero-img .hero {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 1.1s;
}
.owl-item.active .hero-img .hero-bg-shape {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.1s;
}
.owl-item.active .hero-img .top-content .hero-img-content {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.1s;
}
.owl-item.active .hero-img .right-content .hero-img-content {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 1.1s;
}

/*================================
Inner Banner Area
===================================*/
.inner-banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
/* .inner-banner::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--titleColor);
  opacity: 0.9;
} */
.inner-banner .inner-title {
  padding-top: 120px;
  padding-bottom: 120px;
}
.inner-banner .inner-title h3 {
  font-size: 36px;
  color: var(--whiteColor);
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 630px;
}
.inner-banner .inner-title.text-center h3 {
  margin-left: auto;
  margin-right: auto;
}
.inner-banner .inner-title .rating {
  color: var(--whiteColor);
  margin-bottom: 20px;
}
.inner-banner .inner-title .rating i {
  color: #FFC107;
  margin-right: 5px;
  line-height: 1;
  font-size: 18px;
  position: relative;
  top: 3px;
}
.inner-banner .inner-title .inner-banner-content {
  justify-content: space-between;
  display: flex;
  max-width: 500px;
  margin-bottom: 20px;
}
.inner-banner .inner-title .inner-banner-content .user-area {
  display: flex;
  align-items: center;
}
.inner-banner .inner-title .inner-banner-content .user-area img {
  border-radius: 50%;
  margin-right: 10px;
}
.inner-banner .inner-title .inner-banner-content .user-area h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
  transition: 0.7s;
  color: var(--whiteColor);
}
.inner-banner .inner-title .inner-banner-content .user-area:hover h3 {
  color: var(--mainColor);
}
.inner-banner .inner-title .inner-banner-content .course-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.inner-banner .inner-title .inner-banner-content .course-list li {
  display: inline-block;
  margin-right: 20px;
  color: var(--whiteColor);
  font-size: 16px;
}
.inner-banner .inner-title .inner-banner-content .course-list li::before {
  display: none;
}
.inner-banner .inner-title .inner-banner-content .course-list li:last-child {
  margin-right: 0;
}
.inner-banner .inner-title .inner-banner-content .course-list li i {
  color: var(--mainColor);
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inner-banner .inner-title ul li {
  font-size: 18px;
  color: #ffffff;
  display: inline-block;
  position: relative;
  font-family: "Salsa" , sans-serif;
  margin-right: 20px;
  font-weight: 600;
}
.inner-banner .inner-title ul li:last-child {
  margin-right: 0;
}
.inner-banner .inner-title ul li:last-child::before {
  display: none;
}
.inner-banner .inner-title ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -14px;
  transform: rotate(25deg);
  width: 1.5px;
  height: 20px;
  background-color: var(--whiteColor);
}
.inner-banner .inner-title ul li a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.inner-banner .inner-title ul li a:hover {
  color: var(--mainColor);
}

.inner-banner-bg {
  background-image: url(../images/aayura/breadcamp.jpg);
}

.inner-banner-bg2 {
  background-image: url(../images/inner-banner/inner-banner2.jpg);
}

.inner-banner-bg3 {
  background-image: url(../images/inner-banner/inner-banner3.jpg);
}

.inner-banner-bg4 {
  background-image: url(../images/inner-banner/inner-banner4.jpg);
}

.inner-banner-bg5 {
  background-image: url(../images/inner-banner/inner-banner5.jpg);
}

.inner-banner-bg6 {
  background-image: url(../images/inner-banner/inner-banner6.jpg);
}

.inner-banner-bg7 {
  background-image: url(../images/inner-banner/inner-banner7.jpg);
}

.inner-banner-bg8 {
  background-image: url(../images/inner-banner/inner-banner8.jpg);
}

.inner-banner-bg9 {
  background-image: url(../images/inner-banner/inner-banner9.jpg);
}

.inner-banner-bg10 {
  background-image: url(../images/inner-banner/inner-banner10.jpg);
}

.inner-banner-bg11 {
  background-image: url(../images/inner-banner/inner-banner11.jpg);
}

.inner-banner-bg12 {
  background-image: url(../images/inner-banner/inner-banner12.jpg);
}

/*================================
Counter Area
===================================*/
.counter-area {
  background-color: var(--titleColor);
}

.counter-content {
  padding-left: 90px;
  position: relative;
  margin-bottom: 30px;
}
.counter-content i {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  font-size: 55px;
  line-height: 1;
  color: var(--whiteColor);
  transition: var(--transition);
}
.counter-content i::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -5px;
  right: -15px;
  width: 43px;
  height: 40px;
  border-radius: 30px;
  transition: var(--transition);
  background: var(--mainColor);
  opacity: 0.7;
}
.counter-content h3 {
  color: var(--whiteColor);
  font-size: 35px;
  margin-bottom: 0;
  font-weight: 500;
}
.counter-content h3 .odometer {
  font-family: var(--bodyFonts);
  font-weight: 500;
}
.counter-content p {
  margin-bottom: 0;
  color: var(--whiteColor);
}
.counter-content:hover i {
  transform: translateY(-5px);
}
.counter-content:hover i::after {
  transform: scale(1.2);
}

.counter-area-two {
  position: relative;
  z-index: 1;
}
.counter-area-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: #F5F5F5;
}

.counter-max {
  background-color: var(--mainColor);
  padding: 100px 60px 100px 100px;
  border-radius: 10px;
}
.counter-max .counter-content i::after {
  background-color: var(--whiteColor);
  opacity: 0.5;
}

.counter-card {
  padding: 30px 30px 30px 120px;
  position: relative;
  background-color: var(--whiteColor);
  margin-bottom: 30px;
}
.counter-card i {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 30px;
  font-size: 55px;
  line-height: 1;
  color: var(--mainColor);
  transition: var(--transition);
}
.counter-card i::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -5px;
  right: -15px;
  width: 37px;
  height: 35px;
  border-radius: 30px;
  transition: var(--transition);
  background: var(--mainColor);
  opacity: 0.5;
}
.counter-card h3 {
  font-size: 35px;
  margin-bottom: 0;
  font-weight: 500;
}
.counter-card h3 .odometer {
  font-family: var(--bodyFonts);
  font-weight: 500;
}
.counter-card p {
  margin-bottom: 0;
}
.counter-card:hover i {
  transform: translateY(-5px);
}
.counter-card:hover i::after {
  transform: scale(1.2);
}

/*================================
Featured Area
===================================*/
.featured-area-mt {
  position: relative;
  margin-top: -50px;
  z-index: 2;
}

.featured-card {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--mainColor);
  opacity: 0;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.featured-card a {
  display: flex;
  align-items: center;
}
.featured-card a i {
  width: 60px;
  height: 60px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  color: var(--mainColor);
  background: rgba(8, 169, 230, 0.1);
  margin-right: 15px;
  transition: 0.9s;
}
.featured-card a h3 {
  margin-bottom: 0;
  transition: 0.9s;
}
.featured-card:hover::before {
  opacity: 1;
  width: 100%;
}
.featured-card:hover a i {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}
.featured-card:hover a h3 {
  color: var(--whiteColor);
}

.featured-item {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 35px 35px 35px 110px;
  position: relative;
  border-radius: 5px;
  margin-bottom: 30px;
}
.featured-item i {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 55px;
  height: 55px;
  line-height: 60px;
  color: var(--mainColor);
  background: rgba(8, 169, 230, 0.1);
  font-size: 22px;
  border: 1px dashed var(--mainColor);
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  transition: 0.7s;
}
.featured-item h3 {
  margin-bottom: 10px;
}
.featured-item p {
  margin-bottom: 0;
}
.featured-item:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.featured-item-two {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border-radius: 10px;
}
.featured-item-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--mainColor);
  opacity: 0;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  border-radius: 10px;
}
.featured-item-two a {
  display: flex;
  align-items: center;
}
.featured-item-two a i {
  padding-top: 10px;
  padding-left: 10px;
  position: relative;
  font-size: 55px;
  text-align: center;
  line-height: 1;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: transparent;
  margin-right: 18px;
}
.featured-item-two a i::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -5px;
  left: -5px;
  width: 47px;
  height: 47px;
  border-radius: 30px;
  transition: var(--transition);
  background: var(--mainColor);
  opacity: 0.1;
}
.featured-item-two a h3 {
  margin-bottom: 0;
  transition: 0.9s;
}
.featured-item-two:hover::before {
  opacity: 1;
  width: 100%;
}
.featured-item-two:hover a i {
  transform: translateY(-5px);
  color: var(--whiteColor);
}
.featured-item-two:hover a i::after {
  transform: scale(1.2);
  background: var(--whiteColor);
  opacity: 0.15;
}
.featured-item-two:hover a h3 {
  color: var(--whiteColor);
}

.categories-area {
  position: relative;
}
.categories-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.categories-area .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: -90px;
  right: 50px;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.categories-area .owl-nav .owl-prev i {
  position: relative;
  top: 3px;
}
.categories-area .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.categories-area .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: -90px;
  right: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.categories-area .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.categories-area .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}

.categories-item {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border-radius: 10px;
}
.categories-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background-color: var(--mainColor);
  opacity: 0;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  border-radius: 10px;
}
.categories-item a {
  display: block;
}
.categories-item a img {
  border-radius: 10px 10px 0 0;
}
.categories-item .content {
  padding: 30px 20px;
}
.categories-item .content a {
  display: flex;
  align-items: center;
}
.categories-item .content a i {
  width: 60px;
  height: 60px;
  line-height: 65px;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  color: var(--mainColor);
  background: rgba(8, 169, 230, 0.1);
  margin-right: 20px;
  transition: 0.9s;
}
.categories-item .content a h3 {
  margin-bottom: 0;
  transition: 0.9s;
}
.categories-item:hover::before {
  opacity: 1;
  height: 100%;
}
.categories-item:hover .content a i {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}
.categories-item:hover .content a h3 {
  color: var(--whiteColor);
}

/*=================================
Courses Area
====================================*/
.courses-area {
  position: relative;
}
.courses-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.courses-area .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: -90px;
  right: 50px;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.courses-area .owl-nav .owl-prev i {
  position: relative;
  top: 3px;
}
.courses-area .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.courses-area .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: -90px;
  right: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.courses-area .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.courses-area .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}

.courses-area-two {
  position: relative;
  overflow: hidden;
}
.courses-area-two .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.courses-area-two .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.courses-area-two .owl-nav .owl-prev i {
  position: relative;
  top: 3px;
}
.courses-area-two .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.courses-area-two .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.courses-area-two .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.courses-area-two .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.courses-area-two:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}
.courses-area-two:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}

.courses-item {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: rgba(0, 0, 0, 0.06) 0 0 15px;
  transition: 0.7s;
}
.courses-item a {
  display: block;
}
.courses-item .content {
  padding: 30px;
  position: relative;
}
.courses-item .content .course-instructors {
  position: absolute;
  right: 30px;
  top: -50px;
}
.courses-item .content .course-instructors img {
  border-radius: 50%;
  border: 2px solid var(--whiteColor);
}
.courses-item .content .tag-btn {
  background-color: rgba(8, 169, 230, 0.1);
  padding: 5px 20px;
  color: var(--mainColor);
  display: inline-block;
  transition: var(--transition);
  font-weight: 500;
}
.courses-item .content .tag-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.courses-item .content .price-text {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--mainColor);
  font-size: 22px;
  font-weight: 600;
}
.courses-item .content h3 {
  margin-top: 17px;
  margin-bottom: 17px;
}
.courses-item .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.courses-item .content .course-list {
  margin: 0 0 15px;
  padding: 0 0 15px;
  list-style-type: none;
  border-bottom: 1px solid #E7E5E5;
}
.courses-item .content .course-list li {
  display: inline-block;
  margin-right: 30px;
  color: var(--bodyColor);
}
.courses-item .content .course-list li:last-child {
  margin-right: 0;
}
.courses-item .content .course-list li i {
  color: var(--mainColor);
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.courses-item .content .bottom-content {
  justify-content: space-between;
  display: flex;
}
.courses-item .content .bottom-content .user-area {
  display: flex;
  align-items: center;
}
.courses-item .content .bottom-content .user-area img {
  border-radius: 50%;
  margin-right: 10px;
}
.courses-item .content .bottom-content .user-area h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
  transition: 0.7s;
}
.courses-item .content .bottom-content .user-area:hover h3 {
  color: var(--mainColor);
}
.courses-item .content .bottom-content .rating {
  color: var(--bodyColor);
}
.courses-item .content .bottom-content .rating i {
  color: #FFC107;
  margin-right: 5px;
  line-height: 1;
  font-size: 18px;
  position: relative;
  top: 3px;
}
.courses-item .content .bottom-content .rating2 {
  color: var(--bodyColor);
}
.courses-item .content .bottom-content .rating2 i {
  color: #FFC107;
  margin-right: 5px;
  line-height: 1;
  font-size: 18px;
  position: relative;
  top: 3px;
}
.courses-item .content .bottom-content .bottom-price {
  color: var(--mainColor);
  font-size: 22px;
  font-weight: 600;
}
.courses-item:hover {
  transform: translateY(-10px);
}
.courses-item:hover .content h3 a {
  color: var(--mainColor);
}

.courses-page-side-bar-widget {
  margin-bottom: 30px;
  padding: 25px;
  border: 1px solid #F5F5F5;
}
.courses-page-side-bar-widget .title {
  font-size: 22px;
  margin-bottom: 20px;
}
.courses-page-side-bar-widget .courses-page-content {
  list-style-type: none;
  position: relative;
  margin: 0;
  padding: 0;
}
.courses-page-side-bar-widget .courses-page-content li {
  display: block;
  margin-bottom: 10px;
}
.courses-page-side-bar-widget .courses-page-content li:last-child {
  margin-bottom: 0;
}
.courses-page-side-bar-widget .courses-page-content li label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--bodyColor);
  width: 100%;
}
.courses-page-side-bar-widget .courses-page-content li label span {
  text-align: center;
  display: inline-block;
  width: 24px;
  line-height: 24px;
  height: 24px;
  background-color: #DFF3EF;
  color: var(--mainColor);
  font-weight: 600;
  transition: var(--transition);
  font-size: 14px;
}
.courses-page-side-bar-widget .courses-page-content li label span.fl {
  float: right;
}
.courses-page-side-bar-widget .courses-page-content li label span:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.courses-page-side-bar-widget .courses-page-content li label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 2px;
  background-color: #fff;
  border: 1px solid #ECEDF2;
  border-radius: 10px;
  box-sizing: border-box;
  transition: all 0.25s;
  font-family: "remixicon" !important;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
  line-height: 17px;
}
.courses-page-side-bar-widget .courses-page-content li input[type=checkbox] {
  display: none;
}
.courses-page-side-bar-widget .courses-page-content li input[type=checkbox]:checked + label:before {
  content: "\eb7b";
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  font-family: "remixicon" !important;
}
.courses-page-side-bar-widget .courses-page-content li:hover span {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.courses-details-tab .tabs {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.courses-details-tab .tabs li {
  display: inline-block;
  margin-right: 20px;
  color: var(--titleColor);
  padding: 12px 25px;
  background-color: #F5F5F5;
  cursor: pointer;
  transition: var(--transition);
}
.courses-details-tab .tabs li:focus {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.courses-details-tab .tabs li.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.courses-details-tab .tabs li.current {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.courses-details-tab .tabs li:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.tab .tabs_item {
  display: none;
}
.tab .tabs_item:first-child {
  display: block;
}

.courses-details-tab-content .event-details-mt-30 {
  margin-top: 30px;
}
.courses-details-tab-content h1, .courses-details-tab-content h2, .courses-details-tab-content h3, .courses-details-tab-content h4, .courses-details-tab-content h5, .courses-details-tab-content h6 {
  margin-bottom: 15px;
}
.courses-details-tab-content h1 {
  font-size: 32px;
}
.courses-details-tab-content h2 {
  font-size: 29px;
}
.courses-details-tab-content h3 {
  font-size: 26px;
}
.courses-details-tab-content h4 {
  font-size: 23px;
}
.courses-details-tab-content h5 {
  font-size: 20px;
}
.courses-details-tab-content h6 {
  font-size: 17px;
}
.courses-details-tab-content a {
  color: var(--mainColor);
}
.courses-details-tab-content a:hover {
  color: var(--titleColor);
  border-bottom: 1px solid var(--mainColor);
}
.courses-details-tab-content ul, .courses-details-tab-content ol {
  margin-bottom: 30px;
}
.courses-details-tab-content ul li, .courses-details-tab-content ol li {
  margin-bottom: 10px;
}
.courses-details-tab-content ul li:last-child, .courses-details-tab-content ol li:last-child {
  margin-bottom: 0;
}
.courses-details-tab-content p {
  margin-bottom: 15px;
}
.courses-details-tab-content .courses-details-into {
  margin-bottom: 30px;
}
.courses-details-tab-content .courses-details-into .courses-details-list {
  margin: 0 0 15px;
  list-style-type: none;
  padding: 0;
}
.courses-details-tab-content .courses-details-into .courses-details-list li {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 5px;
  padding-left: 25px;
}
.courses-details-tab-content .courses-details-into .courses-details-list li:last-child {
  margin-bottom: 0;
}
.courses-details-tab-content .courses-details-into .courses-details-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--mainColor);
}
.courses-details-tab-content .courses-details-accordion {
  margin-bottom: 30px;
}
.courses-details-tab-content .courses-details-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  border: none;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 15px;
  border: 1px solid #e7e7ec;
  background-color: var(--whiteColor);
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-title {
  color: var(--titleColor);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headerFonts);
  padding: 20px;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  line-height: 30px;
  color: var(--titleColor);
  text-align: center;
  background-color: transparent;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-title.active {
  color: var(--mainColor);
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-title.active i {
  color: var(--mainColor);
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-title.active i::before {
  content: "\f1af";
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content {
  display: none;
  position: relative;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content .accordion-content-list {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e7e7ec;
  padding: 20px;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content .accordion-content-list .accordion-content-left i {
  position: relative;
  top: 3px;
  margin-right: 10px;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content .accordion-content-list .accordion-content-right span {
  margin-right: 10px;
  color: #adadad;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content .accordion-content-list .accordion-content-right .tag {
  display: inline-block;
  padding: 7px 15px;
  color: var(--mainColor);
  font-size: 14px;
  background-color: rgba(8, 169, 230, 0.1);
  margin-right: 10px;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content .accordion-content-list .accordion-content-right .tag2 {
  display: inline-block;
  padding: 7px 15px;
  color: var(--redColor);
  font-size: 14px;
  background-color: rgba(236, 39, 47, 0.1);
  margin-right: 10px;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content .accordion-content-list .accordion-content-right i {
  color: var(--bodyColor);
  font-size: 18px;
  position: relative;
  top: 5px;
}
.courses-details-tab-content .courses-details-accordion .accordion .accordion-content.show {
  display: block;
}
.courses-details-tab-content .courses-details-instructor {
  margin-bottom: 30px;
}
.courses-details-tab-content .courses-details-instructor h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.courses-details-tab-content .courses-details-instructor .details-instructor {
  padding: 10px 10px 10px 90px;
  position: relative;
  margin-bottom: 20px;
}
.courses-details-tab-content .courses-details-instructor .details-instructor img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.courses-details-tab-content .courses-details-instructor .details-instructor h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.courses-details-tab-content .courses-details-instructor .details-instructor span {
  margin-bottom: 0;
}
.courses-details-tab-content .courses-details-instructor .course-list {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
  border-bottom: 1px solid #E7E5E5;
}
.courses-details-tab-content .courses-details-instructor .course-list li {
  display: inline-block;
  margin-right: 30px;
  color: var(--bodyColor);
}
.courses-details-tab-content .courses-details-instructor .course-list li:last-child {
  margin-right: 0;
}
.courses-details-tab-content .courses-details-instructor .course-list li i {
  color: var(--mainColor);
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.courses-details-tab-content .courses-details-review-form .review-title {
  position: relative;
}
.courses-details-tab-content .courses-details-review-form .review-title .rating {
  display: inline-block;
}
.courses-details-tab-content .courses-details-review-form .review-title .rating i {
  color: #ffc107;
  font-size: 14px;
}
.courses-details-tab-content .courses-details-review-form .review-title .rating p {
  margin-bottom: 0;
  display: inline-block;
  padding-left: 5px;
  line-height: initial;
}
.courses-details-tab-content .courses-details-review-form .review-title .btn-right {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  padding: 7px 15px;
  border-radius: 5px;
}
.courses-details-tab-content .courses-details-review-form .review-title .btn-right:hover {
  background-color: var(--titleColor);
  color: var(--whiteColor);
}
.courses-details-tab-content .courses-details-review-form .review-comments {
  margin-top: 35px;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  padding-right: 200px;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .content {
  position: relative;
  z-index: 1;
  padding: 3px 0 3px 80px;
  margin-bottom: 15px;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .content img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  max-width: 60px;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .content .content-dtls h4 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .content .content-dtls span {
  color: var(--mainColor);
  font-size: 14px;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .rating i {
  color: #ffc107;
  font-size: 14px;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item h3 {
  font-size: 21px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: var(--titleColor);
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item p {
  margin-bottom: 0;
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .review-report-link {
  position: absolute;
  right: 0;
  color: rgba(218, 29, 37, 0.0053);
  top: 40px;
  text-decoration: underline;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.courses-details-tab-content .courses-details-review-form .review-comments .review-item .review-report-link:hover {
  color: var(--mainColor);
}
.courses-details-tab-content .courses-details-review-form .review-form {
  margin-top: 25px;
}
.courses-details-tab-content .courses-details-review-form .review-form .contact-form {
  max-width: 100%;
  margin: 0 auto 30px;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.courses-details-tab-content .courses-details-review-form .review-form .contact-form h4 {
  margin-bottom: 25px;
}
.courses-details-tab-content .courses-details-review-form .review-form .contact-form .form-group .form-control {
  background-color: #F5F5F5;
}

.courses-details-sidebar {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  margin-top: -250px;
  margin-bottom: 30px;
}
.courses-details-sidebar .content {
  padding: 30px;
}
.courses-details-sidebar .content h3 {
  margin-bottom: 10px;
}
.courses-details-sidebar .content span {
  color: var(--titleColor);
  margin-bottom: 10px;
  font-weight: 600;
}
.courses-details-sidebar .content .courses-details-list {
  list-style-type: none;
  margin: 15px 0;
  padding: 0;
}
.courses-details-sidebar .content .courses-details-list li {
  display: block;
  margin-bottom: 5px;
  color: var(--bodyColor);
}
.courses-details-sidebar .content .courses-details-list li:last-child {
  margin-bottom: 0;
}
.courses-details-sidebar .content .default-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.courses-details-sidebar .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.courses-details-sidebar .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.courses-details-sidebar .social-link li.social-title {
  font-size: 18px;
  color: var(--titleColor);
}
.courses-details-sidebar .social-link li:last-child {
  margin-right: 0;
}
.courses-details-sidebar .social-link li a {
  display: inline-block;
}
.courses-details-sidebar .social-link li a i {
  font-size: 15px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  color: var(--mainColor);
  background-color: transparent;
  transition: var(--transition);
  display: inline-block;
  border: 1px solid var(--mainColor);
}
.courses-details-sidebar .social-link li a:hover i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.product-topper .product-title h3 {
  font-family: var(--bodyFonts);
  font-size: 16px;
  color: var(--bodyColor);
  margin-bottom: 0;
  font-weight: 500;
}
.product-topper .product-title h3 span {
  color: var(--mainColor);
}
.product-topper .product-list {
  vertical-align: middle;
  position: relative;
  background-color: transparent;
  border: 1px solid #EEEEEE;
}
.product-topper .product-list i {
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 15px;
  color: var(--bodyColor);
  font-size: 20px;
  transition: var(--transition);
}
.product-topper .product-list .form-select {
  color: var(--bodyColor);
  background-color: transparent;
  border: 0;
  background-image: unset;
  padding: 12px 40px 12px 20px;
}
.product-topper .product-list .form-select:focus {
  box-shadow: none;
}
.product-topper .product-list .form-select:focus i {
  transform: rotate(-45deg);
}
.product-topper .product-list .form-select option {
  color: var(--bodyColor);
  padding-top: 5px;
  padding-bottom: 5px;
}
.product-topper .product-list:hover {
  box-shadow: none;
}
.product-topper .product-list:hover i {
  transform: rotate(180deg);
}

/*=================================
Cart Area
====================================*/
.cart-wraps-area .cart-wraps {
  margin-bottom: 30px;
}
.cart-wraps-area .cart-table .table {
  --bs-table-bg: transparent;
}
.cart-wraps-area .cart-table table {
  margin-bottom: 0;
}
.cart-wraps-area .cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 15px 0;
  border: none;
  font-weight: 700;
  font-size: 18px;
}
.cart-wraps-area .cart-table table tbody tr td {
  vertical-align: middle;
  color: var(--titleColor);
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  font-size: 15px;
  border-color: #eeeeee;
  border-left: none;
  border-right: none;
}
.cart-wraps-area .cart-table table tbody tr td.courses-thumbnail a {
  display: block;
}
.cart-wraps-area .cart-table table tbody tr td.courses-thumbnail a img {
  background-color: #f2f6fe;
  padding: 1.5px;
  max-width: 125px;
}
.cart-wraps-area .cart-table table tbody tr td.courses-name a {
  color: var(--titleColor);
  font-weight: 600;
  display: inline-block;
  font-size: 16px;
}
.cart-wraps-area .cart-table table tbody tr td.courses-name a:hover {
  color: var(--mainColor) !important;
}
.cart-wraps-area .cart-table table tbody tr td.courses-subtotal .remove {
  color: var(--bodyColor);
  float: right;
  position: relative;
  top: 1px;
  transition: all 0.5s;
}
.cart-wraps-area .cart-table table tbody tr td.courses-subtotal .remove i {
  font-size: 24px;
}
.cart-wraps-area .cart-table table tbody tr td.courses-subtotal .remove:hover {
  color: var(--greenColor);
}
.cart-wraps-area .cart-table table tbody tr td.courses-subtotal span {
  font-weight: 600;
}
.cart-wraps-area .cart-table .table > :not(:first-child) {
  border-top: none;
}
.cart-wraps-area .cart-buttons {
  margin-top: 30px;
}

.cart-totals {
  border-radius: 0;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-left: 30px;
  margin-bottom: 30px;
}
.cart-totals h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.cart-totals ul {
  padding: 0;
  margin: 0 0 25px;
  list-style-type: none;
}
.cart-totals ul li {
  border-bottom: 1px solid #eeeeee;
  padding: 10px 15px;
  color: var(--bodyColor);
  overflow: hidden;
  font-weight: 500;
}
.cart-totals ul li span {
  float: right;
  color: var(--titleColor);
  font-weight: normal;
}

/*=================================
Checkout Area
===================================*/
.checkout-user {
  color: var(--titleColor);
  font-size: 16px;
  margin-bottom: 30px;
  border-left: 2px solid var(--mainColor);
  padding: 15px 25px;
  background-color: var(--whiteColor);
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
}
.checkout-user span {
  color: var(--bodyColor);
  font-size: 18px;
}
.checkout-user span a {
  color: var(--mainColor);
}
.checkout-user span a:hover {
  color: var(--titleColor);
}

.billing-details {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  padding: 50px 30px 25px 30px;
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
}
.billing-details h3 {
  font-size: 24px;
  color: var(--titleColor);
  margin-bottom: 25px;
  font-weight: 600;
}
.billing-details .form-group {
  margin-bottom: 25px;
}
.billing-details .form-group label {
  color: var(--titleColor);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.billing-details .form-group label span {
  color: var(--mainColor);
}
.billing-details .form-group .form-control {
  height: 50px;
  color: var(--bodyColor);
  border: none;
  background-color: #f9f8f8;
  border-radius: 0;
  padding: 10px 20px;
  width: 100%;
}
.billing-details .form-group .form-control:focus, .billing-details .form-group .form-control :hover {
  outline: 0;
  box-shadow: none;
}
.billing-details .form-group .form-message {
  font-size: 16px;
  border: none;
  background-color: #f9f8f8;
  padding: 18px 18px;
  font-weight: 400;
  width: 100%;
}
.billing-details .form-group .form-message:focus, .billing-details .form-group .form-message :hover {
  outline: 0;
  box-shadow: none;
}
.billing-details .form-check {
  margin-bottom: 15px;
}
.billing-details .form-check .form-check-input {
  width: 15px;
  height: 15px;
}
.billing-details .form-check .form-check-label {
  color: var(--titleColor);
  margin-left: 5px;
  font-weight: 500;
}

.billing-totals {
  border-radius: 0;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  padding: 35px 30px 40px;
  margin-bottom: 30px;
}
.billing-totals h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.billing-totals ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.billing-totals ul li {
  border-bottom: 1px solid #eeeeee;
  padding: 10px 15px;
  color: var(--bodyColor);
  overflow: hidden;
  font-weight: 500;
}
.billing-totals ul li span {
  float: right;
  color: var(--titleColor);
  font-weight: normal;
}

.payment-box {
  background-color: var(--whiteColor);
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 40px 30px;
}
.payment-box .payment-method h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.payment-box .payment-method p [type=radio]:checked {
  display: none;
}
.payment-box .payment-method p [type=radio]:checked + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: var(--titleColor);
  position: relative;
  margin-bottom: 15px;
}
.payment-box .payment-method p [type=radio]:checked + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}
.payment-box .payment-method p [type=radio]:checked + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--mainColor);
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}
.payment-box .payment-method p [type=radio]:not(:checked) + label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: #172541;
  position: relative;
  margin-bottom: 15px;
}
.payment-box .payment-method p [type=radio]:not(:checked) + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}
.payment-box .payment-method p [type=radio]:not(:checked) + label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--mainColor);
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}
.payment-box .default-btn {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.pricing-card {
  margin-bottom: 30px;
  background-color: #F5F5F5;
  padding: 40px;
}
.pricing-card .top-content {
  padding-bottom: 15px;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 25px;
}
.pricing-card .top-content h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.pricing-card .top-content h2 {
  font-size: 50px;
  color: var(--mainColor);
  margin-bottom: 0;
  font-weight: 500;
}
.pricing-card .top-content h2 sub {
  font-size: 20px;
  font-weight: 400;
}
.pricing-card ul {
  margin: 0 0 25px;
  padding: 0;
  list-style-type: none;
}
.pricing-card ul li {
  display: block;
  margin-bottom: 10px;
  color: var(--bodyColor);
}
.pricing-card ul li i {
  color: var(--mainColor);
  position: relative;
  top: 2px;
  margin-right: 10px;
  font-size: 18px;
}

/*=================================
Play Area
====================================*/
.play-area {
  position: relative;
  z-index: 1;
}
.play-area .title h2 {
  font-size: 22px;
}
.play-area .title h2 span {
  color: var(--mainColor);
}
.play-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70%;
  background-color: #F5F5F5;
}

.brand-item {
  text-align: center;
}
.brand-item img {
  width: unset !important;
  text-align: center;
  cursor: pointer;
  opacity: 0.3;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  transition: var(--transition);
}
.brand-item .brand-item-logo2 {
  display: none !important;
}
.brand-item:hover img {
  opacity: 1;
}

.play-btn-area {
  background-image: url(../images/play-btn.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  max-width: 1100px;
  margin: 0 auto;
  padding: 200px 0;
  text-align: center;
}
.play-btn-area .play-btn {
  display: inline-block;
  align-items: center;
  margin: 0 auto;
}
.play-btn-area .play-btn i {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 95px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  font-size: 30px;
  border-radius: 50px;
  margin: 0 auto;
  padding-left: 5px;
  padding-top: 3px;
  position: relative;
  transition: var(--transition);
  text-align: center;
  z-index: 1;
}
.play-btn-area .play-btn i::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  animation: ripple 2s infinite ease-in-out;
  transition: var(--transition);
}
.play-btn-area .play-btn:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.play-btn-area .play-btn:hover i::after {
  background-color: var(--mainColor);
  opacity: 0.3;
}

/*=================================
FAQ Area
====================================*/
.faq-img {
  position: relative;
  margin-bottom: 30px;
}
.faq-img img {
  animation: border-transform 10s linear infinite alternate forwards;
}
.faq-img .shape {
  position: absolute;
  bottom: 100px;
  right: -10px;
}
.faq-img .shape img {
  animation: none;
}

.faq-accordion {
  margin-bottom: 30px;
}
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  border: none;
}
.faq-accordion .accordion .accordion-item {
  display: block;
  margin-bottom: 20px;
  border: none;
}
.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-title {
  color: var(--titleColor);
  text-decoration: none;
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--headerFonts);
  padding: 8px 0 8px 55px;
}
.faq-accordion .accordion .accordion-title i {
  position: absolute;
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: var(--titleColor);
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  text-align: center;
}
.faq-accordion .accordion .accordion-title.active {
  color: var(--mainColor);
}
.faq-accordion .accordion .accordion-title.active i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.faq-accordion .accordion .accordion-title.active i::before {
  content: "\f1af";
}
.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  margin-top: 15px;
  padding: 0;
}
.faq-accordion .accordion .accordion-content p {
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-content p:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*=================================
Instructors Area
====================================*/
.instructors-area {
  position: relative;
}
.instructors-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.instructors-area .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: -90px;
  right: 50px;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.instructors-area .owl-nav .owl-prev i {
  position: relative;
  top: 3px;
}
.instructors-area .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.instructors-area .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: -90px;
  right: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.instructors-area .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.instructors-area .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}

.instructors-item {
  margin-bottom: 30px;
}
.instructors-item .instructors-img {
  position: relative;
}
.instructors-item .instructors-img a {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.instructors-item .instructors-img a img {
  margin: 0 auto;
}
.instructors-item .instructors-img .instructors-social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin: 0 auto;
  margin-bottom: 0;
}
.instructors-item .instructors-img .instructors-social li {
  display: block;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin-bottom: 10px;
}
.instructors-item .instructors-img .instructors-social li:last-child {
  margin-bottom: 0;
}
.instructors-item .instructors-img .instructors-social li a {
  display: inline-block;
}
.instructors-item .instructors-img .instructors-social li a i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
  display: inline-block;
  border-radius: 50px;
}
.instructors-item .instructors-img .instructors-social li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.instructors-item .instructors-img .instructors-social li:nth-child(1) {
  transition-delay: 0.1s;
}
.instructors-item .instructors-img .instructors-social li:nth-child(2) {
  transition-delay: 0.2s;
}
.instructors-item .instructors-img .instructors-social li:nth-child(3) {
  transition-delay: 0.3s;
}
.instructors-item .instructors-img .instructors-social li:nth-child(4) {
  transition-delay: 0.4s;
}
.instructors-item .content {
  padding-top: 20px;
  text-align: center;
}
.instructors-item .content h3 {
  margin-bottom: 5px;
}
.instructors-item .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.instructors-item .content span {
  color: var(--bodyColor);
}
.instructors-item:hover .instructors-img .instructors-social li {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.instructors-item:hover .content h3 a {
  color: var(--mainColor);
}

.instructors-card {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.instructors-card a {
  display: block;
  margin: 0 auto;
}
.instructors-card a img {
  margin: 0 auto;
}
.instructors-card .content {
  padding: 30px;
  position: relative;
}
.instructors-card .content .instructors-social {
  margin: 0;
  list-style-type: none;
  padding: 0;
  position: absolute;
  right: 85px;
  bottom: 40px;
}
.instructors-card .content .instructors-social li {
  display: inline-block;
  position: absolute;
  bottom: 0;
  transition: var(--transition);
}
.instructors-card .content .instructors-social li.share-btn i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50px;
  background-color: rgba(8, 169, 230, 0.1);
  color: var(--mainColor);
  display: inline-block;
  margin: 0 8px;
  font-size: 24px;
  transition: 0.9s;
}
.instructors-card .content .instructors-social li.share-btn i:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.instructors-card .content .instructors-social li:nth-child(1) {
  z-index: 1;
}
.instructors-card .content .instructors-social li:nth-child(2), .instructors-card .content .instructors-social li:nth-child(3), .instructors-card .content .instructors-social li:nth-child(4) .instructors-card .content .instructors-social li:nth-child(5) {
  bottom: 0;
}
.instructors-card .content .instructors-social li a {
  color: var(--whiteColor);
}
.instructors-card .content .instructors-social li a i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 45px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  text-align: center;
  font-size: 18px;
  transition: var(--transition);
  border-radius: 50px;
  margin: 0 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  opacity: 0;
}
.instructors-card .content .instructors-social li a:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  opacity: 1;
}
.instructors-card .content .instructors-social:hover li a i {
  opacity: 1;
}
.instructors-card .content .instructors-social:hover li:nth-child(1) {
  z-index: 1;
}
.instructors-card .content .instructors-social:hover li:nth-child(2) {
  bottom: 65px;
}
.instructors-card .content .instructors-social:hover li:nth-child(3) {
  bottom: 122px;
}
.instructors-card .content .instructors-social:hover li:nth-child(4) {
  bottom: 178px;
}
.instructors-card .content .instructors-social:hover li:nth-child(5) {
  bottom: 235px;
}
.instructors-card .content h3 {
  margin-bottom: 5px;
}
.instructors-card .content h3 a {
  color: var(--titleColor);
  transition: var(--transition);
}
.instructors-card .content span {
  color: var(--bodyColor);
}

.instructors-item-bg {
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.instructors-item-bg .instructors-img .instructors-social li a i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 12px;
}
.instructors-item-bg .content {
  padding: 20px;
}
.instructors-item-bg .content h3 {
  font-size: 20px;
}

.instructors-details-img {
  margin-bottom: 30px;
}
.instructors-details-img img {
  margin-bottom: 25px;
}
.instructors-details-img .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.instructors-details-img .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.instructors-details-img .social-link li.social-title {
  font-size: 18px;
  color: var(--titleColor);
}
.instructors-details-img .social-link li:last-child {
  margin-right: 0;
}
.instructors-details-img .social-link li a {
  display: inline-block;
}
.instructors-details-img .social-link li a i {
  font-size: 15px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  color: var(--mainColor);
  background-color: transparent;
  border: 1px solid var(--mainColor);
  transition: var(--transition);
  display: inline-block;
}
.instructors-details-img .social-link li a:hover i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.instructors-details-content {
  margin-bottom: 30px;
}
.instructors-details-content h3 {
  margin-bottom: 5px;
}
.instructors-details-content .sub-title {
  margin-bottom: 25px;
  display: block;
}
.instructors-details-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.instructors-details-content ul li {
  display: block;
  margin-bottom: 10px;
  color: var(--titleColor);
}
.instructors-details-content ul li span {
  color: var(--bodyColor);
  margin-left: 10px;
}
.instructors-details-content ul li span i {
  position: relative;
  top: 2px;
  color: #FFC107;
  margin-right: 3px;
}
.instructors-details-content ul li span a {
  color: var(--bodyColor);
  transition: 0.7s;
}
.instructors-details-content ul li span a:hover {
  color: var(--mainColor);
}

/*================================
Testimonials Area
===================================*/
.testimonials-area {
  position: relative;
  overflow: hidden;
}
.testimonials-area .owl-dots {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.testimonials-area .owl-dots .owl-dot span {
  background-color: rgba(33, 34, 95, 0.2) !important;
  transition: 0.7s;
  margin: 0 7px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
.testimonials-area .owl-dots .owl-dot.active span {
  background-color: var(--mainColor) !important;
}
.testimonials-area .owl-dots .owl-dot:hover span {
  background-color: var(--mainColor) !important;
}
.testimonials-area .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.testimonials-area .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  opacity: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.testimonials-area .owl-nav .owl-prev i {
  position: relative;
  top: 3px;
}
.testimonials-area .owl-nav .owl-prev:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.testimonials-area .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  right: -100px;
  opacity: 0;
  font-size: 18px !important;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  border-radius: 50px !important;
  background-color: var(--whiteColor) !important;
  color: var(--mainColor) !important;
  transition: 0.7s;
  box-shadow: 0 0 15px rgba(46, 46, 46, 0.1);
}
.testimonials-area .owl-nav .owl-next i {
  position: relative;
  top: 3px;
}
.testimonials-area .owl-nav .owl-next:hover {
  color: var(--whiteColor) !important;
  background-color: var(--mainColor) !important;
}
.testimonials-area:hover .owl-nav .owl-prev {
  left: 0;
  opacity: 1;
}
.testimonials-area:hover .owl-nav .owl-next {
  right: 0;
  opacity: 1;
}
.testimonials-area .testimonials-card-two {
  margin-top: 45px;
  margin-left: 10px;
  margin-right: 10px;
}

.testimonials-item {
  position: relative;
  z-index: 1;
  margin-top: 45px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.testimonials-item img {
  position: relative;
  margin-top: -75px;
  width: 80px !important;
  border-radius: 50%;
  margin-bottom: 15px;
}
.testimonials-item .rating {
  color: #FFC107;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  margin-bottom: 10px;
}
.testimonials-item .rating i {
  display: inline-block;
}
.testimonials-item p {
  margin-bottom: 15px;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-item h3 {
  margin-bottom: 5px;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-item span {
  margin-bottom: 0;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-item .quote {
  position: absolute;
  bottom: 10px;
  right: 30px;
  font-size: 40px;
  color: var(--mainColor);
  opacity: 0.5;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}

.testimonials-card {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.testimonials-card .content {
  padding-left: 100px;
  position: relative;
  margin-bottom: 30px;
}
.testimonials-card .content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px !important;
  border-radius: 50%;
}
.testimonials-card .content h3 {
  margin-bottom: 5px;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-card .content span {
  margin-bottom: 0;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-card p {
  margin-bottom: 15px;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-card .rating {
  color: #FFC107;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  margin-bottom: 0;
}
.testimonials-card .rating i {
  display: inline-block;
}
.testimonials-card .quote {
  position: absolute;
  top: 35px;
  right: 30px;
  font-size: 45px;
  color: var(--mainColor);
  opacity: 0.5;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}

.testimonials-card-two {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.testimonials-card-two p {
  margin-bottom: 15px;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-card-two .rating {
  color: #FFC107;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  margin-bottom: 0;
}
.testimonials-card-two .rating i {
  display: inline-block;
}
.testimonials-card-two .content {
  padding-left: 100px;
  position: relative;
  margin-bottom: 0;
}
.testimonials-card-two .content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px !important;
  border-radius: 50%;
}
.testimonials-card-two .content h3 {
  margin-bottom: 5px;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-card-two .content span {
  margin-bottom: 0;
  display: block;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.testimonials-card-two .quote {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 45px;
  color: var(--mainColor);
  opacity: 0.5;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}

/*================================
Enrolled Area
===================================*/
.enrolled-area {
  background-color: #F5F5F5;
}

.enrolled-content .section-title {
  margin-bottom: 20px;
}
.enrolled-content .enrolled-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.enrolled-content .enrolled-list li {
  display: block;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 55px;
  position: relative;
  font-size: 18px;
  color: var(--titleColor);
  margin-bottom: 20px;
  font-weight: 600;
}
.enrolled-content .enrolled-list li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  line-height: 47px;
  border-radius: 50px;
  text-align: center;
  background-color: rgba(8, 169, 230, 0.1);
  color: var(--mainColor);
}

.enrolled-img {
  margin-top: 50px;
  position: relative;
  z-index: 1;
  margin-left: 70px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.enrolled-img .bg-shape {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: -30px;
  right: 0;
  text-align: center;
}
.enrolled-img .enrolled-img-content {
  padding: 15px;
  background-color: var(--whiteColor);
  display: flex;
}
.enrolled-img .enrolled-img-content i {
  width: 45px;
  height: 45px;
  line-height: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  background-color: var(--titleColor);
  margin-right: 12px;
  text-align: center;
}
.enrolled-img .enrolled-img-content i.active {
  background-color: #08A9E6;
}
.enrolled-img .enrolled-img-content .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.enrolled-img .enrolled-img-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}
.enrolled-img .top-content {
  position: absolute;
  top: 140px;
  left: -20px;
  animation: movebounce 5s linear infinite;
}
.enrolled-img .right-content {
  position: absolute;
  bottom: 200px;
  right: 0;
  animation: movebounce 5s linear infinite;
}
.enrolled-img .left-content {
  position: absolute;
  bottom: 70px;
  left: -20px;
  animation: movebounce 5s linear infinite;
}
.enrolled-img .enrolled-img-shape .shape1 {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: -1;
  animation: moveleftbounce 9s linear infinite;
}

.enrolled-img-two img {
  animation: movebounce 5s linear infinite;
}

.enrolled-img-three {
  margin-bottom: 30px;
  position: relative;
}
.enrolled-img-three img {
  max-width: 600px;
  border-radius: 10px;
}
.enrolled-img-three .enrolled-img-content {
  position: absolute;
  bottom: 40px;
  right: 0;
  animation: movebounce 5s linear infinite;
  padding: 15px;
  background-color: var(--whiteColor);
  display: flex;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}
.enrolled-img-three .enrolled-img-content i {
  width: 45px;
  height: 45px;
  line-height: 50px;
  font-size: 20px;
  color: var(--whiteColor);
  background-color: var(--titleColor);
  margin-right: 12px;
  text-align: center;
  border-radius: 50px;
}
.enrolled-img-three .enrolled-img-content i.active {
  background-color: #08A9E6;
}
.enrolled-img-three .enrolled-img-content .content h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
}
.enrolled-img-three .enrolled-img-content .content p {
  font-size: 14px;
  margin-bottom: 0;
}

/*================================
Event Area
===================================*/
.event-area .owl-dots {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.event-area .owl-dots .owl-dot span {
  background-color: rgba(33, 34, 95, 0.2) !important;
  transition: 0.7s;
  margin: 0 7px;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
.event-area .owl-dots .owl-dot.active span {
  background-color: var(--mainColor) !important;
}
.event-area .owl-dots .owl-dot:hover span {
  background-color: var(--mainColor) !important;
}

.event-item {
  padding: 30px 20px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  display: flex;
  align-items: center;
  border-radius: 10px;
  transition: var(--transition);
}
.event-item .event-img {
  margin-right: 20px;
  max-width: 180px;
}
.event-item .event-img a {
  display: block;
}
.event-item .event-img a img {
  border-radius: 10px;
}
.event-item .event-content .event-list {
  margin: 0 0 12px;
  padding: 0;
  list-style-type: none;
}
.event-item .event-content .event-list li {
  display: inline-block;
  margin-right: 10px;
  color: var(--bodyColor);
}
.event-item .event-content .event-list li:last-child {
  margin-right: 0;
}
.event-item .event-content .event-list li i {
  color: var(--mainColor);
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.event-item .event-content h3 {
  margin-bottom: 10px;
}
.event-item .event-content h3 a {
  color: var(--titleColor);
  transition: 0.7s;
}
.event-item .event-content p {
  margin-bottom: 0;
}
.event-item:hover {
  transform: translateY(-5px);
}
.event-item:hover .event-content h3 a {
  color: var(--mainColor);
}

.event-details-content .event-details-mt-30 {
  margin-top: 30px;
}
.event-details-content h1, .event-details-content h2, .event-details-content h3, .event-details-content h4, .event-details-content h5, .event-details-content h6 {
  margin-bottom: 15px;
}
.event-details-content h1 {
  font-size: 32px;
}
.event-details-content h2 {
  font-size: 29px;
}
.event-details-content h3 {
  font-size: 26px;
}
.event-details-content h4 {
  font-size: 23px;
}
.event-details-content h5 {
  font-size: 20px;
}
.event-details-content h6 {
  font-size: 17px;
}
.event-details-content a {
  color: var(--goldenColor);
}
.event-details-content a:hover {
  color: var(--titleColor);
  border-bottom: 1px solid var(--goldenColor);
}
.event-details-content ul, .event-details-content ol {
  margin-bottom: 30px;
}
.event-details-content ul li, .event-details-content ol li {
  margin-bottom: 10px;
}
.event-details-content ul li:last-child, .event-details-content ol li:last-child {
  margin-bottom: 0;
}
.event-details-content p {
  margin-bottom: 15px;
}
.event-details-content .event-preview-img {
  margin-bottom: 25px;
}

.event-sidebar {
  margin-bottom: 35px;
  background-color: #F5F5F5;
  padding: 35px 23px;
}
.event-sidebar .title {
  font-size: 22px;
  color: var(--titleColor);
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
.event-sidebar .title::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100px;
  height: 3px;
  background-color: var(--mainColor);
}
.event-sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.event-sidebar ul li {
  display: block;
  color: var(--mainColor);
  margin-bottom: 10px;
}
.event-sidebar ul li:last-child {
  margin-bottom: 0;
}
.event-sidebar ul li span {
  color: var(--bodyColor);
  float: right;
}

.event-popular-post {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.event-popular-post .item {
  overflow: hidden;
  margin-bottom: 12px;
}
.event-popular-post .item:last-child {
  margin-bottom: 0;
}
.event-popular-post .item .thumb {
  float: left;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}
.event-popular-post .item .thumb .full-image {
  width: 100px;
  height: 115px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: var(--whiteColor);
}
.event-popular-post .item .thumb .full-image.bg1 {
  background-image: url(../images/events/event-img2.jpg);
}
.event-popular-post .item .thumb .full-image.bg2 {
  background-image: url(../images/events/event-img3.jpg);
}
.event-popular-post .item .info {
  overflow: hidden;
  padding: 4px 0;
}
.event-popular-post .item .info p {
  color: var(--bodyColor);
  margin-bottom: 0;
}
.event-popular-post .item .info .title-text {
  margin-bottom: 7px;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
  max-width: 300px;
}
.event-popular-post .item .info .title-text a {
  display: inline-block;
  color: var(--titleColor);
}
.event-popular-post .item .info .title-text a:hover {
  color: var(--mainColor);
}

/*================================
Contact Area
===================================*/
.contact-info-card {
  padding: 30px 30px 30px 110px;
  background-color: #F5F5F5;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  margin-bottom: 30px;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--mainColor);
  opacity: 0;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.contact-info-card i {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 24px;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  text-align: center;
  display: inline-block;
  transition: var(--transition);
  border-radius: 50%;
}
.contact-info-card h3 {
  margin-bottom: 5px;
  transition: var(--transition);
}
.contact-info-card p {
  margin-bottom: 0;
  color: var(--bodyColor);
  transition: var(--transition);
}
.contact-info-card p a {
  color: var(--bodyColor);
  display: block;
  margin-bottom: 0;
  transition: var(--transition);
}
.contact-info-card p a:hover {
  color: var(--whiteColor);
}
.contact-info-card:hover::before {
  opacity: 1;
  width: 100%;
}
.contact-info-card:hover i {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}
.contact-info-card:hover h3 {
  color: var(--whiteColor);
}
.contact-info-card:hover p {
  color: var(--whiteColor);
}
.contact-info-card:hover p a {
  color: var(--whiteColor);
}

.contact-form {
  margin-bottom: 30px;
  padding: 50px 35px 47px;
  background-color: #F5F5F5;
}
.contact-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.contact-form .form-group.checkbox-option {
  position: relative;
}
.contact-form .form-group.checkbox-option #chb2 {
  position: absolute;
  top: 6px;
  left: 0;
}
.contact-form .form-group.checkbox-option p {
  padding-left: 25px;
  font-size: 15px;
  color: var(--titleColor);
}
.contact-form .form-group.checkbox-option p a {
  color: var(--mainColor);
}
.contact-form .form-group.checkbox-option p a:hover {
  color: var(--titleColor);
}
.contact-form .form-group .form-control {
  height: 50px;
  color: var(--bodyColor);
  border: none;
  background-color: var(--whiteColor);
  padding: 15px 25px;
  width: 100%;
  border-radius: 0;
}
.contact-form .form-group .form-control::-webkit-input-placeholder, .contact-form .form-group .form-control:-ms-input-placeholder, .contact-form .form-group .form-control::-ms-input-placeholder, .contact-form .form-group .form-control::placeholder {
  color: var(--bodyColor);
}
.contact-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact-form .form-group textarea.form-control {
  height: auto;
  border-radius: 0;
}
.contact-form .agree-label {
  margin-bottom: 15px;
  position: relative;
}
.contact-form .agree-label #chb1 {
  position: absolute;
  top: 7px;
  left: 0;
}
.contact-form .agree-label label {
  font-weight: 500;
  color: var(--titleColor);
  margin-left: 25px;
}
.contact-form .agree-label label a {
  color: var(--mainColor);
}
.contact-form .agree-label label a:hover {
  color: var(--titleColor);
}
.contact-form .agree-label label a.forget {
  position: absolute;
  right: 0;
}
.contact-form .with-errors {
  float: left;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 0;
  color: #f00;
  font-weight: 400;
  display: block;
}
.contact-form .text-danger {
  font-size: 18px;
  margin-top: 15px;
}
.contact-form .default-btn {
  border: 0;
  outline: none;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 460px;
}

.user-img {
  position: relative;
  margin-bottom: 30px;
}
.user-img img {
  animation: border-transform 10s linear infinite alternate forwards;
}

.user-all-form .contact-form {
  background-color: var(--whiteColor);
  padding: 45px 35px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}
.user-all-form .contact-form .user-title {
  font-size: 25px;
  padding: 0 0 15px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.user-all-form .contact-form .user-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 80px;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.user-all-form .contact-form .form-group .form-control {
  background-color: #F5F5F5;
}

/*================================
Blog Area
===================================*/
.blog-card {
  position: relative;
  z-index: 1;
  background-color: var(--whiteColor);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  transition: 0.7s;
}
.blog-card a {
  display: block;
}
.blog-card .content {
  padding: 27px 25px 30px;
}
.blog-card .content ul {
  list-style-type: none;
  margin: 0 0 12px;
  padding: 0;
}
.blog-card .content ul li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  color: var(--titleColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-card .content ul li i {
  font-size: 18px;
  color: var(--mainColor);
  position: relative;
  top: 4px;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-card .content ul li:hover {
  color: var(--mainColor);
}
.blog-card .content ul li:hover i {
  color: var(--titleColor);
}
.blog-card .content ul li:hover a {
  color: var(--mainColor);
}
.blog-card .content ul li a {
  display: inline-block;
  color: var(--bodyColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-card .content ul li::before {
  content: "";
  position: absolute;
  transform: rotate(30deg);
  top: 10px;
  right: -20px;
  width: 1px;
  height: 15px;
  background-color: var(--bodyColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-card .content ul li:last-child li {
  margin-right: 0;
}
.blog-card .content ul li:last-child::before {
  display: none;
}
.blog-card .content h3 {
  margin-bottom: 13px;
}
.blog-card .content h3 a {
  color: var(--titleColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-card .content p {
  margin-bottom: 10px;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-card .content .read-btn {
  color: var(--titleColor);
  margin-bottom: 0;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
  font-weight: 600;
}
.blog-card .content .read-btn:hover {
  letter-spacing: 0.25px;
}
.blog-card:hover {
  transform: translateX(-5px);
}
.blog-card:hover .content h3 a {
  color: var(--mainColor);
}
.blog-card:hover .content .read-btn {
  color: var(--mainColor);
}

.blog-card-bg {
  background-color: transparent;
  box-shadow: none;
}
.blog-card-bg .content {
  padding: 17px 0 0;
}

/*================================
Blog Details Area
===================================*/
.blog-details-content h1, .blog-details-content h2, .blog-details-content h3, .blog-details-content h4, .blog-details-content h5, .blog-details-content h6 {
  margin-bottom: 15px;
}
.blog-details-content h1 {
  font-size: 32px;
}
.blog-details-content h2 {
  font-size: 29px;
}
.blog-details-content h3 {
  font-size: 26px;
}
.blog-details-content h4 {
  font-size: 23px;
}
.blog-details-content h5 {
  font-size: 20px;
}
.blog-details-content h6 {
  font-size: 17px;
}
.blog-details-content a {
  color: var(--goldenColor);
}
.blog-details-content a:hover {
  color: var(--titleColor);
  border-bottom: 1px solid var(--goldenColor);
}
.blog-details-content ul, .blog-details-content ol {
  margin-bottom: 30px;
}
.blog-details-content ul li, .blog-details-content ol li {
  margin-bottom: 10px;
}
.blog-details-content ul li:last-child, .blog-details-content ol li:last-child {
  margin-bottom: 0;
}
.blog-details-content p {
  margin-bottom: 15px;
}
.blog-details-content .blog-preview-slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.blog-details-content .blog-preview-slider .owl-nav {
  margin-top: 0;
  overflow: hidden;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-prev {
  position: absolute;
  z-index: 5;
  top: 47%;
  transform: translateY(-50%);
  left: 0;
  width: 45px;
  height: 45px;
  line-height: 53px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-prev:hover {
  color: var(--mainColor) !important;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-next {
  position: absolute;
  z-index: 5;
  top: 47%;
  transform: translateY(-50%);
  right: 0;
  width: 45px;
  height: 45px;
  line-height: 53px !important;
  background-color: var(--whiteColor) !important;
  color: var(--bodyColor) !important;
  border-radius: 50%;
  text-align: center;
  font-size: 18px !important;
}
.blog-details-content .blog-preview-slider .owl-nav .owl-next:hover {
  color: var(--mainColor) !important;
}
.blog-details-content .blog-preview-img {
  margin-bottom: 25px;
  position: relative;
}
.blog-details-content .blog-preview-img .date {
  position: absolute;
  bottom: -12px;
  left: 25px;
  display: inline-block;
  text-align: center;
  padding: 8px 14px;
  font-size: 15px;
  background-color: var(--goldenColor);
  border-radius: 0;
  color: var(--whiteColor);
  font-weight: 600;
}
.blog-details-content .blog-preview-img-bg {
  background-image: url(../images/blog/blog-large-3.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 170px 0;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 30px;
  transition: 0.9s;
  overflow: hidden;
}
.blog-details-content .blog-preview-img-bg .play-btn {
  display: inline-block;
  align-items: center;
  margin: 0 auto;
}
.blog-details-content .blog-preview-img-bg .play-btn i {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  font-size: 30px;
  border-radius: 50px;
  margin: 0 auto;
  padding-left: 5px;
  padding-top: 3px;
  position: relative;
  transition: var(--transition);
  text-align: center;
  z-index: 1;
}
.blog-details-content .blog-preview-img-bg .play-btn i::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  animation: ripple 2s infinite ease-in-out;
  transition: var(--transition);
}
.blog-details-content .blog-preview-img-bg .play-btn:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.blog-details-content .blog-preview-img-bg .play-btn:hover i::after {
  background-color: var(--mainColor);
  opacity: 0.3;
}
.blog-details-content .tag-list {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.blog-details-content .tag-list li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  color: var(--titleColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-details-content .tag-list li i {
  font-size: 18px;
  color: var(--mainColor);
  position: relative;
  top: 2px;
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-details-content .tag-list li:hover {
  color: var(--mainColor);
}
.blog-details-content .tag-list li:hover i {
  color: var(--titleColor);
}
.blog-details-content .tag-list li:hover a {
  color: var(--mainColor);
}
.blog-details-content .tag-list li a {
  display: inline-block;
  color: var(--bodyColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-details-content .tag-list li::before {
  content: "";
  position: absolute;
  transform: rotate(30deg);
  top: 10px;
  right: -20px;
  width: 1px;
  height: 15px;
  background-color: var(--bodyColor);
  transition: all 0.3s ease-in;
  transition-duration: 0.6s;
}
.blog-details-content .tag-list li:last-child li {
  margin-right: 0;
}
.blog-details-content .tag-list li:last-child::before {
  display: none;
}
.blog-details-content .blockquote {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-top: 30px;
  background-color: #f8f8f8;
  padding: 40px 30px 35px 60px;
  text-align: center;
}
.blog-details-content .blockquote i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  line-height: 1;
  font-size: 45px;
  color: var(--mainColor);
}
.blog-details-content .blockquote p {
  max-width: 620px;
  font-size: 18px;
  color: var(--titleColor);
  font-weight: 600;
  margin: 0 auto;
}
.blog-details-content .article-share {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 15px;
  background: #F7F7F7;
  box-sizing: border-box;
}
.blog-details-content .article-share .article-tag ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.blog-details-content .article-share .article-tag ul li {
  color: var(--titleColor);
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 0;
}
.blog-details-content .article-share .article-tag ul li.title {
  color: var(--mainColor);
  position: relative;
  top: 3px;
}
.blog-details-content .article-share .article-tag ul li a {
  border: none;
  color: var(--bodyColor);
}
.blog-details-content .article-share .article-tag ul li a:hover {
  color: var(--mainColor);
}
.blog-details-content .article-share .article-social-icon {
  float: right;
}
.blog-details-content .article-share .article-social-icon .social-icon {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.blog-details-content .article-share .article-social-icon .social-icon li {
  font-size: 18px;
  color: var(--bodyColor);
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 0;
}
.blog-details-content .article-share .article-social-icon .social-icon li.title {
  font-weight: 500;
}
.blog-details-content .article-share .article-social-icon .social-icon li:last-child {
  margin-right: 0;
}
.blog-details-content .article-share .article-social-icon .social-icon li a i {
  color: var(--bodyColor);
  transition: var(--transition);
  position: relative;
  top: 2px;
}
.blog-details-content .article-share .article-social-icon .social-icon li a:hover {
  border: none;
}
.blog-details-content .article-share .article-social-icon .social-icon li a:hover i {
  color: var(--mainColor);
}
.blog-details-content .comments-form {
  margin-bottom: 30px;
}
.blog-details-content .comments-form .contact-form {
  max-width: 100%;
  box-shadow: none;
}
.blog-details-content .comments-form .contact-form h4 {
  margin-bottom: 15px;
}
.blog-details-content .comments-form .contact-form p {
  margin-bottom: 25px;
}

.side-bar-widget {
  margin-bottom: 35px;
  background-color: #F5F5F5;
  padding: 35px 23px;
}
.side-bar-widget .title {
  font-size: 22px;
  color: var(--titleColor);
  margin-bottom: 25px;
  border-bottom: 1px solid var(--mainColor);
  padding-bottom: 15px;
}
.side-bar-widget .title-tag {
  margin-bottom: 20px;
}
.side-bar-widget .search-form {
  position: relative;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  width: 100%;
  background-color: var(--whiteColor);
}
.side-bar-widget .search-form .form-control {
  background-color: var(--whiteColor);
  border-radius: 0;
  border: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  border: 0;
  padding: 0 15px;
  color: var(--bodyColor);
}
.side-bar-widget .search-form .form-control:focus {
  outline: none;
  box-shadow: none;
  border: none;
}
.side-bar-widget .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  border-radius: 0;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 50px;
  line-height: 53px;
  font-size: 22px;
  padding: 0 15px;
  transition: var(--transition);
}
.side-bar-widget .search-form button:hover {
  background: var(--titleColor);
}
.side-bar-widget .side-bar-categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.side-bar-widget .side-bar-categories ul li {
  position: relative;
  margin-bottom: 10px;
}
.side-bar-widget .side-bar-categories ul li:last-child {
  margin-bottom: 0;
}
.side-bar-widget .side-bar-categories ul li a {
  display: inline-block;
  color: var(--bodyColor);
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.side-bar-widget .side-bar-categories ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--mainColor);
  transition: 0.7s;
}
.side-bar-widget .side-bar-categories ul li:hover a {
  color: var(--mainColor);
  letter-spacing: 0.25px;
}
.side-bar-widget .side-bar-categories ul li:hover a::before {
  background-color: var(--redColor);
}
.side-bar-widget .widget-popular-post {
  position: relative;
  overflow: hidden;
}
.side-bar-widget .widget-popular-post .item {
  overflow: hidden;
  margin-bottom: 12px;
}
.side-bar-widget .widget-popular-post .item:last-child {
  margin-bottom: 0;
}
.side-bar-widget .widget-popular-post .item .thumb {
  float: left;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}
.side-bar-widget .widget-popular-post .item .thumb .full-image {
  width: 85px;
  height: 85px;
  display: inline-block;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
  position: relative;
  background-color: var(--whiteColor);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg1 {
  background-image: url(../images/blog/blog-img1.jpg);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg2 {
  background-image: url(../images/blog/blog-img2.jpg);
}
.side-bar-widget .widget-popular-post .item .thumb .full-image.bg3 {
  background-image: url(../images/blog/blog-img3.jpg);
}
.side-bar-widget .widget-popular-post .item .info {
  overflow: hidden;
  padding: 4px 0;
}
.side-bar-widget .widget-popular-post .item .info p {
  color: var(--bodyColor);
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: 600;
}
.side-bar-widget .widget-popular-post .item .info .title-text {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 600;
  max-width: 300px;
}
.side-bar-widget .widget-popular-post .item .info .title-text a {
  display: inline-block;
  color: var(--titleColor);
}
.side-bar-widget .widget-popular-post .item .info .title-text a:hover {
  color: var(--mainColor);
}
.side-bar-widget .side-bar-widget-tag {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-bar-widget .side-bar-widget-tag li {
  display: inline-block;
  margin: 5px;
}
.side-bar-widget .side-bar-widget-tag li a {
  padding: 8px 23px;
  transition: 0.7s;
  color: var(--bodyColor);
  font-size: 14px;
  background-color: var(--whiteColor);
  transition: 0.7s;
  font-weight: 500;
}
.side-bar-widget .side-bar-widget-tag li:hover a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.author-profile {
  background-color: #F5F5F5;
  padding: 35px 30px;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 35px;
}
.author-profile h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.author-profile img {
  border-radius: 50%;
  margin-bottom: 15px;
  max-width: 100px;
}
.author-profile p {
  margin-bottom: 17px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.author-profile .profile-social-link {
  list-style: none;
  margin: 0;
  padding: 0;
}
.author-profile .profile-social-link li {
  display: inline-block;
  margin-right: 5px;
}
.author-profile .profile-social-link li a i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 15px;
  text-align: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  transition: var(--transition);
  border-radius: 50px;
  display: inline-block;
}
.author-profile .profile-social-link li a:hover i {
  background-color: var(--titleColor);
}

.categories-title {
  margin-bottom: 30px;
}
.categories-title h3 {
  font-size: 26px;
  color: var(--titleColor);
}
.categories-title h3 span {
  color: var(--mainColor);
  font-size: 22px;
}

/*================================
Register Area
===================================*/
.register-area {
  position: relative;
  z-index: 1;
}
.register-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background-color: #F5F5F5;
}

.register-form {
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}
.register-form .top-header {
  background-color: var(--mainColor);
  padding: 40px 35px 37px;
  border-radius: 10px 10px 0 0;
}
.register-form .top-header h3 {
  color: var(--whiteColor);
  font-size: 35px;
  margin-bottom: 5px;
}
.register-form .top-header span {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.register-form .register-form-max {
  padding: 35px 35px 37px;
}
.register-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.register-form .form-group .form-control {
  height: 55px;
  color: var(--bodyColor);
  border: 1px solid #DDDDDD;
  background-color: var(--whiteColor);
  padding: 15px 25px;
  width: 100%;
  border-radius: 50px;
}
.register-form .form-group .form-control::-webkit-input-placeholder, .register-form .form-group .form-control:-ms-input-placeholder, .register-form .form-group .form-control::-ms-input-placeholder, .register-form .form-group .form-control::placeholder {
  color: var(--bodyColor);
}
.register-form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.register-form .default-btn {
  border: 0;
  outline: none;
  width: 100%;
}

.play-btn-area-two {
  background-image: url(../images/play-btn2.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 247px 0;
  text-align: center;
  border-radius: 10px;
}
.play-btn-area-two .play-btn {
  display: inline-block;
  align-items: center;
  margin: 0 auto;
}
.play-btn-area-two .play-btn i {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 95px;
  background-color: var(--whiteColor);
  color: var(--mainColor);
  font-size: 30px;
  border-radius: 50px;
  margin: 0 auto;
  padding-left: 5px;
  padding-top: 3px;
  position: relative;
  transition: var(--transition);
  text-align: center;
  z-index: 1;
}
.play-btn-area-two .play-btn i::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  animation: ripple 2s infinite ease-in-out;
  transition: var(--transition);
}
.play-btn-area-two .play-btn:hover i {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.play-btn-area-two .play-btn:hover i::after {
  background-color: var(--mainColor);
  opacity: 0.3;
}

.newsletter-area .newsletter-form {
  position: relative;
}
.newsletter-area .newsletter-form .form-control {
  background-color: var(--whiteColor);
  border-radius: 50px;
  height: 70px;
  line-height: 70px;
  margin: 0;
  border: none;
  padding: 0 25px;
  color: var(--bodyColor);
}
.newsletter-area .newsletter-form .form-control:focus {
  outline: none;
  box-shadow: none;
  color: var(--titleColor);
}
.newsletter-area .newsletter-form .subscribe-btn {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 10px;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  height: 50px;
  line-height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: 50px;
  transition: var(--transition);
  text-align: center;
}
.newsletter-area .newsletter-form .subscribe-btn:hover {
  background-color: var(--titleColor);
}
.newsletter-area .newsletter-form .validation-danger {
  font-size: 18px;
  margin-top: 5px;
  color: red;
}

/*================================
Footer Area
===================================*/
.footer-contact-area {
  background-color: var(--mainColor);
}
.footer-contact-area .section-title h2 {
  color: var(--whiteColor);
}
.footer-contact-area .default-btn {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}
.footer-contact-area .default-btn:hover {
  color: var(--whiteColor);
}

.footer-area {
  background-color: var(--titleColor);
}

.footer-widget {
  margin-bottom: 30px;
}
.footer-widget .footer-logo {
  margin-bottom: 20px;
}
.footer-widget h3 {
  margin-top: 0;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  display: block;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
.footer-widget h3::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--whiteColor);
  opacity: 0.2;
}
.footer-widget h3::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--mainColor);
}
.footer-widget p {
  margin-bottom: 25px;
  color: var(--whiteColor);
}
.footer-widget .social-link {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-widget .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.footer-widget .social-link li.social-title {
  font-size: 18px;
  color: var(--whiteColor);
}
.footer-widget .social-link li:last-child {
  margin-right: 0;
}
.footer-widget .social-link li a {
  display: inline-block;
}
.footer-widget .social-link li a i {
  font-size: 15px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  color: var(--mainColor);
  background-color: var(--whiteColor);
  transition: var(--transition);
  display: inline-block;
}
.footer-widget .social-link li a:hover i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.footer-widget .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-widget .footer-list li {
  display: block;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}
.footer-widget .footer-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--mainColor);
}
.footer-widget .footer-list li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-list li a {
  color: var(--whiteColor);
}
.footer-widget .footer-list li a:hover {
  color: var(--mainColor);
  letter-spacing: 0.25px;
}
.footer-widget .footer-list li:hover::before {
  color: var(--whiteColor);
}
.footer-widget .footer-list li:hover a {
  color: var(--mainColor);
  letter-spacing: 0.25px;
}
.footer-widget .footer-contact {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.footer-widget .footer-contact li {
  display: block;
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
}
.footer-widget .footer-contact li:last-child {
  margin-bottom: 0;
}
.footer-widget .footer-contact li i {
  font-size: 18px;
  color: var(--mainColor);
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 1;
}
.footer-widget .footer-contact li .content h4 {
  font-size: var(--fontSize);
  color: var(--whiteColor);
  margin-bottom: 5px;
}
.footer-widget .footer-contact li .content span {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.footer-widget .footer-contact li .content span a {
  color: var(--whiteColor);
  transition: var(--transition);
}
.footer-widget .footer-contact li:hover .content span a {
  color: var(--mainColor);
}

.copyright-area {
  border-top: 1px solid #4e4e4e;
  padding: 15px 0;
}

.copy-right-text p {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.copy-right-text p b {
  color: var(--mainColor);
  font-weight: 500;
}
.copy-right-text p a {
  color: var(--mainColor);
  font-weight: 500;
}
.copy-right-text p a:hover {
  color: var(--whiteColor);
}

.single-content {
  margin-bottom: 30px;
}
.single-content h1, .single-content h2, .single-content h3, .single-content h4, .single-content h5, .single-content h6 {
  margin-bottom: 15px;
}
.single-content h1 {
  font-size: 32px;
}
.single-content h2 {
  font-size: 29px;
}
.single-content h3 {
  font-size: 26px;
}
.single-content h4 {
  font-size: 23px;
}
.single-content h5 {
  font-size: 20px;
}
.single-content h6 {
  font-size: 17px;
}
.single-content a {
  color: var(--mainColor);
}
.single-content a:hover {
  color: var(--titleColor);
  border-bottom: 1px solid var(--mainColor);
}
.single-content ul, .single-content ol {
  margin-bottom: 30px;
}
.single-content ul li, .single-content ol li {
  margin-bottom: 10px;
}
.single-content ul li:last-child, .single-content ol li:last-child {
  margin-bottom: 0;
}
.single-content p {
  margin-bottom: 15px;
}
.single-content p:last-child {
  margin-bottom: 0;
}

/*=================================
404 Error Area
===================================*/
.error-area .error-content {
  text-align: center;
  position: relative;
}
.error-area .error-content h1 {
  font-size: 260px;
  line-height: 0.8;
  font-weight: 700;
  color: var(--titleColor);
}
.error-area .error-content h1 span {
  color: var(--mainColor);
}
.error-area .error-content h3 {
  margin: 35px 0 0;
  position: relative;
  color: var(--titleColor);
  font-size: 35px;
}
.error-area .error-content p {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/*=================================
Coming Soon Area
===================================*/
.coming-soon-area .coming-soon-content {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  padding: 50px 30px;
  background-color: var(--titleColor);
  border: 3px solid var(--mainColor);
}
.coming-soon-area .coming-soon-content h1 {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 50px;
}
.coming-soon-area .coming-soon-content p {
  font-size: 16px;
  max-width: 600px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--whiteColor);
}
.coming-soon-area .coming-soon-content #timer {
  margin-top: 40px;
}
.coming-soon-area .coming-soon-content #timer div {
  display: inline-block;
  color: var(--whiteColor);
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 10px;
  font-size: 28px;
  font-weight: 600;
  padding: 4px;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid var(--whiteColor);
}
.coming-soon-area .coming-soon-content #timer div span {
  display: block;
  text-transform: capitalize;
  margin-top: -7px;
  font-size: 16px;
  font-weight: normal;
  color: var(--whiteColor);
}
.coming-soon-area .coming-soon-content #timer div:last-child {
  margin-right: 0;
}
.coming-soon-area .coming-soon-content #timer div:last-child::before {
  display: none;
}
.coming-soon-area .coming-soon-content #timer div:first-child {
  margin-left: 0;
}
.coming-soon-area .coming-soon-content #timer div::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -10px;
  font-size: 70px;
  color: #ffffff;
}
.coming-soon-area .coming-soon-content .newsletter-form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  height: 60px;
  border: none;
  background-color: var(--whiteColor);
  padding-left: 15px;
  color: var(--whiteColor);
  outline: 0;
  transition: 0.5s;
  border-radius: 0;
  border: 1px solid #cccccc;
  color: #5d5d5d;
}
.coming-soon-area .coming-soon-content .newsletter-form .input-newsletter:focus {
  border-color: var(--mainColor);
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  outline: 0;
  cursor: pointer;
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn::before {
  border-radius: 0;
  background-color: var(--titleColor);
}
.coming-soon-area .coming-soon-content .newsletter-form .default-btn:hover {
  color: #ffffff;
  background-color: #190f3c;
}
.coming-soon-area #validator-newsletter {
  text-align: left;
  color: #dc3545 !important;
}

/*=================================
Go Top Area 
====================================*/
.go-top {
  position: fixed;
  top: 50%;
  right: 25px;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--whiteColor);
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  background: var(--mainColor);
  border-radius: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 100;
  transition: 0.5s;
}
.go-top i {
  transition: 0.5s;
  vertical-align: middle;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.go-top:hover {
  background-color: var(--titleColor);
}
.go-top.active {
  top: 95%;
  transform: translateY(-95%);
  opacity: 1;
  visibility: visible;
}

/*================================
Pagination Area
===================================*/
.pagination-area {
  margin-top: 10px;
  margin-bottom: 30px;
}
.pagination-area .page-numbers {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--bodyColor);
  background-color: transparent;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 50px;
  border: 1px solid var(--mainColor);
}
.pagination-area .page-numbers:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination-area .page-numbers i {
  position: relative;
  line-height: normal;
  top: 2px;
}
.pagination-area .page-numbers.current {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*=================================
Preloader CSS
====================================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#preloader-area {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
}
#preloader-area .spinner {
  position: absolute;
  z-index: 9999;
  width: 6px;
  height: 90px;
  margin-top: -45px;
  border-radius: 10px;
  background-color: var(--whiteColor);
  animation: rotate40deg 0.8s infinite;
  animation-direction: alternate-reverse;
}
#preloader-area .spinner:nth-child(1) {
  margin-left: 0px;
}
#preloader-area .spinner:nth-child(2) {
  margin-left: -14px;
  animation-delay: 0.1s;
}
#preloader-area .spinner:nth-child(3) {
  margin-left: -28px;
  animation-delay: 0.2s;
}
#preloader-area .spinner:nth-child(4) {
  margin-left: -42px;
  animation-delay: 0.3s;
}
#preloader-area .spinner:nth-child(5) {
  margin-left: -56px;
  animation-delay: 0.4s;
}
#preloader-area .spinner:nth-child(6) {
  margin-left: -70px;
  animation-delay: 0.5s;
}
#preloader-area .spinner:nth-child(7) {
  margin-left: -84px;
  animation-delay: 0.6s;
}
#preloader-area .spinner:nth-child(8) {
  margin-left: -98px;
  animation-delay: 0.7s;
}

#preloader .preloader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background-color: var(--mainColor);
  z-index: 999;
  transform: translateX(0);
}
#preloader .preloader-section.preloader-left {
  left: 0;
}
#preloader .preloader-section.preloader-right {
  right: 0;
}

.loaded #preloader-area {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}
.loaded #preloader .preloader-section.preloader-left {
  transform: translateX(-100%);
  transition: all 0.8s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.loaded #preloader .preloader-section.preloader-right {
  transform: translateX(100%);
  transition: all 0.8s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #preloader {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

@keyframes rotate40deg {
  0% {
    height: 5px;
    margin-top: 0;
    transform: rotate(40deg);
  }
  100% {
    height: 90px;
    transform: rotate(0deg);
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate-in {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
@keyframes rotated360 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-360deg);
  }
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 60% 40% 56% 33%/73% 82% 18% 27%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}/*# sourceMappingURL=style.css.map */


/* ===== BANNER SECTION ===== */
.aayura-banner-section {
  width: 100%;
  overflow: hidden;
  background: #17480F;
  position: relative;
}

/* Aspect ratio container — 16:5 */
.aayura-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5;
  overflow: hidden;
}

/* Responsive aspect ratio overrides */
@media (max-width: 991.98px) {
  .aayura-slider-wrapper {
    /* aspect-ratio: 16 / 7; */
  }
}


/* ===== TRACK ===== */
.aayura-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.72s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ===== INDIVIDUAL SLIDE ===== */
.aayura-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* ===== NAV BUTTONS ===== */
.aayura-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #D8F897;
  background: rgba(23, 72, 15, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  outline: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.aayura-nav svg {
  width: 20px;
  height: 20px;
  stroke: #D8F897;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aayura-nav:hover {
  background: #17480F;
  border-color: #D8F897;
  transform: translateY(-50%) scale(1.1);
}

.aayura-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.aayura-prev {
  left: 20px;
}

.aayura-next {
  right: 20px;
}

@media (max-width: 575.98px) {
  .aayura-nav {
    width: 36px;
    height: 36px;
  }
  .aayura-nav svg {
    width: 16px;
    height: 16px;
  }
  .aayura-prev { left: 10px; }
  .aayura-next { right: 10px; }
}

/* ===== INDICATORS ===== */
.aayura-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.aayura-indicator {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(216, 248, 151, 0.35);
  border: 1.5px solid #D8F897;
  cursor: pointer;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.3s;
  overflow: hidden;
}

/* Active indicator — pill shape with fill animation */
.aayura-indicator.aayura-active {
  width: 32px;
  border-radius: 6px;
  background: #D8F897;
  border-color: #D8F897;
}

/* Progress fill inside active indicator */
.aayura-indicator.aayura-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #17480F;
  transform-origin: left;
  animation: aayuraProgress 4s linear forwards;
  border-radius: 6px;
}

@keyframes aayuraProgress {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

.aayura-indicator:hover:not(.aayura-active) {
  background: rgba(216, 248, 151, 0.65);
}

@media (max-width: 575.98px) {
  .aayura-indicators {
    bottom: 10px;
    gap: 7px;
  }
  
  .aayura-indicator {
    width: 8px;
    height: 8px;
  }
  .aayura-indicator.aayura-active {
    width: 24px;
  }
}
/* Mobile - Full banner visible */
@media (max-width: 575.98px) {
  .aayura-slider-wrapper {
    aspect-ratio: 16 / 6;
  }
}
/* ===== ABOUT SECTION BASE ===== */
.aayura-about-section {
  padding: 30px 0;
  background: #f9fcf4;
}

/* ===== TAG ===== */
.aayura-tag {
  display: inline-block;
  background: #D8F897;
  color: #17480F;
  font-size: 12px;
  font-weight: 700;
  font-family: "Salsa", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ===== HEADINGS ===== */
.aayura-main-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #17480F;
  line-height: 1.2;
  margin-bottom: 14px;
}

.aayura-highlight {
  color: #4a9e1a;
  position: relative;
}

.aayura-section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #17480F;
  margin-bottom: 12px;
}

.aayura-sub-heading {
  font-size: 16px;
  color: #555;
  /* max-width: 620px; */
  margin: 0 auto 10px;
  line-height: 1.7;
}

.aayura-body-text {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}

/* ===== DIVIDER ===== */
.aayura-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.aayura-divider span:nth-child(1),
.aayura-divider span:nth-child(3) {
  display: block;
  width: 40px;
  height: 3px;
  background: #D8F897;
  border-radius: 2px;
}
.aayura-divider span:nth-child(2) {
  display: block;
  width: 10px;
  height: 10px;
  background: #17480F;
  border-radius: 50%;
}

/* ===== IMAGE FRAME ===== */
.aayura-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.aayura-about-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 16px 48px rgba(23,72,15,0.18);
}
.aayura-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #17480F;
  color: #D8F897;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(23,72,15,0.25);
}
.aayura-badge-num {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.aayura-badge-txt {
  font-size: 11px;
  font-family: "Salsa", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 3px;
  white-space: nowrap;
}
.aayura-img-badge2 {
  position: absolute;
  top: -14px;
  right: -14px;
  background: #D8F897;
  color: #17480F;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(23,72,15,0.15);
}

/* ===== USP PILLS ===== */
.aayura-usp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}
.aayura-usp-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  font-family: "Salsa", sans-serif;
  border: 1.5px solid #D8F897;
  color: #17480F;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(23,72,15,0.07);
}



/* ===== STORY BLOCK PADDING ===== */
.aayura-story-block {
  padding-left: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-about-section {
    padding: 60px 0;
  }
  .aayura-img-frame {
    margin-bottom: 40px;
  }
  .aayura-story-block {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .aayura-about-section {
    padding: 48px 0;
  }
  .aayura-img-badge {
    left: 10px;
    bottom: -14px;
  }
  .aayura-img-badge2 {
    right: 10px;
    top: -12px;
  }
  .aayura-usp-pill {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 575.98px) {
 
  .aayura-usp-row {
    gap: 8px;
  }
}
.aayura-showcase-section {
  padding: 30px 0;
  background: #f9fcf4;
}

.aayura-sc-tag {
  display: inline-block;
  background: #D8F897;
  color: #17480F;
  font-size: 12px;
  font-weight: 700;
   font-family: "Salsa", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.aayura-sc-heading {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: #17480F;
  margin-bottom: 16px;
}

.aayura-sc-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.aayura-sc-divider span:nth-child(1),
.aayura-sc-divider span:nth-child(3) {
  display: block;
  width: 44px;
  height: 3px;
  background: #D8F897;
  border-radius: 2px;
}
.aayura-sc-divider span:nth-child(2) {
  display: block;
  width: 10px;
  height: 10px;
  background: #17480F;
  border-radius: 50%;
}

/* ===== BOXES ===== */
.aayura-sc-box {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.aayura-sc-left {
  background: #17480F;
  border-radius: 18px 0 0 18px;
}
.aayura-sc-right {
  background: #17480F;
  border-radius: 0 18px 18px 0;
}

/* SVG flower/mandala tiled pattern */
.aayura-sc-pattern {
  position: absolute;
  inset: 0;
  background-image: url(../images/aayura/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Glowing corner blobs */
.aayura-sc-box::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,248,151,0.1) 0%, transparent 70%);
  top: -50px;
  left: -50px;
  pointer-events: none;
  z-index: 0;
}
.aayura-sc-box::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,248,151,0.08) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  pointer-events: none;
  z-index: 0;
}

.aayura-sc-box-inner {
  position: relative;
  z-index: 1;
  padding: 40px 32px;
  width: 100%;
}

.aayura-sc-box-title {
  font-size: 17px;
  font-weight: 800;
  color: #D8F897;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 18px;
  text-align: center;
}

.aayura-sc-box-text {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 16px;
}

.aayura-sc-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aayura-sc-features li {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  padding: 7px 0;
  /* border-bottom: 1px solid rgba(216,248,151,0.13); */
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.aayura-sc-features li:last-child { border-bottom: none; }
.aayura-sc-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #D8F897;
}

.aayura-sc-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D8F897;
  color: #17480F;
  font-size: 15px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 6px;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.aayura-sc-phone:hover { opacity: 0.85; color: #17480F; }

/* ===== CENTER ===== */
.aayura-sc-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 8px 32px;
  z-index: 2;
}

.aayura-sc-offer-badge {
  position: absolute;
  top: 10px;
  left: 14px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #e8302a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(232,48,42,0.45);
  z-index: 5;
}
.aayura-sc-offer-pct {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.aayura-sc-offer-txt {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

.aayura-sc-img-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, #f2fde0 55%, #cdf090 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 10px rgba(216,248,151,0.2),
    0 0 0 20px rgba(216,248,151,0.08),
    0 16px 48px rgba(23,72,15,0.18);
  overflow: hidden;
}
.aayura-sc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aayura-sc-center-cta { margin-top: 26px; }
.aayura-sc-btn {
  display: inline-block;
  background: #17480F;
  color: #D8F897;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 20px rgba(23,72,15,0.25);
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.aayura-sc-btn:hover {
  background: #D8F897;
  color: #17480F;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-showcase-section { padding: 60px 0; }
  .aayura-sc-box { min-height: auto; }
  .aayura-sc-img-circle { width: 240px; height: 240px; }
  .aayura-sc-box-inner { padding: 30px 22px; }
}

@media (max-width: 767.98px) {
  .aayura-sc-left  { border-radius: 18px !important; }
  .aayura-sc-right { border-radius: 18px !important; }
  .aayura-sc-center { padding: 30px 10px; }
  .aayura-sc-img-circle { width: 210px; height: 210px; }
  .aayura-sc-offer-badge {
    top: 12px;
    left: calc(50% - 110px);
    width: 62px;
    height: 62px;
  }
  .aayura-sc-offer-pct { font-size: 18px; }
}

@media (max-width: 575.98px) {
  .aayura-showcase-section { padding: 40px 0; }
  .aayura-sc-img-circle { width: 180px; height: 180px; }
  .aayura-sc-box-title { font-size: 15px; }
  .aayura-sc-box-text { font-size: 13px; }
}
/* ===== CTA BUTTON ===== */
.aayura-cta-btn {
  display: inline-block;
  background: #17480F;
  color: #D8F897;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.aayura-cta-btn:hover {
  background: #D8F897;
  color: #17480F;
  transform: translateY(-2px);
}
/* ===== CTA SECTION ===== */
.aayura-cta-section {
  position: relative;
  background: #17480F;
  padding: 30px 0;
  overflow: hidden;
}

/* Tiled flower pattern */
.aayura-cta-pattern {
  position: absolute;
  inset: 0;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(216,248,151,0.06)' stroke-width='0.8'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='50' cy='50' r='28'/%3E%3Ccircle cx='50' cy='50' r='16'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='14' transform='rotate(0 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='14' transform='rotate(30 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='14' transform='rotate(60 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='14' transform='rotate(90 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='14' transform='rotate(120 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='14' transform='rotate(150 50 50)'/%3E%3C/g%3E%3C/svg%3E"); */
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
}

/* Glow blobs */
.aayura-cta-blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}
.aayura-cta-blob-left {
  background: rgba(216,248,151,0.08);
  top: -80px;
  left: -80px;
}
.aayura-cta-blob-right {
  background: rgba(216,248,151,0.07);
  bottom: -80px;
  right: -80px;
}

/* ===== SUBTITLE ===== */
.aayura-cta-subtitle {
  font-family: "Salsa", sans-serif;
  display: inline-block;
  background: rgba(216,248,151,0.15);
  border: 1px solid rgba(216,248,151,0.35);
  color: #D8F897;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* ===== HEADING ===== */
.aayura-cta-heading {
  font-family: "Salsa", sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.aayura-cta-heading em {
  color: #D8F897;
  font-style: normal;
}

/* ===== DESCRIPTION ===== */
.aayura-cta-desc {
  font-family: "Salsa", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.85;
  /* max-width: 760px; */
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.aayura-cta-desc strong {
  font-family: "Salsa", sans-serif;
  color: #D8F897;
  font-weight: 400;
}

/* ===== BUTTONS ===== */
.aayura-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.aayura-cta-btn2 {
  font-family: "Salsa", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.aayura-cta-btn-primary2 {
  background: #D8F897;
  color: #17480F;
  box-shadow: 0 8px 28px rgba(216,248,151,0.28);
}
.aayura-cta-btn-primary2:hover {
  background: #c8ee7a;
  color: #17480F;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(216,248,151,0.38);
}

.aayura-cta-btn-outline {
  background: transparent;
  color: #D8F897;
  border: 2px solid #D8F897;
}
.aayura-cta-btn-outline:hover {
  background: #D8F897;
  color: #17480F;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(216,248,151,0.25);
}

/* ===== TRUST STRIP ===== */
.aayura-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 6px;
  position: relative;
  z-index: 1;
}

.aayura-trust-item {
  font-family: "Salsa", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.aayura-trust-sep {
  font-family: "Salsa", sans-serif;
  color: rgba(216,248,151,0.4);
  font-size: 16px;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-cta-section { padding: 70px 0; }
}

@media (max-width: 767.98px) {
  .aayura-cta-section { padding: 56px 0; }
  .aayura-cta-desc { font-size: 14.5px; text-align: center; }
  .aayura-cta-btns { gap: 14px; }
  .aayura-cta-btn2 { padding: 13px 28px; font-size: 14px; }
  .aayura-trust-sep { display: none; }
  .aayura-cta-trust { gap: 10px 16px; }
}

@media (max-width: 575.98px) {
  .aayura-cta-section { padding: 44px 0; }
  .aayura-cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .aayura-cta-btn { width: 100%; max-width: 280px; }
  .aayura-cta-desc { font-size: 14px; }
  .aayura-cta-subtitle { font-size: 11px; letter-spacing: 0.14em; }
}
/* ===== SECTION ===== */
.aayura-products-section {
  padding: 40px 0;
  background: #f9fcf4;
}

.aayura-prod-tag {
  display: inline-block;
  background: #D8F897;
  color: #17480F;
  font-size: 12px;
  font-family: "Salsa" , sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.aayura-prod-heading {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #17480F;
  margin-bottom: 10px;
}
.aayura-prod-subtext {
  font-size: 15px;
  color: #666;
  /* max-width: 520px; */
  margin: 0 auto 16px;
  line-height: 1.7;
}
.aayura-prod-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.aayura-prod-divider span:nth-child(1),
.aayura-prod-divider span:nth-child(3) {
  display: block; width: 44px; height: 3px;
  background: #D8F897; border-radius: 2px;
}
.aayura-prod-divider span:nth-child(2) {
  display: block; width: 10px; height: 10px;
  background: #17480F; border-radius: 50%;
}

/* ===== CARD ===== */
.aayura-prod-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e6f4d0;
  box-shadow: 0 2px 14px rgba(23,72,15,0.07);
  transition: transform 0.28s, box-shadow 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.aayura-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(23,72,15,0.13);
}

/* Image */
.aayura-prod-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, #edfac8 0%, #d8f48a 100%);
}
.aayura-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
.aayura-prod-card:hover .aayura-prod-img {
  transform: scale(1.06);
}

/* Badge */
.aayura-prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #17480F;
  color: #D8F897;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.aayura-badge-sky   { background: #0e7490; color: #fff; }
.aayura-badge-rose  { background: #be185d; color: #fff; }
.aayura-badge-amber { background: #b45309; color: #fff; }

/* Body */
.aayura-prod-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: space-between;
}
.aayura-prod-name {
  font-size: 20px;
  font-weight: 800;
  color: #17480F;
  text-align: center;
  margin: 0;
  line-height: 1.35;
}

/* Buy Button */
.aayura-prod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: #17480F;
  color: #D8F897;
   font-family: "Salsa" , sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 11px 0;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.22s, color 0.22s, transform 0.18s;
}
.aayura-prod-btn:hover {
  background: #D8F897;
  color: #17480F;
  transform: translateY(-1px);
}

/* ===== OVERLAY ===== */
.aayura-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 35, 15, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.aayura-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ===== MODAL ===== */
.aayura-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 30px 30px 26px;
  position: relative;
  box-shadow: 0 20px 70px rgba(23,72,15,0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.34,1.5,0.64,1);
}
.aayura-overlay.active .aayura-modal {
  transform: translateY(0) scale(1);
}

/* Close button */
.aayura-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.aayura-close:hover {
  background: #17480F;
  color: #D8F897;
  border-color: #17480F;
}

/* Modal header */
.aayura-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.aayura-modal-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: #D8F897;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aayura-modal-title {
  font-size: 19px;
  font-weight: 800;
  color: #17480F;
  margin: 0 0 2px;
  line-height: 1.2;
}
.aayura-modal-sub {
  font-size: 12.5px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

/* Product chip */
.aayura-prod-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f0fbd8;
  border: 1px solid #c2e87a;
  color: #17480F;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ===== FORM ===== */
.aayura-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aayura-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.aayura-textarea-wrap {
  align-items: flex-start;
}

.aayura-input-icon {
  position: absolute;
  left: 13px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}
.aayura-icon-top {
  top: 13px;
  align-items: flex-start;
}

.aayura-input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 13.5px;
  color: #333;
  background: #fafafa;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.aayura-input:focus {
  border-color: #17480F;
  box-shadow: 0 0 0 3px rgba(23,72,15,0.07);
  background: #fff;
}
.aayura-input::placeholder { color: #bbb; font-size: 13px; }

.aayura-textarea {
  resize: none;
  height: 82px;
  padding-top: 12px;
}

/* Submit */
.aayura-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #17480F;
  color: #D8F897;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-top: 4px;
  transition: background 0.22s, transform 0.18s;
}
.aayura-submit-btn:hover {
  background: #0f2e08;
  transform: translateY(-1px);
}

/* ===== SUCCESS ===== */
.aayura-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0 8px;
}
.aayura-success.show { display: flex; }
.aayura-success-ring {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #D8F897;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.aayura-success-title {
  font-size: 20px;
  font-weight: 800;
  color: #17480F;
  margin-bottom: 8px;
}
.aayura-success-msg {
  font-size: 13.5px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-products-section { padding: 60px 0; }
}
@media (max-width: 767.98px) {
  .aayura-products-section { padding: 48px 0; }
  .aayura-modal { padding: 26px 22px 22px; }
}
@media (max-width: 575.98px) {
  .aayura-products-section { padding: 36px 0; }
  .aayura-modal { padding: 22px 16px 20px; border-radius: 16px; }
  .aayura-modal-title { font-size: 17px; }
}
.aayura-why-section {
  position: relative;
  background: #17480F;
  /* padding: 0 0 0; */
  overflow: hidden;
}

/* Background mandala pattern */
.aayura-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%238bc34a' stroke-opacity='0.06' stroke-width='1'%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(45 30 30)'/%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(135 30 30)'/%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(225 30 30)'/%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(315 30 30)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
}

/* Glow blobs */
.aayura-why-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,248,151,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Wave top/bottom */
.aayura-why-wave-top,
.aayura-why-wave-bottom {
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 1;
}
.aayura-why-wave-top  { margin-bottom: -1px; }
.aayura-why-wave-bottom { margin-top: -1px; }

/* Container padding inside waves */
.aayura-why-section .container {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* ===== HEADING ===== */
.aayura-why-tag {
  display: inline-block;
  background: rgba(216,248,151,0.18);
  border: 1px solid rgba(216,248,151,0.35);
  color: #D8F897;
  font-size: 12px;
  font-family: "Salsa" , sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.aayura-why-heading {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.aayura-why-subtext {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto 18px;
  line-height: 1.75;
}
.aayura-why-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.aayura-why-divider span:nth-child(1),
.aayura-why-divider span:nth-child(3) {
  display: block; width: 44px; height: 3px;
  background: #D8F897; border-radius: 2px;
}
.aayura-why-divider span:nth-child(2) {
  display: block; width: 10px; height: 10px;
  background: #D8F897; border-radius: 50%;
}

/* ===== FEATURE CARDS ===== */
.aayura-feat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(216,248,151,0.14);
  border-radius: 18px;
  padding: 30px 26px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.28s, transform 0.28s, border-color 0.28s;
  position: relative;
  overflow: hidden;
}
.aayura-feat-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(216,248,151,0.05);
  pointer-events: none;
}
.aayura-feat-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(216,248,151,0.3);
  transform: translateY(-5px);
}

.aayura-feat-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aayura-feat-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.35;
}

.aayura-feat-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  text-align: justify;
}

.aayura-feat-line {
  height: 3px;
  width: 40px;
  border-radius: 2px;
  margin-top: 4px;
}

/* ===== STRIP CARDS ===== */
.aayura-strip-card {
  background: rgba(216,248,151,0.07);
  border: 1px solid rgba(216,248,151,0.16);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  transition: background 0.25s, transform 0.25s;
}
.aayura-strip-card:hover {
  background: rgba(216,248,151,0.12);
  transform: translateY(-3px);
}

.aayura-strip-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: #D8F897;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aayura-strip-content { flex: 1; }

.aayura-strip-title {
  font-size: 15px;
  font-weight: 700;
  color: #D8F897;
  margin: 0 0 8px;
  line-height: 1.3;
}

.aayura-strip-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

/* ===== STATS BAR ===== */
.aayura-stats-bar {
  background: rgba(216,248,151,0.1);
  border: 1px solid rgba(216,248,151,0.18);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.aayura-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  min-width: 100px;
}

.aayura-stat-num {
  font-size: 34px;
  font-weight: 900;
  color: #D8F897;
  line-height: 1;
}
.aayura-stat-plus {
  font-size: 22px;
  font-weight: 700;
  color: #D8F897;
}

.aayura-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.aayura-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(216,248,151,0.2);
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-why-section .container { padding-top: 55px; padding-bottom: 48px; }
  .aayura-stats-bar { padding: 22px 20px; gap: 16px; }
  .aayura-stat-sep { display: none; }
  .aayura-stat-num { font-size: 28px; }
}

@media (max-width: 767.98px) {
  .aayura-why-section .container { padding-top: 44px; padding-bottom: 38px; }
  .aayura-feat-card { padding: 24px 20px 22px; }
  .aayura-stats-bar { justify-content: center; }
  .aayura-stat-item { min-width: 80px; }
}

@media (max-width: 575.98px) {
  .aayura-why-section .container { padding-top: 36px; padding-bottom: 30px; }
  .aayura-stat-num { font-size: 26px; }
  .aayura-stat-label { font-size: 11px; }
  .aayura-stats-bar { gap: 12px; padding: 18px 14px; }
}
.testimonial-section {
    background-color: #fcfdfc;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%230d4a2a' stroke-opacity='0.03' stroke-width='0.7'%3E%3Ccircle cx='50' cy='50' r='12'/%3E%3Cpath d='M50 20 Q60 35 50 50 Q40 35 50 20' transform='rotate(45 50 50)'/%3E%3C/g%3E%3C/svg%3E");
}

.header-line {
    width: 60px;
    height: 3px;
    background: #8bc34a;
    margin-top: 15px;
}

.testimonial-card {
    background: #ffffff;
    padding: 50px 30px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid #f0f4f0;
    margin-top: 45px; /* Space for the floating avatar */
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 74, 42, 0.1);
}

.avatar-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6d5a;
    /* font-style: italic; */
    min-height: 80px; /* Forces exactly 3 lines consistency */
    margin-bottom: 20px;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 15px;
}

.user-name {
    color: #0d4a2a;
    font-weight: 800;
    margin-bottom: 3px;
}

.user-role {
    color: #8bc34a;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Custom Dots (Indicators) */
.owl-theme .owl-dots {
    margin-top: 40px !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #dce7dc !important;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #0d4a2a !important;
    width: 30px;
}
.aayura-food-strip {
  background: #D8F897;
  overflow: hidden;
  padding: 9px 0;
  border-top: 2px solid #b8d870;
  border-bottom: 2px solid #b8d870;
  white-space: nowrap;
}
.aayura-food-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  animation: aayuraMarquee 30s linear infinite;
  will-change: transform;
}
.aayura-food-track span {
  font-size: 16px;
  font-weight: 700;
  color: #17480F;
  font-family: "Salsa" , sans-serif;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.aayura-sdot { color: #17480F !important; font-size: 9px !important; opacity: 0.45; }
@keyframes aayuraMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== LEAF BORDER ===== */
.aayura-leaf-border {
  display: block;
  width: 100%;
  line-height: 0;
  background: #f9fcf4; /* matches section above */
}
.aayura-leaf-border svg {
  display: block;
  width: 100%;
  height: 54px;
}

/* ===== FOOTER BASE ===== */
.aayura-footer {
  background: #0e2e08;
  position: relative;
  padding: 60px 0px 0px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
/* .aayura-footer-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='rgba(216,248,151,0.04)' stroke-width='0.7'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3Ccircle cx='50' cy='50' r='26'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='12' transform='rotate(0 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='12' transform='rotate(45 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='12' transform='rotate(90 50 50)'/%3E%3Cellipse cx='50' cy='50' rx='40' ry='12' transform='rotate(135 50 50)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
} */

/* ===== COLUMN BASE ===== */
.aayura-fcol { display: flex; flex-direction: column; gap: 0; }

/* ===== HEADING ===== */
.aayura-fhead {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.aayura-fhead-leaf {
  display: block;
  margin-bottom: 18px;
}
.aayura-fhead-leaf svg { display: block; }

/* ===== BRAND ===== */
.aayura-flogo-link { display: inline-block; margin-bottom: 16px; }
.aayura-flogo {
  height: 68px;
  width: auto;
  object-fit: contain;
}
.aayura-fabout {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
  margin: 0 0 18px;
  text-align: justify;
}
.aayura-fabout strong { color: #D8F897; font-weight: 600; }

/* Social */
.aayura-fsocial { display: flex; flex-direction: column; gap: 10px; }
.aayura-fsocial-label {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.aayura-fsocial-row { display: flex; gap: 10px; flex-wrap: wrap; }
.aayura-fsc-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(216,248,151,0.22);
  background: rgba(216,248,151,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.2s;
}
.aayura-fsc-btn:hover {
  background: #D8F897;
  border-color: #D8F897;
  color: #17480F;
  transform: translateY(-3px);
}

/* ===== QUICK LINKS ===== */
.aayura-flinks {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1px;
}
.aayura-flinks li a {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  padding: 7px 0;
  /* border-bottom: 1px solid rgba(216,248,151,0.06); */
  transition: color 0.2s, gap 0.2s;
}
.aayura-flinks li:last-child a { border-bottom: none; }
.aayura-flinks li a svg { color: rgba(216,248,151,0.35); flex-shrink: 0; transition: color 0.2s; }
.aayura-flinks li a:hover { color: #D8F897; gap: 12px; }
.aayura-flinks li a:hover svg { color: #D8F897; }

/* ===== CONTACT ===== */
.aayura-fcontact {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.aayura-fcontact li { display: flex; align-items: flex-start; gap: 12px; }
.aayura-fci {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  background: #D8F897;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.aayura-fcinfo { display: flex; flex-direction: column; gap: 2px; }
.aayura-fclabel {
  font-size: 14px;
  font-weight: 700;
  font-family: "Merienda" ,  sans-serif;
  color: rgba(216,248,151,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.aayura-fcval {
  font-size: 16px;
  color: #ffffff;
  font-family: "Salsa" , sans-serif;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s;
}
a.aayura-fcval:hover { color: #D8F897; }

/* ===== MAP ===== */
.aayura-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(216,248,151,0.18);
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.aayura-map-wrap iframe { display: block; }
.aayura-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(216,248,151,0.12);
  border: 1px solid rgba(216,248,151,0.28);
  color: #D8F897;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.22s, color 0.22s;
  letter-spacing: 0.02em;
}
.aayura-map-btn:hover {
  background: #D8F897;
  color: #17480F;
}

/* Footer Container */
.aayura-main-footer {
    background-color: #0d4a2a; /* Deep Brand Green */
    position: relative;
}

/* Decorative Top Border (Garland/Traditional PNG) */
.aayura-footer-top-border {
    height: 40px;
    background-image: url('assets/images/traditional-border.png');
    background-repeat: repeat-x;
    background-size: contain;
    width: 100%;
}

/* Copyright Bar Background & Pattern */
.aayura-copyright-bar {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
    background-color: #08361e; /* Slightly darker shade */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%238bc34a' stroke-opacity='0.06' stroke-width='1'%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(45 30 30)'/%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(135 30 30)'/%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(225 30 30)'/%3E%3Cpath d='M30 5c0 0 5 10 15 10s5-10 5-10-5-10-15-10S30 5 30 5z' transform='rotate(315 30 30)'/%3E%3C/g%3E%3C/svg%3E");
}

/* ===== HR ===== */
.aayura-fhr {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(216,248,151,0.2), transparent);
}

/* ===== COPYRIGHT TEXT ===== */
.aayura-fcopy {
    font-size: 17px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.aayura-fcopy strong { 
    color: rgba(216,248,151,0.9); 
    font-weight: 600; 
}
.aayura-fcopy  a{
  color: rgba(216,248,151,0.9);
  font-weight: 700;
}



@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-footer .container { padding-top: 0; }
}
@media (max-width: 767.98px) {
  .aayura-fabout { text-align: justify; }
  .aayura-fcol { align-items: flex-start; }
  .aayura-flogo-link { display: block; text-align: center; width: 100%; }
  .aayura-fsocial { align-items: center; }
  .aayura-fcopy { font-size: 12px; }
}
@media (max-width: 575.98px) {
  .aayura-flogo { height: 54px; }
  .aayura-fhead { font-size: 15px; }
  .aayura-leaf-border svg { height: 40px; }
}
/* ---- SHARED UTILITIES ---- */
    .aayura-tag {
      display: inline-block;
      background: #D8F897;
      color: #17480F;
      font-size: 12px;
      font-weight: 700;
      font-family: "Salsa", sans-serif;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      margin-bottom: 14px;
    }
    .aayura-main-heading {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: #17480F;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .aayura-highlight { color: #4a9e1a; }
    .aayura-section-title {
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 800;
      color: #17480F;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .aayura-body-text {
      font-size: 15.5px;
      color: #444;
      line-height: 1.85;
      margin-bottom: 16px;
      text-align: justify;
    }
    .aayura-divider {
      display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 18px;
    }
    .aayura-divider span:nth-child(1),
    .aayura-divider span:nth-child(3) { display: block; width: 40px; height: 3px; background: #D8F897; border-radius: 2px; }
    .aayura-divider span:nth-child(2) { display: block; width: 10px; height: 10px; background: #17480F; border-radius: 50%; }

    .aayura-cta-btn {
      display: inline-block;
      background: #17480F;
      color: #D8F897;
      font-family: "Salsa", sans-serif;
      font-size: 14px;
      letter-spacing: 0.08em;
      padding: 12px 28px;
      border-radius: 30px;
      text-decoration: none;
      transition: background 0.25s, color 0.25s, transform 0.2s;
      margin-top: 8px;
    }
    .aayura-cta-btn:hover { background: #4a9e1a; color: #fff; transform: translateY(-2px); }

    /* ---- HERO BANNER ---- */
    .about-hero {
      background: linear-gradient(135deg, #17480F 0%, #2a6b18 55%, #3d8a24 100%);
      padding: 90px 0 70px;
      position: relative;
      overflow: hidden;
    }
    .about-hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image: radial-gradient(circle at 20% 50%, rgba(216,248,151,0.08) 0%, transparent 60%),
                        radial-gradient(circle at 80% 20%, rgba(216,248,151,0.06) 0%, transparent 50%);
    }
    .about-hero-pattern {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8F897' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .about-hero .breadcrumb-wrap {
      position: relative; z-index: 2;
    }
    .about-hero h1 {
      font-family: "Salsa", sans-serif;
      font-size: clamp(32px, 5vw, 56px);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 16px;
      position: relative; z-index: 2;
    }
    .about-hero h1 span { color: #D8F897; }
    .about-hero p {
      font-size: 16px; color: rgba(255,255,255,0.82);
      max-width: 560px; line-height: 1.75;
      position: relative; z-index: 2;
    }
    .hero-breadcrumb {
      font-size: 13px; color: rgba(255,255,255,0.6);
      margin-bottom: 20px; position: relative; z-index: 2;
    }
    .hero-breadcrumb a { color: #D8F897; text-decoration: none; }
    .hero-breadcrumb span { margin: 0 8px; }
    .hero-stats {
      display: flex; gap: 32px; flex-wrap: wrap;
      margin-top: 32px; position: relative; z-index: 2;
    }
    .hero-stat { text-align: center; }
    .hero-stat-num {
      font-family: "Salsa", sans-serif;
      font-size: 36px; color: #D8F897; display: block; line-height: 1;
    }
    .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }
    .hero-img-wrap {
      position: relative; z-index: 2;
    }
    .hero-img-wrap img {
      width: 100%; border-radius: 20px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      border: 3px solid rgba(216,248,151,0.3);
    }
    .hero-float-badge {
      position: absolute; bottom: -16px; left: -20px;
      background: #D8F897; color: #17480F;
      font-family: "Salsa", sans-serif;
      font-size: 13px; padding: 10px 18px;
      border-radius: 30px; font-weight: 700;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    /* ---- SECTION SPACINGS ---- */
    .ab-section { padding: 30px 0; }
    .ab-section-alt { padding: 30px 0; background: #fff; }
    .ab-section-dark {
      padding: 30px 0;
      background: linear-gradient(135deg, #17480F 0%, #1f5a13 100%);
      position: relative; overflow: hidden;
    }
    .ab-section-dark::before {
      content: ""; position: absolute; inset: 0; opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8F897' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    /* ---- IMAGE FRAME (reused from homepage) ---- */
    .aayura-img-frame {
      position: relative; display: inline-block; width: 100%;
    }
    .aayura-about-img {
      width: 100%; border-radius: 20px;
      box-shadow: 0 20px 60px rgba(23,72,15,0.18);
    }
    .aayura-img-badge {
      position: absolute; bottom: 24px; left: -18px;
      background: #17480F; color: #D8F897;
      padding: 10px 18px; border-radius: 14px;
      font-family: "Salsa", sans-serif; text-align: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .aayura-badge-num { display: block; font-size: 22px; line-height: 1; }
    .aayura-badge-txt { font-size: 11px; white-space: nowrap; opacity: 0.85; }
    .aayura-img-badge2 {
      position: absolute; top: 20px; right: -14px;
      background: #D8F897; color: #17480F;
      padding: 7px 14px; border-radius: 20px;
      font-size: 12px; font-weight: 700;
      font-family: "Salsa" , sans-serif;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      display: flex; align-items: center; gap: 5px;
    }

    /* ---- USP PILLS ---- */
    .aayura-usp-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
    .aayura-usp-pill {
      display: flex; align-items: center; gap: 6px;
      background: #edf7e0; color: #17480F;
      font-size: 13px; font-weight: 700;
      padding: 7px 14px; border-radius: 20px;
      border: 1.5px solid #c8eea0;
    }

    /* ======================================
       SECTION 1 — OUR STORY (same as home)
    ====================================== */
    /* already covered by homepage reuse */

    /* ======================================
       SECTION 2 — INCEPTION & JOURNEY
    ====================================== */
    .journey-timeline { position: relative; padding-left: 0; }
    .journey-item {
      display: flex; gap: 24px; margin-bottom: 36px;
      align-items: flex-start;
    }
    .journey-icon {
      flex-shrink: 0;
      width: 52px; height: 52px;
      background: linear-gradient(135deg, #17480F, #4a9e1a);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 18px rgba(23,72,15,0.25);
    }
    .journey-icon svg { color: #D8F897; }
    .journey-item-body h5 {
      font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 6px;
    }
    .journey-item-body p {
      font-size: 16px; color: #555; line-height: 1.75; margin: 0; text-align: justify;
    }
    .journey-year-badge {
      display: inline-block;
      background: #D8F897; color: #17480F;
      font-family: "Salsa", sans-serif;
      font-size: 13px; padding: 3px 12px;
      border-radius: 10px; margin-bottom: 8px; font-weight: 700;
    }

    /* ======================================
       SECTION 3 — OUR PROCESS
    ====================================== */
    .process-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 24px;
      border: 1.5px solid #e8f5d8;
      position: relative;
      transition: transform 0.25s, box-shadow 0.25s;
      height: 100%;
    }
    .process-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(23,72,15,0.12);
    }
    .process-card-num {
      position: absolute; top: -16px; left: 24px;
      background: #17480F; color: #D8F897;
      font-family: "Salsa", sans-serif;
      font-size: 15px; padding: 5px 14px;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(23,72,15,0.25);
    }
    .process-card-icon {
      width: 54px; height: 54px;
      background: linear-gradient(135deg, #edf7e0, #c8eea0);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px; margin-top: 10px;
    }
    .process-card h5 {
      font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 10px;
    }
    .process-card p {
      font-size: 16px; color: #555; line-height: 1.75; margin: 0; text-align: justify;
    }

    /* ======================================
       SECTION 4 — ATTENTION TO DETAIL
    ====================================== */
    .detail-list { list-style: none; padding: 0; margin: 20px 0; }
    .detail-list li {
      display: flex; align-items: flex-start; gap: 14px;
      margin-bottom: 18px;
    }
    .detail-check {
      flex-shrink: 0; width: 26px; height: 26px;
      background: #D8F897;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .detail-list li span {
      font-size: 16px; color: #444; line-height: 1.7; font-family: "Salsa" , sans-serif;text-align: justify;
    }
    .detail-list li strong { color: #17480F; font-size: 18px; }
    .detail-img-stack { position: relative; }
    .detail-img-main {
      width: 100%; border-radius: 20px;
      box-shadow: 0 20px 60px rgba(23,72,15,0.15);
    }
    .detail-img-overlay {
      position: absolute; bottom: -20px; right: -20px;
      width: 55%; border-radius: 16px;
      border: 4px solid #f9fcf4;
      box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    }

    /* ======================================
       SECTION 5 — OUR VALUES (dark bg)
    ====================================== */
    .value-card {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(216,248,151,0.2);
      border-radius: 20px; padding: 30px 24px;
      text-align: center;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
      height: 100%;
    }
    .value-card:hover {
      background: rgba(216,248,151,0.1);
      border-color: rgba(216,248,151,0.5);
      transform: translateY(-5px);
    }
    .value-icon {
      width: 60px; height: 60px;
      background: rgba(216,248,151,0.15);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      border: 2px solid rgba(216,248,151,0.3);
    }
    .value-card h5 {
      font-family: "Salsa", sans-serif;
      font-size: 18px; color: #D8F897; margin-bottom: 10px;
    }
    .value-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0; }

    /* ======================================
       SECTION 6 — WHY CHOOSE US
    ====================================== */
    .why-row { display: flex; flex-direction: column; gap: 20px; }
    .why-item {
      display: flex; gap: 18px; align-items: flex-start;
      background: #fff; border-radius: 16px;
      padding: 20px 22px;
      border: 1.5px solid #e8f5d8;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .why-item:hover { box-shadow: 0 12px 36px rgba(23,72,15,0.1); transform: translateX(4px); }
    .why-num {
      flex-shrink: 0; width: 38px; height: 38px;
      background: linear-gradient(135deg, #17480F, #4a9e1a);
      color: #D8F897; border-radius: 10px;
      font-family: "Salsa", sans-serif; font-size: 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .why-item h6 { font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 10px; }
    .why-item p { font-size: 16px; color: #555; line-height: 1.65; margin: 0; text-align: justify\;}

    .certify-badge {
      background: #fff;
      border-radius: 16px; padding: 22px;
      border: 1.5px solid #e8f5d8;
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 14px;
    }
    .certify-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, #edf7e0, #c8eea0);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .certify-badge h6 { font-size: 20px; font-weight: 800; color: #17480F; margin: 0 0 6px; }
    .certify-badge p { font-size: 16px; color: #777; margin: 0; line-height: 1.5; text-align: justify ;}

    /* ======================================
       SECTION 7 — CTA STRIP
    ====================================== */
    .cta-strip {
      background: linear-gradient(135deg, #D8F897 0%, #b8e860 100%);
      padding: 64px 0;
      position: relative; overflow: hidden;
    }
    .cta-strip::before {
      content: ""; position: absolute; inset: 0; opacity: 0.07;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2317480F' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-strip h2 {
      font-family: "Salsa", sans-serif;
      font-size: clamp(26px, 3.5vw, 40px);
      color: #17480F; margin-bottom: 14px;
    }
    .cta-strip p { font-size: 16px; color: #2d5c10; line-height: 1.7; margin-bottom: 0; }
    .cta-btn-dark {
      display: inline-block; background: #17480F; color: #D8F897;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 14px 34px; border-radius: 30px; text-decoration: none;
      letter-spacing: 0.06em;
      transition: background 0.25s, transform 0.2s;
      box-shadow: 0 8px 24px rgba(23,72,15,0.3);
    }
    .cta-btn-dark:hover { background: #4a9e1a; color: #fff; transform: translateY(-2px); }
    .cta-btn-outline {
      display: inline-block; background: transparent; color: #17480F;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 14px 34px; border-radius: 30px; text-decoration: none;
      letter-spacing: 0.06em; border: 2px solid #17480F;
      transition: background 0.25s, transform 0.2s;
      margin-left: 12px;
    }
    .cta-btn-outline:hover { background: #17480F; color: #D8F897; transform: translateY(-2px); }

    /* ---- misc helpers ---- */
    .section-center { text-align: center; margin-bottom: 52px; }
    .dark-tag {
      display: inline-block;
      background: rgba(216,248,151,0.15); color: #D8F897;
      font-size: 12px; font-weight: 700;
      font-family: "Salsa", sans-serif;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
      border: 1px solid rgba(216,248,151,0.3);
    }
    .dark-heading {
      font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
      color: #fff; line-height: 1.25; margin-bottom: 14px;
    }
    .dark-heading span { color: #D8F897; }
    .dark-sub { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.7; }
    .dark-divider {
      display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px;
    }
    .dark-divider span:nth-child(1),
    .dark-divider span:nth-child(3) { display: block; width: 40px; height: 3px; background: rgba(216,248,151,0.4); border-radius: 2px; }
    .dark-divider span:nth-child(2) { display: block; width: 10px; height: 10px; background: #D8F897; border-radius: 50%; }

    @media (max-width: 768px) {
      .aayura-img-badge { left: 0; }
      .aayura-img-badge2 { right: 0; }
      .detail-img-overlay { display: none; }
      .hero-stats { gap: 20px; }
      .cta-btn-outline { margin-left: 0; margin-top: 12px; display: block; width: fit-content; }
    }
    
    /* ── HERO BANNER ── */
    .contact-hero {
      background: linear-gradient(135deg, #17480F 0%, #2a6b18 55%, #3d8a24 100%);
      padding: 30px 0 30px;
      position: relative;
      overflow: hidden;
    }
    .contact-hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8F897' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .contact-hero::after {
      content: "";
      position: absolute; inset: 0;
      background: radial-gradient(circle at 15% 50%, rgba(216,248,151,0.07) 0%, transparent 55%),
                  radial-gradient(circle at 85% 20%, rgba(216,248,151,0.05) 0%, transparent 45%);
    }
    .contact-hero .hero-inner { position: relative; z-index: 2; }
    .hero-breadcrumb {
      font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 18px;
    }
    .hero-breadcrumb a { color: #D8F897; text-decoration: none; }
    .hero-breadcrumb span { margin: 0 8px; }
    .contact-hero h1 {
      font-family: "Salsa", sans-serif;
      font-size: clamp(30px, 5vw, 52px);
      color: #fff; line-height: 1.15; margin-bottom: 14px;
    }
    .contact-hero h1 span { color: #D8F897; }
    .contact-hero p {
      font-size: 15.5px; color: rgba(255,255,255,0.78);
      max-width: 520px; line-height: 1.75;
    }
    .aayura-tag {
      display: inline-block;
      background: rgba(216,248,151,0.18); color: #D8F897;
      font-size: 11.5px; font-weight: 700;
      font-family: "Salsa", sans-serif;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px;
      border: 1px solid rgba(216,248,151,0.3);
      margin-bottom: 14px; display: inline-block;
    }

    /* ── CONTACT SECTION WRAPPER ── */
    .contact-section {
      padding: 80px 0 60px;
      background: #f9fcf4;
    }

    /* ── LEFT COLUMN — INFO ── */
    .contact-info-heading {
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 800; color: #17480F;
      line-height: 1.25; margin-bottom: 10px;
    }
    .contact-info-heading span { color: #4a9e1a; }
    .contact-info-sub {
      font-size: 16px; color: #555; line-height: 1.75; text-align: justify;
      margin-bottom: 32px;
    }

    /* Contact detail items */
    .contact-details { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
    .contact-detail-item {
      display: flex; align-items: center; gap: 18px;
    }
    .contact-icon-circle {
      flex-shrink: 0;
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, #17480F, #3d8a24);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 18px rgba(23,72,15,0.22);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .contact-detail-item:hover .contact-icon-circle {
      transform: scale(1.08);
      box-shadow: 0 10px 28px rgba(23,72,15,0.3);
    }
    .contact-icon-circle svg { color: #D8F897; }
    .contact-detail-body {}
    .contact-detail-label {
      font-size: 14px; font-weight: 800; color: #4a9e1a;
      text-transform: uppercase; letter-spacing: 0.1em;
      margin-bottom: 2px; font-family: "Merienda" , sans-serif;
    }
    .contact-detail-value {
      font-size: 16px; font-weight: 700; color: #17480F;
      line-height: 1.5; font-family: "Salsa" , sans-serif;
    }
    .contact-detail-value a {
      color: #17480F; text-decoration: none;
      transition: color 0.2s;
    }
    .contact-detail-value a:hover { color: #4a9e1a; }

    /* Divider */
    .contact-divider {
      height: 1.5px;
      background: linear-gradient(90deg, #D8F897, transparent);
      border: none; margin: 28px 0;
    }

    /* Social media */
    .social-label {
      font-size: 11px; font-weight: 800; color: #4a9e1a;
      text-transform: uppercase; letter-spacing: 0.1em;
      font-family: "Salsa" , sans-serif;
      margin-bottom: 14px;
    }
    .social-row { display: flex; gap: 12px; }
    .social-btn {
      width: 42px; height: 42px; border-radius: 50%;
      background: #fff; border: 2px solid #e0f0c8;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; transition: background 0.25s, border-color 0.25s, transform 0.2s;
      box-shadow: 0 3px 10px rgba(23,72,15,0.1);
    }
    .social-btn:hover {
      background: #17480F; border-color: #17480F;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(23,72,15,0.25);
    }
    .social-btn:hover svg { stroke: #D8F897; }
    .social-btn svg { stroke: #17480F; transition: stroke 0.25s; }

    /* ── RIGHT COLUMN — FORM ── */
    .contact-form-card {
      background: #fff;
      border-radius: 24px;
      padding: 40px 36px;
      border: 1.5px solid #e4f2d0;
      box-shadow: 0 20px 60px rgba(23,72,15,0.08);
    }
    .form-heading {
      font-size: clamp(20px, 2.5vw, 26px);
      font-weight: 800; color: #17480F;
      margin-bottom: 6px; line-height: 1.25;
    }
    .form-heading span { color: #4a9e1a; }
    .form-sub {
      font-size: 14px; color: #777; margin-bottom: 28px; line-height: 1.6;
    }

    /* Floating label input group */
    .float-group {
      position: relative;
      margin-bottom: 22px;
      font-family: "Salsa", sans-serif;
    }
    .float-group .field-icon {
      position: absolute;
      left: 16px; top: 50%; transform: translateY(-50%);
      pointer-events: none;
      transition: top 0.25s, transform 0.25s, opacity 0.25s;
      z-index: 2;
    }
    .float-group.textarea-group .field-icon {
      top: 22px; transform: none;
    }
    .float-group .field-icon svg {
      stroke: #aaa;
      transition: stroke 0.25s;
    }
    .float-group input,
    .float-group textarea {
      width: 100%;
      padding: 18px 16px 8px 46px;
      border: 1.5px solid #ddeec8;
      border-radius: 14px;
      font-family: "Salsa", sans-serif;
      font-size: 15px;
      color: #2d2d2d;
      background: #f9fcf4;
      outline: none;
      transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
      resize: none;
    }
    .float-group textarea { min-height: 120px; padding-top: 22px; }
    .float-group input:focus,
    .float-group textarea:focus {
      border-color: #17480F;
      background: #fff;
      box-shadow: 0 0 0 4px rgba(23,72,15,0.07);
    }
    .float-group input:focus ~ .field-icon svg,
    .float-group input:not(:placeholder-shown) ~ .field-icon svg,
    .float-group textarea:focus ~ .field-icon svg,
    .float-group textarea:not(:placeholder-shown) ~ .field-icon svg {
      stroke: #17480F;
    }

    /* Floating label text */
    .float-label {
      position: absolute;
      left: 46px; top: 50%; transform: translateY(-50%);
      font-size: 15px; color: #999;
      pointer-events: none;
      transition: top 0.22s ease, font-size 0.22s ease, color 0.22s ease, transform 0.22s ease;
      background: transparent;
      padding: 0 4px;
      z-index: 2;
    }
    .float-group.textarea-group .float-label {
      top: 22px; transform: none;
    }
    .float-group input:focus ~ .float-label,
    .float-group input:not(:placeholder-shown) ~ .float-label,
    .float-group textarea:focus ~ .float-label,
    .float-group textarea:not(:placeholder-shown) ~ .float-label {
      top: 8px;
      font-size: 11px;
      color: #17480F;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transform: none;
    }
    /* Hide HTML placeholder — we use float-label as visual placeholder */
    .float-group input::placeholder,
    .float-group textarea::placeholder { color: transparent; }

    /* Submit button */
    .submit-wrap { text-align: center; margin-top: 8px; }
    .submit-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, #17480F, #3d8a24);
      color: #D8F897;
      font-family: "Salsa", sans-serif;
      font-size: 15px; letter-spacing: 0.08em;
      padding: 14px 40px;
      border-radius: 50px;
      border: none; cursor: pointer;
      box-shadow: 0 8px 24px rgba(23,72,15,0.28);
      transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
    }
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(23,72,15,0.35);
      background: linear-gradient(135deg, #4a9e1a, #17480F);
    }
    .submit-btn svg { stroke: #D8F897; }

    /* ── MAP SECTION ── */
    .map-section {
      padding: 0 0 80px;
      background: #f9fcf4;
    }
    .map-wrap {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(23,72,15,0.12);
      border: 2px solid #d8f0b8;
      position: relative;
    }
    .map-wrap iframe {
      width: 100%; height: 420px;
      border: none; display: block;
      filter: saturate(0.9) contrast(1.05);
    }
    .map-overlay-badge {
      position: absolute; top: 20px; left: 20px;
      background: #17480F; color: #D8F897;
      font-family: "Salsa", sans-serif;
      font-size: 13px; padding: 10px 18px;
      border-radius: 30px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.25);
      display: flex; align-items: center; gap: 8px;
      z-index: 2;
    }
    .map-open-btn {
      position: absolute; top: 20px; right: 20px;
      background: #fff; color: #17480F;
      font-family: "Salsa", sans-serif;
      font-size: 12.5px; padding: 10px 18px;
      border-radius: 30px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      text-decoration: none;
      display: flex; align-items: center; gap: 6px;
      z-index: 2;
      transition: background 0.22s, color 0.22s;
      border: 1.5px solid #d8f0b8;
    }
    .map-open-btn:hover { background: #D8F897; }

    /* section heading divider */
    .green-divider {
      display: flex; align-items: center; justify-content: center; gap: 6px; margin: 10px 0 40px;
    }
    .green-divider span:nth-child(1),
    .green-divider span:nth-child(3) { display: block; width: 40px; height: 3px; background: #D8F897; border-radius: 2px; }
    .green-divider span:nth-child(2) { display: block; width: 10px; height: 10px; background: #17480F; border-radius: 50%; }

    .section-tag-light {
      display: inline-block;
      background: #D8F897; color: #17480F;
      font-size: 11.5px; font-weight: 700;
      font-family: "Salsa", sans-serif;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px;
      margin-bottom: 10px;
    }

    @media (max-width: 991px) {
      .contact-form-card { padding: 30px 22px; }
      .contact-section { padding: 60px 0 40px; }
      .map-section { padding: 0 0 60px; }
    }
    @media (max-width: 767px) {
      .map-wrap iframe { height: 300px; }
    }

    
    /* ── SHARED ── */
    .aayura-tag {
      display: inline-block;
      background: #D8F897; color: #17480F;
      font-size: 11.5px; font-weight: 700;
      font-family: "Salsa", sans-serif;
      letter-spacing: 0.13em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
    }
    .aayura-tag-dark {
      display: inline-block;
      background: rgba(216,248,151,0.15); color: #D8F897;
      font-size: 11.5px; font-weight: 700;
      font-family: "Salsa", sans-serif;
      letter-spacing: 0.13em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 20px; margin-bottom: 14px;
      border: 1px solid rgba(216,248,151,0.3);
    }
    .section-heading {
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 800; color: #17480F; line-height: 1.22; margin-bottom: 12px;
    }
    .section-heading span { color: #4a9e1a; }
    .section-heading-white {
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 800; color: #fff; line-height: 1.22; margin-bottom: 12px;
    }
    .section-heading-white span { color: #D8F897; }
    .body-text {
      font-size: 15.5px; color: #555; line-height: 1.85;
      margin-bottom: 16px; text-align: justify;
    }
    .body-text-white {
      font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.85;
      margin-bottom: 16px; text-align: justify;
    }
    .green-divider {
      display: flex; align-items: center; gap: 6px; margin: 10px 0 28px;
    }
    .green-divider.center { justify-content: center; }
    .green-divider span:nth-child(1),
    .green-divider span:nth-child(3) { display:block; width:40px; height:3px; background:#D8F897; border-radius:2px; }
    .green-divider span:nth-child(2) { display:block; width:10px; height:10px; background:#17480F; border-radius:50%; }
    .green-divider-light span:nth-child(1),
    .green-divider-light span:nth-child(3) { background: rgba(216,248,151,0.4); }
    .green-divider-light span:nth-child(2) { background: #D8F897; }

    /* ── HERO ── */
    .export-hero {
      background: linear-gradient(135deg, #17480F 0%, #1e5c12 50%, #2d7a1a 100%);
      padding: 84px 0 0;
      position: relative; overflow: hidden;
    }
    .export-hero::before {
      content: ""; position: absolute; inset: 0; opacity: 0.045;
      background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8F897' fill-opacity='1'%3E%3Cpath d='M50 50v-8h-4v8h-8v4h8v8h4v-8h8v-4h-8zm0-40V2h-4v8h-8v4h8v8h4v-8h8v-4h-8zM10 50v-8H6v8H-2v4h8v8h4v-8h8v-4h-8zM10 10V2H6v8H-2v4h8v8h4v-8h8v-4h-8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .export-hero::after {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 10% 60%, rgba(216,248,151,0.07) 0%, transparent 55%),
                  radial-gradient(ellipse at 90% 10%, rgba(216,248,151,0.05) 0%, transparent 45%);
    }
    .hero-inner { position: relative; z-index: 2; }
    .hero-breadcrumb {
      font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
    }
    .hero-breadcrumb a { color: #D8F897; text-decoration: none; }
    .hero-breadcrumb span { margin: 0 8px; }
    .export-hero h1 {
      font-family: "Salsa", sans-serif;
      font-size: clamp(30px, 5.5vw, 58px);
      color: #fff; line-height: 1.1; margin-bottom: 18px;
    }
    .export-hero h1 span { color: #D8F897; }
    .export-hero .hero-desc {
      font-size: 16px; color: rgba(255,255,255,0.78);
      max-width: 560px; line-height: 1.78; margin-bottom: 30px;
    }
    .hero-location-pills {
      display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px;
    }
    .location-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.88);
      font-size: 13px; font-weight: 700;
      padding: 6px 14px; border-radius: 20px;
      border: 1px solid rgba(216,248,151,0.25);
    }
    .location-pill svg { stroke: #D8F897; }
    .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary-green {
      display: inline-flex; align-items: center; gap: 8px;
      background: #D8F897; color: #17480F;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 13px 28px; border-radius: 50px;
      text-decoration: none; letter-spacing: 0.06em;
      transition: background 0.22s, transform 0.2s;
      box-shadow: 0 6px 20px rgba(216,248,151,0.3);
    }
    .btn-primary-green:hover { background: #c5e878; color: #17480F; transform: translateY(-2px); }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #fff;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 13px 28px; border-radius: 50px;
      text-decoration: none; letter-spacing: 0.06em;
      border: 2px solid rgba(255,255,255,0.4);
      transition: border-color 0.22s, background 0.22s, transform 0.2s;
    }
    .btn-outline-white:hover { border-color: #D8F897; color: #D8F897; transform: translateY(-2px); }

    /* Hero stat strip */
    .hero-stat-strip {
      background: rgba(0,0,0,0.2);
      border-top: 1px solid rgba(216,248,151,0.12);
      padding: 22px 0; margin-top: 48px;
      position: relative; z-index: 2;
    }
    .hero-stat-strip .stat-item {
      text-align: center; padding: 0 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat-strip .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: "Salsa", sans-serif;
      font-size: 30px; color: #D8F897; display: block; line-height: 1;
    }
    .stat-lbl { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.1em; }

    /* Hero image side */
    .hero-img-col { position: relative; z-index: 2; align-self: flex-end; }
    .hero-img-col img {
      width: 100%; border-radius: 20px 20px 0 0;
      box-shadow: 0 -20px 60px rgba(0,0,0,0.3);
    }
    .hero-badge-float {
      position: absolute; top: 28px; left: -20px;
      background: #D8F897; color: #17480F;
      font-family: "Salsa", sans-serif;
      font-size: 13px; padding: 10px 18px;
      border-radius: 30px; font-weight: 700;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    /* ══ SECTION 1 — EXPORT OVERVIEW (angled split) ══ */
    .export-overview {
      padding: 30px 0 30px;
      background: #f9fcf4;
    }
    .overview-img-wrap { position: relative; }
    .overview-img-wrap img {
      width: 100%; border-radius: 20px;
      box-shadow: 0 24px 64px rgba(23,72,15,0.16);
    }
    .overview-badge {
      position: absolute; bottom: 24px; left: -16px;
      background: #17480F; color: #D8F897;
      padding: 12px 20px; border-radius: 14px;
      font-family: "Salsa", sans-serif;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .overview-badge .badge-num { display: block; font-size: 24px; line-height: 1; }
    .overview-badge .badge-txt { font-size: 12px; opacity: 0.85; }
    .overview-badge2 {
      position: absolute; top: 22px; right: -14px;
      background: #D8F897; color: #17480F;
      font-family: "Salsa" , sans-serif;
      padding: 8px 16px; border-radius: 20px;
      font-size: 12.5px; font-weight: 800;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      display: flex; align-items: center; gap: 6px;
    }
    .feature-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
    .feature-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: #edf7e0; color: #17480F;
       font-family: "Salsa" , sans-serif;
      font-size: 13px; font-weight: 700;
      padding: 7px 16px; border-radius: 20px;
      border: 1.5px solid #c8eea0;
    }
    .feature-pill svg { stroke: #17480F; }

    /* ══ SECTION 2 — EXPORT PRODUCTS GRID ══ */
    .export-products {
      padding: 30px 0;
      background: #fff;
    }
    .export-product-card {
      background: #f9fcf4;
      border-radius: 20px; padding: 28px 22px 24px;
      border: 1.5px solid #e0f0c8;
      position: relative; overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
      height: 100%;
    }
    .export-product-card::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, #17480F, #4a9e1a);
    }
    .export-product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(23,72,15,0.12);
    }
    .ep-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, #17480F, #3d8a24);
      border-radius: 15px; display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      box-shadow: 0 6px 16px rgba(23,72,15,0.25);
    }
    .ep-icon svg { stroke: #D8F897; }
    .ep-tag {
      display: inline-block;
      background: #D8F897; color: #17480F;
      font-size: 10.5px; font-weight: 800;
       font-family: "Salsa" , sans-serif;
      padding: 3px 10px; border-radius: 10px;
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .export-product-card h5 {
      font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 8px;
    }
    .export-product-card p {
      font-size: 16px; color: #555; line-height: 1.72; margin: 0; text-align: justify;
    }

    /* ══ SECTION 3 — WHY CHOOSE US (dark, asymmetric grid) ══ */
    .why-section {
      padding: 30px 0;
      background: linear-gradient(135deg, #17480F 0%, #1e5c12 60%, #2d7a1a 100%);
      position: relative; overflow: hidden;
    }
    .why-section::before {
      content: ""; position: absolute; inset: 0; opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8F897' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .why-big-card {
      background: rgba(255,255,255,0.07);
      border: 1.5px solid rgba(216,248,151,0.2);
      border-radius: 24px; padding: 34px 30px;
      height: 100%;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
    }
    .why-big-card:hover {
      background: rgba(216,248,151,0.1);
      border-color: rgba(216,248,151,0.45);
      transform: translateY(-5px);
    }
    .why-icon-wrap {
      width: 58px; height: 58px;
      border-radius: 50%;
      background: rgba(216,248,151,0.15);
      border: 2px solid rgba(216,248,151,0.3);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .why-icon-wrap svg { stroke: #D8F897; }
    .why-big-card h5 {
      font-family: "Salsa", sans-serif;
      font-size: 20px; color: #D8F897; margin-bottom: 10px;
    }
    .why-big-card p { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0; text-align: justify;}

    /* Featured tall card */
    .why-featured-card {
      background: #D8F897;
      border-radius: 24px; padding: 36px 28px;
      height: 100%; display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    .why-featured-card::after {
      content: "✦"; position: absolute;
      bottom: -20px; right: -10px;
      font-size: 120px; color: rgba(23,72,15,0.06);
      font-family: "Salsa", sans-serif; line-height: 1;
    }
    .why-featured-card h4 {
      font-family: "Salsa", sans-serif;
      font-size: 22px; color: #17480F; margin-bottom: 14px;
    }
    .why-featured-card p { font-size: 16px; text-align: justify; color: #2d5c10; line-height: 1.78; margin-bottom: 18px; }
    .why-check-list { list-style: none; padding: 0; margin: 0; }
    .why-check-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 16px; color: #17480F; font-weight: 700;
 font-family: "Salsa" , sans-serif;
      margin-bottom: 10px; line-height: 1.5;
    }
    .why-check-list li::before {
      content: "✓";
      flex-shrink: 0; width: 20px; height: 20px;
      background: #17480F; color: #D8F897;
      border-radius: 50%; font-size: 11px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin-top: 1px;
    }

    /* ══ SECTION 4 — COVERAGE MAP STRIP ══ */
    .coverage-section {
      padding: 30px 0;
      background: #f9fcf4;
    }
    .coverage-card {
      background: #fff; border-radius: 20px; padding: 26px 22px;
      border: 1.5px solid #e0f0c8;
      display: flex; align-items: flex-start; gap: 16px;
      transition: box-shadow 0.25s, transform 0.22s;
      height: 100%;
    }
    .coverage-card:hover {
      box-shadow: 0 14px 40px rgba(23,72,15,0.1);
      transform: translateY(-4px);
    }
    .coverage-num {
      flex-shrink: 0; width: 40px; height: 40px;
      background: linear-gradient(135deg, #17480F, #4a9e1a);
      color: #D8F897; border-radius: 10px;
      font-family: "Salsa", sans-serif; font-size: 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .coverage-card h6 { font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 5px; }
    .coverage-card p { font-size: 16px; color: #666; line-height: 1.65; margin: 0; text-align: justify;}
    .coverage-highlight-box {
      background: linear-gradient(135deg, #17480F, #2d7a1a);
      border-radius: 22px; padding: 40px 36px;
      color: #fff; position: relative; overflow: hidden;
    }
    .coverage-highlight-box::before {
      content: ""; position: absolute; inset: 0; opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D8F897' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .coverage-highlight-box h3 {
      font-family: "Salsa", sans-serif;
      font-size: clamp(20px, 3vw, 28px); color: #D8F897; margin-bottom: 14px;
    }
    .coverage-highlight-box p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.78; margin-bottom: 20px; }
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .location-item {
      background: rgba(216,248,151,0.12); border: 1px solid rgba(216,248,151,0.25);
      border-radius: 10px; padding: 8px 14px;
      font-size: 13px; font-weight: 700; color: #D8F897;
      display: flex; align-items: center; gap: 7px;
    }
    .location-item::before { content: "📍"; font-size: 12px; }

    /* ══ SECTION 5 — PROCESS TIMELINE ══ */
    .process-section {
      padding: 30px 0;
      background: #fff;
    }
    .process-timeline {
      position: relative; padding-left: 0;
    }
    .process-timeline::before {
      content: ""; position: absolute;
      left: 26px; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(180deg, #17480F, #D8F897, #17480F);
    }
    .pt-item {
      display: flex; gap: 22px; margin-bottom: 34px;
      align-items: flex-start; position: relative;
    }
    .pt-dot {
      flex-shrink: 0; width: 54px; height: 54px;
      background: linear-gradient(135deg, #17480F, #3d8a24);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 5px #f9fcf4, 0 6px 18px rgba(23,72,15,0.22);
      z-index: 2; position: relative;
    }
    .pt-dot svg { stroke: #D8F897; }
    .pt-body { padding-top: 4px; }
    .pt-step-tag {
      display: inline-block;
      background: #D8F897; color: #17480F;
      font-family: "Salsa", sans-serif;
      font-size: 14px; padding: 2px 10px;
      border-radius: 10px; margin-bottom: 6px; font-weight: 700;
    }
    .pt-body h5 { font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 10px; }
    .pt-body p { font-size: 16px; color: #555; line-height: 1.72; margin: 0; text-align: justify; }

    /* right side — benefits */
    .benefit-item {
      display: flex; align-items: flex-start; gap: 16px;
      background: #f9fcf4; border-radius: 16px;
      padding: 20px 18px; border: 1.5px solid #e0f0c8;
      margin-bottom: 16px;
      transition: box-shadow 0.22s, transform 0.22s;
    }
    .benefit-item:hover { box-shadow: 0 10px 30px rgba(23,72,15,0.1); transform: translateX(4px); }
    .benefit-icon {
      flex-shrink: 0; width: 44px; height: 44px;
      background: linear-gradient(135deg, #edf7e0, #c8eea0);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
    }
    .benefit-icon svg { stroke: #17480F; }
    .benefit-item h6 { font-size: 20px; font-weight: 800; color: #17480F; margin-bottom: 10px; }
    .benefit-item p { font-size: 16px; color: #666; line-height: 1.6; margin: 0; }

    /* ══ SECTION 6 — TESTIMONIAL / TRUST ══ */
    .trust-section {
      padding: 80px 0;
      background: #f9fcf4;
    }
    .trust-card {
      background: #fff; border-radius: 20px;
      padding: 30px 26px;
      border: 1.5px solid #e0f0c8;
      height: 100%;
      position: relative;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .trust-card:hover { box-shadow: 0 16px 44px rgba(23,72,15,0.1); transform: translateY(-4px); }
    .trust-card::before {
      content: "❝";
      font-family: "Salsa", sans-serif;
      font-size: 52px; color: #D8F897; line-height: 1;
      display: block; margin-bottom: 8px;
    }
    .trust-card p { font-size: 14.5px; color: #444; line-height: 1.78; font-style: italic; margin-bottom: 20px; }
    .trust-card .trust-author { font-size: 13px; font-weight: 800; color: #17480F; }
    .trust-card .trust-loc { font-size: 12px; color: #888; }
    .trust-stat-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0; border-radius: 20px; overflow: hidden;
      box-shadow: 0 10px 40px rgba(23,72,15,0.12);
      margin-top: 56px;
    }
    .trust-stat-cell {
      background: linear-gradient(135deg, #17480F, #2d7a1a);
      padding: 32px 20px; text-align: center;
      border-right: 1px solid rgba(216,248,151,0.15);
    }
    .trust-stat-cell:last-child { border-right: none; }
    .trust-stat-num {
      font-family: "Salsa", sans-serif;
      font-size: 34px; color: #D8F897; display: block; line-height: 1;
    }
    .trust-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 6px; }

    /* ══ SECTION 7 — CTA ENQUIRY ══ */
    .export-cta {
      padding: 80px 0;
      background: linear-gradient(135deg, #D8F897 0%, #b8e860 100%);
      position: relative; overflow: hidden;
    }
    .export-cta::before {
      content: ""; position: absolute; inset: 0; opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2317480F' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .export-cta h2 {
      font-family: "Salsa", sans-serif;
      font-size: clamp(26px, 3.5vw, 42px); color: #17480F; margin-bottom: 14px;
    }
    .export-cta p { font-size: 16px; color: #2d5c10; line-height: 1.75; }
    .btn-dark-green {
      display: inline-flex; align-items: center; gap: 8px;
      background: #17480F; color: #D8F897;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 14px 34px; border-radius: 50px; text-decoration: none;
      letter-spacing: 0.06em;
      box-shadow: 0 8px 24px rgba(23,72,15,0.3);
      transition: background 0.22s, transform 0.2s;
    }
    .btn-dark-green:hover { background: #4a9e1a; color: #fff; transform: translateY(-2px); }
    .btn-outline-green {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: #17480F;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 14px 34px; border-radius: 50px; text-decoration: none;
      letter-spacing: 0.06em; border: 2px solid #17480F;
      transition: background 0.22s, transform 0.2s;
    }
    .btn-outline-green:hover { background: #17480F; color: #D8F897; transform: translateY(-2px); }

    /* enquiry form strip */
    .enquiry-strip {
      background: rgba(255,255,255,0.6);
      border-radius: 20px; padding: 30px 28px;
      border: 1.5px solid rgba(23,72,15,0.15);
      backdrop-filter: blur(8px);
      margin-top: 36px;
    }
    .enquiry-strip h5 { font-size: 17px; font-weight: 800; color: #17480F; margin-bottom: 16px; }
    .enquiry-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .eq-input {
      flex: 1; min-width: 180px;
      padding: 12px 16px; border-radius: 12px;
      border: 1.5px solid #c8eea0; background: #fff;
      font-family: "Nunito", sans-serif; font-size: 14px; color: #2d2d2d;
      outline: none; transition: border-color 0.22s, box-shadow 0.22s;
    }
    .eq-input:focus { border-color: #17480F; box-shadow: 0 0 0 3px rgba(23,72,15,0.08); }
    .eq-input::placeholder { color: #aaa; }
    .eq-btn {
      background: #17480F; color: #D8F897;
      font-family: "Salsa", sans-serif; font-size: 14px;
      padding: 12px 28px; border-radius: 12px; border: none;
      cursor: pointer; letter-spacing: 0.06em;
      transition: background 0.22s, transform 0.2s;
      white-space: nowrap;
    }
    .eq-btn:hover { background: #4a9e1a; transform: translateY(-1px); }

    @media (max-width: 991px) {
      .trust-stat-row { grid-template-columns: repeat(2, 1fr); }
      .trust-stat-cell { border-bottom: 1px solid rgba(216,248,151,0.15); }
      .process-timeline::before { display: none; }
    }
    @media (max-width: 767px) {
      .trust-stat-row { grid-template-columns: repeat(2, 1fr); }
      .hero-stat-strip .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
      .location-grid { grid-template-columns: 1fr; }
    }
.hm-section {
  position: relative;
  padding: 30px 0 30px;
  background: #f4fae8;
  overflow: hidden;
}
.hm-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(23,72,15,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.hm-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,248,151,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.hm-blob-tl { top: -180px; left: -180px; }
.hm-blob-br { bottom: -180px; right: -180px; }

/* ===== HEADING ===== */
.hm-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #D8F897;
   font-family: "Salsa" , sans-serif;
  color: #17480F;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.hm-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #17480F;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hm-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hm-div-line {
  display: block;
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, transparent, #17480F);
  border-radius: 2px;
}
.hm-div-line-r {
  background: linear-gradient(to left, transparent, #17480F);
}
.hm-sub {
  font-size: 16px;
  color: #557040;
  /* max-width: 540px; */
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== CARD ===== */
.hm-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #ddf0ae;
  box-shadow: 0 4px 18px rgba(23,72,15,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: transform 0.30s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.28s;
  /* entrance */
  opacity: 0;
  animation: hmIn 0.48s ease forwards;
}
.hm-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(23,72,15,0.13);
}

/* stagger */
.col-lg-3:nth-child(1)  .hm-card { animation-delay: 0.04s; }
.col-lg-3:nth-child(2)  .hm-card { animation-delay: 0.09s; }
.col-lg-3:nth-child(3)  .hm-card { animation-delay: 0.14s; }
.col-lg-3:nth-child(4)  .hm-card { animation-delay: 0.19s; }
.col-lg-3:nth-child(5)  .hm-card { animation-delay: 0.24s; }
.col-lg-3:nth-child(6)  .hm-card { animation-delay: 0.29s; }
.col-lg-3:nth-child(7)  .hm-card { animation-delay: 0.34s; }
.col-lg-3:nth-child(8)  .hm-card { animation-delay: 0.39s; }
.col-lg-3:nth-child(9)  .hm-card { animation-delay: 0.44s; }
.col-lg-3:nth-child(10) .hm-card { animation-delay: 0.49s; }

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

/* ===== IMAGE ===== */
.hm-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(145deg, #edfac8, #cfe880);
  flex-shrink: 0;
}
.hm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.48s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hm-card:hover .hm-img {
  transform: scale(1.07);
}

/* ===== TITLE BAR — below image ===== */
.hm-title-bar {
  padding: 15px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  flex: 1;
  justify-content: center;
  padding-bottom: 16px;
}

.hm-title {
  font-size: 18px;
  font-weight: 800;
  color: #17480F;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

/* Bottom hover line */
.hm-title-line {
  display: block;
  height: 2.5px;
  width: 0;
  background: linear-gradient(to right, #17480F, #D8F897, #17480F);
  border-radius: 2px;
  transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.hm-card:hover .hm-title-line {
  width: 48px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .hm-section { padding: 60px 0 70px; }
  .hm-title-line { width: 36px; }
}
@media (max-width: 767.98px) {
  .hm-section { padding: 48px 0 58px; }
  .hm-img-box { aspect-ratio: 4 / 3; }
}
@media (max-width: 575.98px) {
  .hm-section { padding: 36px 0 44px; }
  .hm-heading { font-size: 28px; }
  .hm-title { font-size: 13px; }
}
/* ===== SECTION ===== */
.aayura-media-section {
  padding: 30px 0 30px;
  background: #f4fae8;
  position: relative;
  overflow: hidden;
}
.aayura-media-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(23,72,15,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

/* ===== HEADING ===== */
.aayura-media-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #D8F897;
  color: #17480F;
  font-family: "Salsa" , sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.aayura-media-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: #17480F;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.aayura-media-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.amd-line {
  display: block;
  width: 70px;
  height: 2px;
  background: linear-gradient(to right, transparent, #17480F);
  border-radius: 2px;
}
.amd-line-r {
  background: linear-gradient(to left, transparent, #17480F);
}
.aayura-media-sub {
  font-size: 16px;
  color: #557040;
  /* max-width: 520px; */
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== VIDEO CARD ===== */
.aayura-video-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #ddf0ae;
  box-shadow: 0 4px 22px rgba(23,72,15,0.08);
  transition: transform 0.3s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.28s;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: amvIn 0.5s ease forwards;
}
.aayura-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(23,72,15,0.14);
}

/* stagger */
.col-lg-6:nth-child(1) .aayura-video-card { animation-delay: 0.08s; }
.col-lg-6:nth-child(2) .aayura-video-card { animation-delay: 0.18s; }
.col-lg-6:nth-child(3) .aayura-video-card { animation-delay: 0.28s; }
.col-lg-6:nth-child(4) .aayura-video-card { animation-delay: 0.38s; }

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

/* ===== IFRAME WRAPPER — 16:9 responsive ===== */
.aayura-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0e2e08;
}
.aayura-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== VIDEO FOOTER ===== */
.aayura-video-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px 18px;
  border-top: 1.5px solid #eef7d4;
  background: #fff;
}

.aayura-video-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #17480F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D8F897;
  flex-shrink: 0;
  transition: background 0.22s, transform 0.22s;
}
.aayura-video-card:hover .aayura-video-icon {
  background: #D8F897;
  color: #17480F;
  transform: scale(1.1);
}

.aayura-video-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.aayura-video-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #6ab04c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.aayura-video-title {
  font-size: 14px;
  font-weight: 700;
  color: #17480F;
  margin: 0;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-media-section { padding: 60px 0 70px; }
}
@media (max-width: 767.98px) {
  .aayura-media-section { padding: 48px 0 58px; }
  .aayura-video-title { font-size: 13px; white-space: normal; }
}
@media (max-width: 575.98px) {
  .aayura-media-section { padding: 36px 0 44px; }
  .aayura-video-footer { padding: 14px 16px 16px; gap: 10px; }
  .aayura-video-icon { width: 34px; height: 34px; min-width: 34px; }
}
/* ===== SECTION ===== */
.aayura-pay-section {
  position: relative;
  padding: 30px 0 30px;
  background: #f4fae8;
  overflow: hidden;
}
.aayura-pay-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(23,72,15,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.aayura-pay-blob {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,248,151,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.aayura-pay-blob-tl { top: -180px; left: -180px; }
.aayura-pay-blob-br { bottom: -180px; right: -180px; }

/* ===== HEADING ===== */
.aayura-pay-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #D8F897;
  font-family: "Salsa" , sans-serif;
  color: #17480F;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.aayura-pay-heading {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #17480F;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.aayura-pay-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.apd-line {
  display: block; width: 70px; height: 2px;
  background: linear-gradient(to right, transparent, #17480F);
  border-radius: 2px;
}
.apd-line-r { background: linear-gradient(to left, transparent, #17480F); }
.aayura-pay-sub {
  font-size: 16px;
  color: #557040;
  /* max-width: 520px; */
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== MAIN CARD ===== */
.aayura-pay-card {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid #ddf0ae;
  box-shadow: 0 8px 40px rgba(23,72,15,0.1);
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

/* ===== LEFT — QR ===== */
.aayura-pay-left {
  flex: 0 0 42%;
  max-width: 42%;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: linear-gradient(160deg, #f0fbd8 0%, #e2f4b6 100%);
  border-right: 1.5px solid #ddf0ae;
}

.aayura-pay-left-top {
  text-align: center;
}
.aayura-upi-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #17480F;
  font-family: "Salsa" , sans-serif;
  color: #D8F897;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.aayura-upi-id {
  font-size: 17px;
  font-weight: 800;
  color: #17480F;
  margin: 0;
  letter-spacing: 0.04em;
}

/* QR Frame with corner accents */
.aayura-qr-frame {
  position: relative;
  width: 200px;
  height: 200px;
  padding: 10px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(23,72,15,0.14);
  flex-shrink: 0;
}
.aayura-qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Corner accent marks */
.aayura-qr-corner {
  position: absolute;
  width: 18px; height: 18px;
  border-color: #17480F;
  border-style: solid;
  border-width: 0;
}
.aayura-qr-tl { top: -1px; left: -1px; border-top-width: 3px; border-left-width: 3px; border-radius: 6px 0 0 0; }
.aayura-qr-tr { top: -1px; right: -1px; border-top-width: 3px; border-right-width: 3px; border-radius: 0 6px 0 0; }
.aayura-qr-bl { bottom: -1px; left: -1px; border-bottom-width: 3px; border-left-width: 3px; border-radius: 0 0 0 6px; }
.aayura-qr-br { bottom: -1px; right: -1px; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 6px 0; }

.aayura-pay-name-strip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Salsa" , sans-serif;
  background: #17480F;
  color: #D8F897;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  letter-spacing: 0.03em;
}
.aayura-qr-hint {
  font-size: 15px;
  color: #556b44;
  margin: 0;
  font-weight: 500;
}

.aayura-upi-apps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.aayura-upi-app {
  font-size: 15px;
  font-weight: 700;
  color: #17480F;
  font-family: "Salsa" , sans-serif;
  background: #fff;
  border: 1.5px solid #c8eda0;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ===== VERTICAL DIVIDER ===== */
.aayura-pay-divider-v {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0;
  width: 60px;
  flex-shrink: 0;
  background: #fff;
}
.apd-v-line {
  display: block;
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, transparent, #ddf0ae, transparent);
}
.apd-v-or {
  font-size: 12px;
  font-weight: 800;
  color: #17480F;
  background: #D8F897;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* ===== RIGHT — BANK ===== */
.aayura-pay-right {
  flex: 1;
  padding: 44px 44px 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
}

.aayura-bank-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.aayura-bank-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #D8F897;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aayura-bank-title {
  font-size: 20px;
  font-weight: 800;
  color: #17480F;
  margin: 0 0 3px;
  line-height: 1.2;
}
.aayura-bank-sub {
  font-size: 12.5px;
  color: #88a870;
  margin: 0;
}

/* Bank detail rows */
.aayura-bank-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.aayura-bank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #f0f8e4;
}
.aayura-bank-row:last-child { border-bottom: none; }

.aayura-bank-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Salsa" , sans-serif;
  color: #45781e;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 140px;
  flex-shrink: 0;
}
.aayura-bank-label svg { color: #6ab04c; flex-shrink: 0; }

.aayura-bank-value {
  font-size: 15px;
  font-weight: 700;
  font-family: "Salsa" , sans-serif;
  color: #17480F;
  text-align: right;
  flex: 1;
}

.aayura-bank-value-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex: 1;
}
.aayura-copy-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1.5px solid #ddf0ae;
  background: #f0fbd8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #17480F;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.aayura-copy-btn:hover {
  background: #17480F;
  color: #D8F897;
  border-color: #17480F;
}
.aayura-copy-btn.copied {
  background: #17480F;
  color: #D8F897;
  border-color: #17480F;
}

/* Note */
.aayura-pay-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f0fbd8;
  border: 1px solid #c8eda0;
  border-left: 4px solid #17480F;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: auto;
}
.aayura-pay-note svg { flex-shrink: 0; margin-top: 2px; }
.aayura-pay-note p {
  font-size: 16px;

  color: #3a5c28;
  margin: 0;
  line-height: 1.7;
}
.aayura-pay-note strong { color: #17480F; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .aayura-pay-section { padding: 60px 0 70px; }
  .aayura-pay-left { flex: 0 0 44%; max-width: 44%; padding: 32px 24px; }
  .aayura-pay-right { padding: 32px 28px 32px 20px; }
  .aayura-bank-label { min-width: 120px; font-size: 11.5px; }
  .aayura-bank-value { font-size: 13.5px; }
}

@media (max-width: 767.98px) {
  .aayura-pay-section { padding: 48px 0 58px; }
  .aayura-pay-card {
    flex-direction: column;
    border-radius: 18px;
  }
  .aayura-pay-left {
    flex: unset; max-width: 100%;
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1.5px solid #ddf0ae;
  }
  .aayura-pay-divider-v {
    flex-direction: row;
    width: 100%;
    height: 52px;
    padding: 0 40px;
    background: #fff;
  }
  .apd-v-line {
    flex: 1;
    width: auto;
    height: 1.5px;
    background: linear-gradient(to right, transparent, #ddf0ae, transparent);
  }
  .aayura-pay-right { padding: 28px 24px 32px; }
  .aayura-bank-row { flex-wrap: wrap; gap: 6px; }
  .aayura-bank-label { min-width: unset; width: 100%; }
  .aayura-bank-value { text-align: left; }
  .aayura-bank-value-copy { justify-content: flex-start; }
  .aayura-qr-frame { width: 180px; height: 180px; }
}

@media (max-width: 575.98px) {
  .aayura-pay-section { padding: 36px 0 44px; }
  .aayura-pay-heading { font-size: 28px; }
  .aayura-qr-frame { width: 160px; height: 160px; }
}
.ph {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 80%;
    left: 10px;
}

.whatsapp {
    width: 50px;
    height: auto;
    display: table;
    float: right;
    position: fixed;
    z-index: 2147483647;
    top: 90%;
    left: 10px;
}