/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --anity-font: "DM Sans", sans-serif;
  --anity-font-two: "Josefin Sans", sans-serif;
  --anity-font-three: "fredoka_oneregular";
  --anity-gray: #727272;
  --anity-gray-rgb: 114, 114, 114;
  --anity-base: #ff5528;
  --anity-base-rgb: 255, 85, 40;
  --anity-black: #343434;
  --anity-black-rgb: 52, 52, 52;
  --anity-primary: #ffa415;
  --anity-primary-rgb: 255, 164, 21;
  --anity-extra: #26cc8c;
  --anity-extra-rgb: 38, 204, 140;
  --anity-extra-two: #f2f0ec;
  --anity-extra-two-rgb: 242, 240, 236;
  --anity-white: #ffffff;
  --anity-white-rgb: 255, 255, 255;
  --anity-bdr-color: #e3e3e3;
  --anity-bdr-radius: 20px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--anity-font);
  color: var(--anity-gray);
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--anity-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--anity-font-two);
  color: var(--anity-black);
  margin: 0;
}

p {
  margin: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

.list-unstyled {
  padding-left: 0;
}

@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--anity-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--anity-base);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--anity-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-top: -8px;
  margin-bottom: 52px;
  z-index: 1;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--anity-base);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.section-title__title {
  color: var(--anity-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin: 9px 0 0;
}

.section-title__title span {
  color: var(--anity-base);
}

.section-title-two {
  position: relative;
  display: block;
  margin-top: -11px;
  margin-bottom: 55px;
  z-index: 1;
}

.section-title-two__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--anity-base);
  font-weight: 400;
}

.section-title-two__title {
  color: var(--anity-black);
  font-size: 50px;
  line-height: 55px;
  font-weight: 700;
  margin: 5px 0 0;
}

.section-title-two__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title-two__title span img {
  position: absolute;
  bottom: -15px;
  right: -5px;
  animation: leftRight 4s ease-in-out infinite;
  z-index: -1;
}

/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 14px;
  color: var(--anity-black);
  border: 1px solid var(--anity-base);
  padding: 7px 25px 7px;
  padding-right: 9px;
  border-radius: 30px;
  transition: 0.5s ease-in-out;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 1.4px;
  gap: 10px;
  z-index: 2;
  text-align: center;
}

.thm-btn::after {
  content: "";
  background-color: var(--anity-black);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}

.thm-btn:hover:after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.thm-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: var(--anity-base);
  border-radius: 50%;
  font-size: 12px;
  color: var(--anity-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-btn:hover span {
  background-color: var(--anity-white);
  color: var(--anity-base);
  transition-delay: 200ms;
}

.thm-btn:hover span i {
  -webkit-animation: bounceright 0.3s alternate ease infinite;
  animation: bounceright 0.3s alternate ease infinite;
}

.thm-btn:hover {
  color: var(--anity-white);
  border: 1px solid var(--anity-black);
}

/* Proloader Css */

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--anity-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--anity-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--anity-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu__top {
  position: relative;
  display: block;
  background-color: var(--anity-base);
}

.main-menu__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0px;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li + li {
  margin-left: 46px;
}

.main-menu__contact-list li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--anity-white-rgb), 0.4);
}

.main-menu__contact-list li:first-child:before {
  display: none;
}

.main-menu__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 16px;
  color: var(--anity-white);
}

.main-menu__contact-list li .text {
  margin-left: 10px;
}

.main-menu__contact-list li .text p {
  font-size: 16px;
  color: var(--anity-white);
}

.main-menu__contact-list li .text p a {
  color: var(--anity-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: var(--anity-black);
}

.main-menu__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu__social-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__social-title {
  font-size: 16px;
  color: var(--anity-white);
  line-height: 16px;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border: 2px solid rgba(var(--anity-white-rgb), 0.1);
  border-radius: 50%;
  font-size: 14px;
  color: rgba(var(--anity-white-rgb), 1);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu__social a:hover {
  color: var(--anity-base);
  border: 1px solid transparent;
}

.main-menu__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--anity-white);
  transform: scale(0.5);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu__social a:hover::before {
  transform: scale(1);
  opacity: 1;
}

.main-menu__social a + a {
  margin-left: 10px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu__left {
  display: flex;
  align-items: center;
  gap: 50px;
}

.main-menu__logo {
  display: block;
  padding: 35px 0;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.main-menu__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--anity-base);
  border-radius: 50%;
  color: var(--anity-white);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-icon:hover {
  background-color: var(--anity-black);
  color: var(--anity-white);
}

.main-menu__call-content {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.main-menu__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--anity-gray);
  line-height: 14px;
}

.main-menu__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 6px;
}

.main-menu__call-number a {
  color: var(--anity-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__call-number a:hover {
  color: var(--anity-base);
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--anity-base-rgb), 0.2);
  border-radius: 50%;
  font-size: 16px;
  color: var(--anity-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--anity-white);
  background-color: rgba(var(--anity-base-rgb), 1);
}

.stricky-header.main-menu {
  background-color: var(--anity-white);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list > li > ul,
  .main-menu .main-menu__list > li > ul > li > ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list > li > ul,
  .stricky-header .main-menu__list > li > ul > li > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list > li,
.stricky-header .main-menu__list > li {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.main-menu .main-menu__list > li + li,
.stricky-header .main-menu__list > li + li {
  margin-left: 25px;
}

.main-menu .main-menu__list > li > a,
.stricky-header .main-menu__list > li > a {
  font-size: 20px;
  padding: 0px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--anity-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 20px;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a,
.stricky-header .main-menu__list > li.current > a,
.stricky-header .main-menu__list > li:hover > a {
  color: var(--anity-base);
}

/* .main-menu .main-menu__list > li > a::before,
.stricky-header .main-menu__list > li > a::before {
  content: "";
  height: 20px;
  border-radius: 0px;
  opacity: 0.3;
  background-color: var(--anity-base);
  position: absolute;
  bottom: -20px;
  left: 0px;
  right: 0px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  z-index: 1;
} */

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before,
.stricky-header .main-menu__list > li.current > a::before,
.stricky-header .main-menu__list > li:hover > a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 15px;
}

/* .main-menu .main-menu__list > li.dropdown > a:after {
  position: absolute;
  top: 56%;
  right: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--anity-black);
  transform: translateY(-50%);
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
} */

.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after,
.stricky-header .main-menu__list > li.current > a::after,
.stricky-header .main-menu__list > li:hover > a::after {
  color: var(--anity-base);
}

.main-menu .main-menu__list > li > ul,
.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--anity-black);
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.main-menu .main-menu__list > li:hover > ul,
.main-menu .main-menu__list > li > ul > li:hover > ul,
.stricky-header .main-menu__list > li:hover > ul,
.stricky-header .main-menu__list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list > li > ul > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul > li > ul {
  display: none;
}

.main-menu .main-menu__list > li > ul > li,
.main-menu .main-menu__list > li > ul > li > ul > li,
.stricky-header .main-menu__list > li > ul > li,
.stricky-header .main-menu__list > li > ul > li > ul > li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list > li > ul > li + li,
.main-menu .main-menu__list > li > ul > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li + li,
.stricky-header .main-menu__list > li > ul > li > ul > li + li {
  border-top: 1px solid rgba(var(--anity-white-rgb), 0.05);
  margin-top: 0px;
}

.main-menu .main-menu__list > li > ul > li > a,
.main-menu .main-menu__list > li > ul > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > a,
.stricky-header .main-menu__list > li > ul > li > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--anity-white-rgb), 0.8);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 17px 0px 17px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list > li > ul > li:hover > a,
.main-menu .main-menu__list > li > ul > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li:hover > a,
.stricky-header .main-menu__list > li > ul > li > ul > li:hover > a {
  color: rgba(var(--anity-white-rgb), 1);
  padding-left: 5px;
}

.main-menu .main-menu__list > li > ul > li.dropdown > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li.dropdown > a::before,
.stricky-header .main-menu__list > li > ul > li.dropdown > a::before,
.stricky-header .main-menu__list > li > ul > li > ul > li.dropdown > a::before {
  position: absolute;
  top: 50%;
  right: 0px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f105";
  font-size: 14px;
  color: var(--anity-white);
  transform: translateY(-50%) scale(1) rotate(0deg);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list > li > ul > li.dropdown:hover > a::before,
.main-menu .main-menu__list > li > ul > li > ul > li.dropdown:hover > a::before,
.stricky-header .main-menu__list > li > ul > li.dropdown:hover > a::before,
.stricky-header
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li.dropdown:hover
  > a::before {
  color: var(--anity-base);
  transform: translateY(-50%) scale(1) rotate(90deg);
}

.main-menu .main-menu__list > li > ul > li > ul,
.stricky-header .main-menu__list > li > ul > li > ul {
  top: 0;
  left: 100%;
  border-left: 40px solid transparent;
  background-color: transparent;
  width: 320px;
}

.main-menu .main-menu__list > li > ul > li > ul::before,
.stricky-header .main-menu__list > li > ul > li > ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  background-color: var(--anity-black);
}

.main-menu .main-menu__list li ul li > ul.right-align,
.stricky-header .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu,
.main-menu-three__main-menu-box .main-menu__list > .megamenu,
.main-menu-two__main-menu-box .main-menu__list > .megamenu,
.main-menu__wrapper .main-menu__list > .megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul,
.main-menu__wrapper .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.main-menu-three__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu-two__main-menu-box .main-menu__list > .megamenu > ul > li,
.main-menu__wrapper .main-menu__list > .megamenu > ul > li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--anity-base);
  cursor: pointer;
}

.mobile-nav__buttons a + a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--anity-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--anity-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--anity-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--anity-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
    transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
    transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--anity-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list > li > a > .main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--anity-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content
  .main-menu__list
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > a.expanded
  .mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a.expanded {
  color: var(--anity-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--anity-base);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
  width: 30px;
  display: none !important;
  height: 30px;
  background-color: var(--anity-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content
  .main-menu__list
  > li
  > ul
  > li
  > ul
  > li
  > a
  > button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--anity-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--anity-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--anity-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a + a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--anity-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--anity-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li + li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--anity-base);
}

.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--anity-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}

.mobile-nav__content .home-showcase {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: 0px;
  margin-bottom: 0;
}

.home-showcase .container {
  max-width: 1640.1px;
}

.home-showcase .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

.home-showcase__inner {
  padding: 30px 30px 30px;
  background-color: rgb(255, 255, 255);
  background-color: var(--anity-white);
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  background-color: rgb(0, 0, 0, 0.1);
  padding: 1px;
}

.home-showcase__image > img {
  width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover > img {
  filter: blur(2px);
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 800ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0.7;
  z-index: 1;
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -ms-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -moz-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -o-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #ff5528),
    color-stop(100, #ffa415)
  );
  background-image: -webkit-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: linear-gradient(to right, #ff5528 0%, #ffa415 100%);

  opacity: 1;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  z-index: -1;
}

.home-showcase__image:hover .home-showcase__buttons::before {
  opacity: 0.9;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.home-showcase__buttons__item {
  padding: 5px 20px 5px;
  padding-right: 15px;
  width: 150px;
  text-align: center;
  color: var(--anity-white);
  background-color: var(--anity-black);
  border: 1px solid var(--anity-black);
}

.home-showcase__buttons__item::after {
  background-color: var(--anity-white);
}

.home-showcase__buttons__item span {
  background-color: var(--anity-white);
  color: var(--anity-black);
  display: none;
}

.home-showcase__buttons__item:hover {
  color: var(--anity-black);
  background-color: transparent;
  border: 1px solid transparent;
}

.home-showcase__buttons__item + .home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  font-weight: 500;
  color: var(--anity-white);
  margin-top: 10px;
  text-transform: uppercase;
  font-family: var(--anity-font);
  background-image: -ms-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -moz-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -o-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #ff5528),
    color-stop(100, #ffa415)
  );
  background-image: -webkit-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: linear-gradient(to right, #ff5528 0%, #ffa415 100%);
}

.mobile-nav__wrapper .home-showcase .row [class*="col-"] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--anity-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 150px;
  background-color: var(--anity-extra-two);
}

.main-menu-two__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}

.main-menu-two__logo {
  display: block;
  padding: 35px 0;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--anity-base);
  border-radius: 50%;
  color: var(--anity-white);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
  background-color: var(--anity-black);
  color: var(--anity-white);
}

.main-menu-two__call-content {
  margin-left: 10px;
  position: relative;
  top: 2px;
}

.main-menu-two__call-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--anity-gray);
  line-height: 14px;
}

.main-menu-two__call-number {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-top: 6px;
}

.main-menu-two__call-number a {
  color: var(--anity-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--anity-base);
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--anity-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search:hover {
  color: var(--anity-base);
}

.stricky-header.main-menu-two {
  background-color: var(--anity-white);
}

/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  position: relative;
  display: block;
  width: 100%;
  background: transparent;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-menu-three__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-three__logo {
  display: block;
  padding: 5px 0;
}

.main-menu-three__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__user-box {
  position: relative;
  display: block;
}

.main-menu-three__user {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--anity-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__user:hover {
  color: var(--anity-base);
}

.main-menu-three__search-box {
  position: relative;
  display: block;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--anity-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search:hover {
  color: var(--anity-base);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease,
    -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--anity-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--anity-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  background-color: var(--anity-black);
  border-radius: 0;
}

.search-popup__content .thm-btn::before {
  background-color: var(--anity-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--anity-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--anity-white);
}

/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/
.donate-one__btn {
  color: var(--anity-white);
  border: 1px solid var(--anity-white);
}

.donate-one__btn span {
  background-color: var(--anity-black);
}

.cta-one__btn-1 {
  padding: 8px 26px 8px;
  padding-right: 9px;
  background-color: var(--anity-primary);
  border: none;
}

.cta-one__btn-1:hover {
  border: none;
}

.cta-one__btn-1 span {
  background-color: var(--anity-black);
}

.cta-one__btn-2 {
  padding: 8px 26px 8px;
  padding-right: 9px;
  background-color: var(--anity-white);
  border: none;
}

.cta-one__btn-2:hover {
  border: none;
}

.cta-one__btn-2 span {
  background-color: var(--anity-black);
}

.donate-two__single-2 .donate-two__btn-2 {
  border: 1px solid var(--anity-extra);
}

.donate-two__single-2 .donate-two__btn-2::after {
  background-color: var(--anity-extra);
}

.donate-two__single-2 .donate-two__btn-2 span {
  background-color: var(--anity-extra);
}

.donate-two__single-2 .donate-two__btn-2:hover {
  border: 1px solid var(--anity-extra);
}

.donate-two__single-2 .donate-two__btn-2:hover span {
  background-color: var(--anity-white);
  color: var(--anity-extra);
}

.donate-two__single-3 .donate-two__btn-2 {
  border: 1px solid var(--anity-primary);
}

.donate-two__single-3 .donate-two__btn-2::after {
  background-color: var(--anity-primary);
}

.donate-two__single-3 .donate-two__btn-2 span {
  background-color: var(--anity-primary);
}

.donate-two__single-3 .donate-two__btn-2:hover span {
  background-color: var(--anity-white);
  color: var(--anity-primary);
}

.counter-one__needy-btn {
  color: var(--anity-white);
}

.counter-one__needy-btn:hover {
  border: 1px solid var(--anity-base);
}

.counter-one__needy-btn::after {
  background-color: var(--anity-base);
}

.footer-widget-two__btn {
  color: var(--anity-white);
}

.footer-widget-two__btn::after {
  background-color: var(--anity-base);
}

.footer-widget-two__btn:hover {
  border: 1px solid var(--anity-base);
}

.cta-two__btn {
  color: var(--anity-white);
}

.cta-two__btn::after {
  background-color: var(--anity-base);
}

.cta-two__btn:hover {
  border: 1px solid var(--anity-base);
}

.contact-one__btn {
  background-color: transparent;
}

.volinteer-page__btn {
  background-color: transparent;
}

.contact-three__btn {
  background-color: transparent;
}

.main-slider__btn {
  border: none;
  background-color: var(--anity-base);
  color: var(--anity-white);
  padding: 8px 25px 8px;
  padding-right: 9px;
}

.main-slider__btn span {
  background-color: var(--anity-black);
}

.main-slider__btn:hover {
  border: 0px solid transparent;
}

.main-slider-two__btn {
  border: none;
  background-color: var(--anity-base);
  color: var(--anity-white);
  padding: 8px 25px 8px;
  padding-right: 9px;
}

.main-slider-two__btn span {
  background-color: var(--anity-black);
}

.main-slider-two__btn:hover span {
  background-color: var(--anity-base);
  color: var(--anity-white);
}

.main-slider-two__btn:hover {
  border: 0px solid transparent;
  color: var(--anity-base);
}

.main-slider-two__btn::after {
  background-color: var(--anity-white);
}

.donation-details__btn {
  border: none;
  background-color: var(--anity-base);
  color: var(--anity-white);
  padding: 8px 25px 8px;
  padding-right: 9px;
  width: 100%;
}

.donation-details__btn span {
  background-color: var(--anity-black);
}

.donation-details__btn:hover span {
  background-color: var(--anity-base);
  color: var(--anity-white);
}

.donation-details__btn:hover {
  border: 0px solid transparent;
  color: var(--anity-base);
}

.donation-details__btn::after {
  background-color: var(--anity-white);
}

.donation-one__btn {
  border: none;
  background-color: var(--anity-base);
  color: var(--anity-white);
  padding: 8px 25px 8px;
  padding-right: 9px;
}

.donation-one__btn span {
  background-color: var(--anity-black);
}

.donation-one__btn:hover span {
  background-color: var(--anity-base);
  color: var(--anity-white);
}

.donation-one__btn:hover {
  border: 0px solid transparent;
  color: var(--anity-base);
}

.donation-one__btn::after {
  background-color: var(--anity-white);
}

.sidebar__call-to-action-btn {
  border: 1px solid var(--anity-white);
  color: var(--anity-white);
}

.sidebar__call-to-action-btn span {
  background-color: var(--anity-black);
}

.product__all-btn {
  font-size: 12px;
  padding: 5px 20px 5px;
}

.review-form-one__btn {
  background-color: transparent;
  padding: 12px 25px 12px;
}

.account__form-btn {
  background-color: transparent;
}

.coming-soon-page__btn {
  background-color: var(--anity-base);
  color: var(--anity-white);
}

.coming-soon-page__btn:hover {
  color: var(--anity-black);
  border: 1px solid transparent;
  background-color: transparent;
}

.coming-soon-page__btn span {
  background-color: var(--anity-white);
  color: var(--anity-black);
}

.coming-soon-page__btn:hover span {
  background-color: var(--anity-black);
  color: var(--anity-white);
}

.coming-soon-page__btn::after {
  background-color: var(--anity-white);
}

/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--anity-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--anity-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
             home-4
--------------------------------------------------------------*/
/*--------------------------------------------------------------
             Slogan One
--------------------------------------------------------------*/
.slogan-one {
  position: relative;
  display: block;
  padding: 159px 0px 160px;
}

.slogan-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  mix-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
}

.slogan-one__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}

.slogan-one__content {
  position: relative;
  display: block;
}

.slogan-one__content .title-box {
  position: relative;
  display: block;
  padding-bottom: 27px;
}

.slogan-one__content .title-box h2 {
  color: var(--anity-white);
  font-size: 60px;
  line-height: 1em;
  text-transform: capitalize;
}

.slogan-one__content .text-box {
  position: relative;
  display: block;
}

.slogan-one__content .text-box p {
  color: #c5c5c5;
  font-size: 18px;
  line-height: 30px;
}

.slogan-one__content .btn-box {
  position: relative;
  display: block;
  line-height: 0;
  padding-top: 41px;
}

.slogan-one__content .btn-box .thm-btn {
  color: var(--anity-white);
}

.slogan-one__content .btn-box .thm-btn::after {
  background-color: var(--anity-base);
}

/*--------------------------------------------------------------
             Mission One
--------------------------------------------------------------*/
.mission-one {
  position: relative;
  display: block;
  padding: 140px 0px 110px;
}

.single-mission-one {
  position: relative;
  display: block;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  padding: 30px 29px 30px;
  border-radius: 10px;
}

.single-mission-one .icon-box,
.single-mission-one .content-box {
  display: table-cell;
  vertical-align: top;
}

.single-mission-one .inner-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border: 2px solid var(--anity-base);
  background: var(--anity-base);
  text-align: center;
  color: var(--anity-white);
  line-height: 63px;
  margin-right: 27px;
  transition: all 0.3s ease;
}

.single-mission-one:hover .inner-box {
  background: var(--anity-white);
  border-color: var(--anity-base);
  color: var(--anity-base);
}

.single-mission-one .inner-box i:before {
  font-size: 35px;
}

.single-mission-one .content-box .text h3 {
  color: #202a30;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.single-mission-one .content-box .text p {
  margin-bottom: 15px;
}

.single-mission-one .content-box .btn-box {
  position: relative;
  display: block;
  line-height: 0;
}

.single-mission-one .content-box .btn-box a {
  padding: 14px 25px 14px;
  line-height: 20px;
}

/*-------------------------------------------
  Mission Two
--------------------------------------------*/
.mission-two {
  position: relative;
  display: block;
  padding: 140px 0px 110px;
}

.single-mission-two {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--anity-white);
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
  padding: 35px 30px 31px;
  border-radius: 10px;
  margin-bottom: 30px;
  z-index: 1;
}

.single-mission-two::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-image: -ms-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -moz-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -o-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #ff5528),
    color-stop(100, #ffa415)
  );
  background-image: -webkit-linear-gradient(left, #ff5528 0%, #ffa415 100%);
  background-image: linear-gradient(to right, #ff5528 0%, #ffa415 100%);
  z-index: -1;

  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.single-mission-two:hover::before {
  height: 100%;
}

.single-mission-two__icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgb(0, 0, 0, 0.1);
  font-size: 60px;
  line-height: 0;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-mission-two:hover .single-mission-two__icon {
  color: rgb(255, 85, 40, 0.2);
}

.single-mission-two__content {
  position: relative;
  display: block;
  z-index: 1;
}

.single-mission-two__content .title {
  position: relative;
  display: block;
  padding-bottom: 12px;
}

.single-mission-two__content .title h3 {
  font-size: 24px;
  line-height: 34px;
}

.single-mission-two__content .title h3 a {
  color: var(--anity-black);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-mission-two:hover:hover .single-mission-two__content .title h3 a {
  color: var(--anity-white);
}

.single-mission-two__content .title h3 a:hover {
  color: var(--anity-base);
}

.single-mission-two__content .text {
  position: relative;
  display: block;
}

.single-mission-two__content .text p {
  line-height: 28px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.single-mission-two:hover:hover .single-mission-two__content .text p {
  color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------*/
.contact-section .info-column {
  margin-bottom: 50px;
}

.contact-section .info-column a {
  color: #253d4a;
}

.contact-section .info-column h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-section .info-column .inner-box {
  position: relative;
  padding-left: 70px;
}

.contact-section .info-column .inner-box .icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 70px;
  line-height: 70px;
  font-size: 48px;
  color: #fb5e1c;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# New CSS
--------------------------------------------------------------*/

/* Dropdown base setup */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 10px 0;
  border-radius: 5px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown item links */
.dropdown-content a {
  color: #333;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

/* Hover effect on links */
.dropdown-content a:hover {
  background-color: #f4f4f4;
  color: #e94d1c;
}

/* Optional: Style the caret icon */
.dropbtn i {
  margin-left: 5px;
  font-size: 0.9em;
}

/* Base Footer Links */
.footer-widget-two__services-list {
  padding-left: 0;
  list-style: none;
}

.footer-widget-two__services-list li a {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget-two__services-list li a:hover {
  color: #f26522; /* your highlight color */
}

/* Our Work Dropdown Structure */
.footer-dropdown {
  position: relative;
}

/* Dropdown Toggle Link */
.footer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  padding: 5px 0;
}

.footer-toggle-icon {
  font-size: 16px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

/* Hide submenu by default */
.footer-submenu {
  display: none;
  margin-left: 15px;
  padding-left: 10px;
  list-style: none;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

/* Submenu visible on open */
.footer-dropdown.open .footer-submenu {
  display: block;
}

/* Rotate icon when open */
.footer-dropdown.open .footer-toggle-icon {
  transform: rotate(45deg); /* + becomes × */
}

/* Submenu Link Styling */
.footer-submenu li {
  margin-top: 4px;
}

.footer-submenu li a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  display: block;
  padding: 3px 0;
  transition: color 0.3s ease;
}

.footer-submenu li a:hover {
  color: #ffffff;
}

/* Slider Styles */
/* Hero Slider Styles */
.hero-slider {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
}

#heroCarousel {
  height: 100%;
  touch-action: pan-y pinch-zoom;
}

.carousel-inner {
  height: 100%;
}

.carousel-item {
  height: 75vh;
  min-height: 500px;
  max-height: 700px;
  position: relative;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6);
  transition: transform 0.3s ease;
}

.carousel-item:hover img {
  transform: scale(1.02);
}

/* Carousel Caption Styles */
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  padding: 2rem;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
  animation: slideInDown 1s ease-out;
}

.carousel-caption p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  font-weight: 400;
  animation: slideInUp 1s ease-out 0.3s both;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  height: 70px;
  background: rgba(44, 85, 48, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 0.8;
  z-index: 15;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(44, 85, 48, 1);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 28px;
  height: 28px;
  background-size: 28px 28px;
}

/* Carousel Indicators */
.carousel-indicators {
  bottom: 40px;
  z-index: 15;
}

.carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 10px;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.carousel-indicators .active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.3);
  opacity: 1;
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
  opacity: 1;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Touch-friendly adjustments */
.carousel-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-caption h1 {
    font-size: 3rem;
  }

  .carousel-caption p {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1.2rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 60px;
    height: 60px;
  }

  .carousel-control-prev {
    left: 20px;
  }

  .carousel-control-next {
    right: 20px;
  }

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

@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    min-height: 400px;
    max-height: 450px;
  }

  .carousel-item {
    height: 60vh;
    min-height: 400px;
    max-height: 450px;
  }

  .carousel-caption {
    width: 95%;
    padding: 1.5rem;
  }

  .carousel-caption h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .carousel-control-prev {
    left: 15px;
  }

  .carousel-control-next {
    right: 15px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }

  .carousel-indicators {
    bottom: 25px;
  }

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
}

@media (max-width: 576px) {
  .hero-slider {
    height: 50vh;
    min-height: 350px;
    max-height: 400px;
  }

  .carousel-item {
    height: 50vh;
    min-height: 350px;
    max-height: 400px;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .carousel-caption p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .carousel-caption {
    padding: 1rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .carousel-caption h1,
  .carousel-caption p {
    animation: none;
  }

  .carousel-item img {
    transition: none;
  }

  .carousel-control-prev,
  .carousel-control-next,
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .carousel-caption {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid white;
  }
}

/* Focus styles for keyboard navigation */
.carousel-indicators [data-bs-target]:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* Loading state */
.carousel-item img {
  background: linear-gradient(135deg, #f0f2f5, #e4e6ea);
}

/* Ensure proper layering */
.carousel-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

.carousel-caption {
  z-index: 10;
}

/* index about us css */

.about-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.content-text {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out 0.9s forwards;
}

.content-text h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
}

.content-text h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
}

.content-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  color: white;
  transform: scale(0.8);
  opacity: 0;
  animation: scaleIn 0.8s ease-out 1.5s forwards;
}

.stat-item:nth-child(2) {
  animation-delay: 1.7s;
}

.stat-item:nth-child(3) {
  animation-delay: 1.9s;
}

.stat-item:nth-child(4) {
  animation-delay: 2.1s;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.visual-element {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out 1.2s forwards;
  position: relative;
}

.mission-cards {
  display: grid;
  gap: 1.5rem;
}

.mission-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card:nth-child(1) {
  border-left-color: #667eea;
}

.mission-card:nth-child(2) {
  border-left-color: #764ba2;
}

.mission-card:nth-child(3) {
  border-left-color: #f093fb;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.mission-card:nth-child(1) .card-icon {
  color: #667eea;
}

.mission-card:nth-child(2) .card-icon {
  color: #764ba2;
}

.mission-card:nth-child(3) .card-icon {
  color: #f093fb;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.card-text {
  color: #666;
  line-height: 1.6;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

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

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .content-text {
    animation: fadeInUp 1s ease-out 0.9s forwards;
    transform: translateY(30px);
  }

  .visual-element {
    animation: fadeInUp 1s ease-out 1.2s forwards;
    transform: translateY(30px);
  }
}

/* Partners Section Styles */

.partners-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.section-container {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.section-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  opacity: 0;
  animation: slideIn 1.5s ease-out 0.5s forwards;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 2px;
  opacity: 0;
  animation: expandWidth 1s ease-out 1.5s forwards;
}

.title-icon {
  display: inline-block;
  margin-right: 1rem;
  font-size: 3rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.5);
  animation: scaleIn 0.8s ease-out 1.2s forwards;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #555;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1.1s forwards;
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: slideUpScale 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.partner-card:nth-child(1) {
  animation-delay: 1.4s;
}
.partner-card:nth-child(2) {
  animation-delay: 1.5s;
}
.partner-card:nth-child(3) {
  animation-delay: 1.6s;
}
.partner-card:nth-child(4) {
  animation-delay: 1.7s;
}
.partner-card:nth-child(5) {
  animation-delay: 1.8s;
}
.partner-card:nth-child(6) {
  animation-delay: 1.9s;
}
.partner-card:nth-child(7) {
  animation-delay: 2s;
}
.partner-card:nth-child(8) {
  animation-delay: 2.1s;
}
.partner-card:nth-child(9) {
  animation-delay: 2.2s;
}
.partner-card:nth-child(10) {
  animation-delay: 2.3s;
}
.partner-card:nth-child(11) {
  animation-delay: 2.4s;
}
.partner-card:nth-child(12) {
  animation-delay: 2.5s;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  transition: left 0.6s;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
}

.partner-logo {
  width: 250px;
  height: 120px;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
  /* border: 2px solid rgba(102, 126, 234, 0.1); */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  padding: 8px;
}

.partner-card:hover .partner-logo {
  border-color: rgba(102, 126, 234, 0.3);
  transform: scale(1.05);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
  transform: scale(1.1);
}

.partner-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.partner-type {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  padding: 0.3rem 0.8rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  opacity: 0.03;
  animation: float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.floating-shape:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 6s;
}

/* Placeholder logo styles for demonstration */
.logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 10px;
}

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

@keyframes slideIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUpScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes expandWidth {
  to {
    opacity: 1;
    width: 100px;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .title-icon {
    font-size: 2rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .section-container {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

/* <!--Skill Center section CSS Start --> */

.shg-empowerment-hub {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.shg-empowerment-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.shg-mastery-headline {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.shg-mastery-headline h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.shg-mastery-headline p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.shg-excellence-grid {
  position: relative;
  z-index: 2;
}

.shg-training-capsule {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 0;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.shg-training-capsule:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.shg-workshop-visual {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.shg-workshop-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shg-training-capsule:hover .shg-workshop-visual img {
  transform: scale(1.1);
}

.shg-impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.8),
    rgba(118, 75, 162, 0.8)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shg-training-capsule:hover .shg-impact-overlay {
  opacity: 1;
}

.shg-empowerment-icon {
  font-size: 3rem;
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.shg-development-content {
  padding: 30px 30px 25px 30px;
  text-align: left;
  background: #ffffff;
}

.shg-program-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.4;
}

.shg-program-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 18px;
}

.shg-location-info {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #4285f4;
  font-weight: 500;
}

.shg-location-info i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.shg-achievement-banner {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.shg-success-counter {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  display: inline-block;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.shg-total-impact {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shg-impact-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .shg-mastery-headline h2 {
    font-size: 2.5rem;
  }

  .shg-workshop-visual {
    height: 200px;
  }

  .shg-development-content {
    padding: 20px;
  }

  .shg-total-impact {
    font-size: 3rem;
  }
}

.shg-animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

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

/* <!--What We Do section Styling start --> */
.shg-impact-zone {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.shg-impact-zone::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.03) 0%,
    transparent 70%
  );
  animation: shg-float 20s ease-in-out infinite;
}

@keyframes shg-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.shg-mission-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.shg-primary-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.shg-primary-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #28a745);
  border-radius: 2px;
}

.shg-subtitle-text {
  color: #6c757d;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.shg-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.shg-service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.shg-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shg-card-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.shg-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shg-service-card:hover .shg-service-image {
  transform: scale(1.1);
}

.shg-icon-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shg-card-content {
  padding: 30px;
}

.shg-service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.shg-service-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.shg-action-button {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.shg-action-button:hover {
  background: linear-gradient(135deg, #0056b3, #004085);
  color: white;
  transform: translateX(5px);
}

/* Color variations for different cards */
.shg-service-card:nth-child(1) .shg-icon-overlay {
  color: #007bff;
}
.shg-service-card:nth-child(2) .shg-icon-overlay {
  color: #28a745;
}
.shg-service-card:nth-child(3) .shg-icon-overlay {
  color: #dc3545;
}
.shg-service-card:nth-child(4) .shg-icon-overlay {
  color: #fd7e14;
}
.shg-service-card:nth-child(5) .shg-icon-overlay {
  color: #6f42c1;
}
.shg-service-card:nth-child(6) .shg-icon-overlay {
  color: #20c997;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shg-impact-zone {
    padding: 60px 0;
  }

  .shg-primary-heading {
    font-size: 2.5rem;
  }

  .shg-service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shg-card-content {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .shg-primary-heading {
    font-size: 2rem;
  }

  .shg-subtitle-text {
    font-size: 1.1rem;
  }
}

/* <!--Our Leaders in Service CSS homepage --> */

.shg-leadership-domain {
  background: linear-gradient(45deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.shg-leadership-domain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.9) 0%,
    rgba(22, 33, 62, 0.8) 30%,
    rgba(15, 52, 96, 0.9) 70%,
    rgba(26, 26, 46, 0.9) 100%
  );
  opacity: 0.6;
}

.shg-executive-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.shg-leadership-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.shg-leadership-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 2px;
}

.shg-leadership-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.shg-directors-showcase {
  position: relative;
  z-index: 2;
}

.shg-director-profile {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 0;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shg-director-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.shg-profile-layout {
  display: flex;
  align-items: stretch;
  min-height: 450px;
}

.shg-profile-visual {
  flex: 0 0 40%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.shg-profile-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.shg-avatar-placeholder {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 200px;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  z-index: 1;
  overflow: hidden;
}

.shg-director-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shg-content-area {
  flex: 0 0 60%;
  padding: 40px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shg-director-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.2;
}

.shg-director-position {
  font-size: 1.1rem;
  color: #007bff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
}

.shg-director-position::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: #007bff;
}

.shg-bio-content {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: justify;
}

.shg-bio-content p {
  margin-bottom: 18px;
}

.shg-bio-content p:last-child {
  margin-bottom: 0;
}

/* Alternate layout for second director */
.shg-director-profile:nth-child(even) .shg-profile-layout {
  flex-direction: row-reverse;
}

.shg-director-profile:nth-child(even) .shg-profile-visual {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .shg-profile-layout {
    flex-direction: column !important;
    min-height: auto;
  }

  .shg-profile-visual {
    flex: 0 0 300px;
    min-height: 300px;
  }

  .shg-avatar-placeholder {
    width: 100%;
    height: 100%;
    /* max-width: 200px;
    max-height: 200px;
    min-width: 160px;
    min-height: 160px; */
  }

  .shg-content-area {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .shg-leadership-domain {
    padding: 70px 0;
  }

  .shg-leadership-title {
    font-size: 2.5rem;
  }

  .shg-content-area {
    padding: 30px 25px;
  }

  .shg-director-name {
    font-size: 1.8rem;
  }

  .shg-profile-visual {
    min-height: 250px;
  }

  .shg-avatar-placeholder {
    width: 100%;
    height: 100%;
    /* max-width: 150px;
    max-height: 150px;
    min-width: 120px;
    min-height: 120px; */
  }
}

@media (max-width: 480px) {
  .shg-leadership-title {
    font-size: 2rem;
  }

  .shg-bio-content {
    font-size: 0.9rem;
  }

  .shg-profile-visual {
    min-height: 200px;
  }

  .shg-avatar-placeholder {
    width: 100%;
    height: 100%;
    /* max-width: 120px;
    max-height: 120px;
    min-width: 100px;
    min-height: 100px; */
  }
}

/* 
      <!--Empowerment Crew Homepage styling Start --> */

.shg-power-hub {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.shg-power-hub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="70" cy="20" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="90" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.shg-impact-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.shg-main-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.shg-impact-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.shg-impact-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.shg-champions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.shg-champion-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  transform-style: preserve-3d;
}

.shg-champion-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.shg-champion-visual {
  position: relative;
  height: 350px;
  overflow: hidden;
}

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

.shg-champion-card:hover .shg-champion-img {
  transform: scale(1.1);
}

.shg-champion-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: end;
  padding: 20px;
}

.shg-champion-role-tag {
  background: #ff6b6b;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shg-champion-details {
  padding: 35px 25px;
  text-align: center;
}

.shg-champion-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}

.shg-champion-position {
  color: #667eea;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
}

.shg-explore-more {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.shg-explore-btn {
  background: white;
  color: #667eea;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.shg-explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.shg-explore-btn:hover::before {
  left: 100%;
}

.shg-explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: #5a67d8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shg-impact-title {
    font-size: 2.5rem;
  }

  .shg-champions-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .shg-champion-visual {
    height: 250px;
  }
}

/* Remove previous animation styles */
.shg-champion-card {
  transform: none;
  animation: none;
  opacity: 1;
}

/* <!--Our Impact Section homepage css start --> */

.shg-impact-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.shg-impact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}
.shg-section-heading {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}
.shg-stats-grid {
  display: grid;
  /* Default for medium screens (tablets) - allows wrapping if space is limited */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.shg-stat-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.shg-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  transition: all 0.6s;
}
.shg-stat-card:hover::before {
  left: 100%;
}
.shg-stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: #667eea;
}
.shg-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.shg-icon-circle i {
  font-size: 2.2rem;
  color: white;
}
.shg-value-display {
  font-size: 35px;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 15px;
  font-family: "Arial", sans-serif;
  position: relative;
  z-index: 2;
}
.shg-value-label {
  font-size: 16px;
  font-weight: 600;
  color: #34495e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.shg-value-description {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.shg-animated-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  animation: shgPulseAnimation 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes shgPulseAnimation {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
  }
}
/* Media query for larger screens (e.g., desktop) to force 4 columns */
@media (min-width: 992px) {
  .shg-stats-grid {
    grid-template-columns: repeat(4, 1fr); /* Forces 4 equal columns */
  }
}
/* Media query for smaller screens (e.g., mobile) */
@media (max-width: 768px) {
  .shg-section-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
  }
  .shg-stats-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
    padding: 0 15px;
  }
  .shg-stat-card {
    padding: 30px 20px;
  }
  .shg-value-display {
    font-size: 3rem;
  }
}
/* <!--Our Impact Section homepage css end --> */

/* ===========ABOUT US SECTION CSS START =========== */

.shg-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Section and Block Styling */
.shg-about-main-section {
  /* Only the first section gets the full gradient background */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff; /* White text for the first section */
  padding: 60px 20px; /* Increased padding for emphasis */
  border-radius: 0; /* No border-radius for the full-width section */
  box-shadow: none; /* No shadow here, but might add later if needed */
  margin: 0; /* Remove top/bottom margin for this section */
}

/* Adjust text color for the first section's intro content */
.shg-about-main-section .shg-about-intro-content p {
  color: rgba(255, 255, 255, 0.9);
}

.shg-about-main-section .shg-about-story-image p {
  color: rgba(255, 255, 255, 0.7); /* Lighter italic text */
}

/* Styling for subsequent content blocks */
.shg-about-block {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #fff; /* White background for internal blocks */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Headings */
/* Main title for the first section - adjusted for white text on gradient */
.shg-about-main-section .shg-about-section-title {
  text-align: center;
  color: #fff;
  padding-bottom: 20px; /* More space for the underline */
}

.shg-about-main-section .shg-about-section-title::after {
  background-color: #fff; /* White underline for contrast */
  width: 100px; /* Slightly longer underline */
}

/* Subtitles for all other sections */
.shg-about-section-subtitle {
  font-size: 2em;
  color: #555; /* Default dark grey */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.shg-about-section-subtitle::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2); /* Gradient underline */
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Intro Content (only affects sections after the first) */
.shg-about-intro-content p {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

/* Image Styling */
.shg-about-story-image {
  text-align: center;
  margin: 40px 0;
}

.shg-about-story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out;
}

.shg-about-story-image img:hover {
  transform: scale(1.02);
}

/* Vision & Mission */
.shg-about-vision-mission {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.shg-about-vision-mission > div {
  flex: 1;
  min-width: 300px;
  background-color: #fcfcfc; /* Slightly lighter white for these cards */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee; /* Subtle border */
}

.shg-about-vision-mission > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.shg-about-vision-mission h3 {
  font-size: 1.8em;
  /* Gradient text for vision/mission titles */
  background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.shg-about-vision-mission p {
  color: #666;
  font-size: 1.05em;
}

/* Core Values */
.shg-about-values-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.shg-about-values-list li {
  background-color: #fcfcfc; /* Slightly lighter white */
  padding: 20px;
  border-left: 5px solid #764ba2; /* Accent line */
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444;
  transition: transform 0.2s ease-in-out;
}

.shg-about-values-list li:hover {
  transform: translateX(5px);
}

.shg-about-values-list strong {
  /* Gradient text for value titles */
  background: -webkit-linear-gradient(90deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Pillars of Impact */
.shg-about-pillars-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.shg-about-pillars-list li {
  background-color: #fcfcfc; /* Slightly lighter white */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shg-about-pillars-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.shg-about-pillars-list h4 {
  font-size: 1.5em;
  /* Gradient text for pillar titles */
  background: -webkit-linear-gradient(90deg, #764ba2, #667eea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.shg-about-pillars-list p {
  color: #666;
}

/* Impact Numbers */
.shg-about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
  margin-top: 30px;
}

.shg-number-item {
  background-color: #fcfcfc; /* Slightly lighter white */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.shg-number-item:hover {
  background-color: #eff3f7; /* Very light blue/purple on hover */
  transform: translateY(-5px);
}

.shg-number-item strong {
  display: block;
  font-size: 30px;
  /* Gradient text for number values */
  background: -webkit-linear-gradient(90deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.shg-number-item span {
  font-size: 1.1em;
  color: #555;
  display: block;
}

/* Leader Profiles */
.shg-about-leader-profile {
  display: flex;
  flex-direction: column; /* Stack on small screens */
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  padding: 25px;
  background-color: #fcfcfc; /* Slightly lighter white */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) {
  .shg-about-leader-profile {
    /* flex-direction: row; Side-by-side on larger screens */
    text-align: left;
  }
}

.shg-about-leader-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  /* Gradient border for leader images */
  border: 5px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, #667eea, #764ba2);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.shg-about-leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shg-about-leader-content {
  flex-grow: 1;
  color: #444;
}

.shg-about-leader-content h3 {
  font-size: 2em;
  /* Gradient text for leader names */
  background: -webkit-linear-gradient(90deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  text-align: center;
}

.shg-about-leader-content h4 {
  font-size: 1.3em;
  color: #777;
  margin-bottom: 15px;
  text-align: center;
}

.shg-about-leader-content p {
  margin-bottom: 10px;
  text-align: justify;
}

/* Call to Action */
.shg-about-call-to-action {
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    45deg,
    #667eea,
    #764ba2
  ); /* Gradient for CTA background */
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.shg-about-call-to-action h2 {
  color: #fff;
  margin-bottom: 20px;
}

.shg-about-call-to-action p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.shg-call-to-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.shg-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.shg-btn-primary {
  background-color: #fff;
  color: #764ba2;
  border: 2px solid #fff;
}

.shg-btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #667eea;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.shg-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.shg-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Icon Styling */
/* Icons throughout most sections get gradient color */
.shg-about-vision-mission .fas,
.shg-about-values-list .fas,
.shg-about-pillars-list .fas,
.shg-about-numbers-grid .fas {
  /* Apply gradient to icons */
  background: -webkit-linear-gradient(90deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 8px;
  font-size: 1.2em; /* Default icon size */
}

.shg-about-numbers-grid .fas {
  font-size: 40px; /* Larger icons for impact numbers */
  margin-bottom: 10px;
}

.shg-btn .fas {
  margin-right: 10px;
  /* These icons are on a gradient background, so they should be white */
  -webkit-text-fill-color: #fff;
  background: none; /* Remove background-clip for these icons */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .shg-about-section-title {
    font-size: 2.2em;
  }

  .shg-about-section-subtitle {
    font-size: 1.6em;
  }

  .shg-about-vision-mission {
    flex-direction: column;
  }

  .shg-about-leader-profile {
    flex-direction: column;
    text-align: center;
  }

  .shg-about-leader-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .shg-container {
    padding: 15px;
  }

  .shg-about-section-title {
    font-size: 1.8em;
  }

  .shg-about-section-subtitle {
    font-size: 1.4em;
  }

  .shg-btn {
    width: 100%;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Education page CSS
--------------------------------------------------------------*/

.shg-edu-hero-wrapper {
  background: linear-gradient(
    135deg,
    rgb(102, 126, 234) 0%,
    rgb(118, 75, 162) 100%
  );
  padding: 80px 0;
  text-align: center;
  color: white;
}

.shg-edu-hero-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.shg-edu-main-heading {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.shg-p {
  color: #fff;
  font-size: 40px;
}
/* Medium screens (tablets) */
@media (max-width: 992px) {
  .shg-p {
    font-size: 32px;
  }
}

/* Small screens (mobile landscape) */
@media (max-width: 768px) {
  .shg-p {
    font-size: 26px;
  }
}

/* Extra small screens (mobile portrait) */
@media (max-width: 576px) {
  .shg-p {
    font-size: 22px;
  }
}

.shg-edu-tagline-text {
  font-size: 1.4rem;
  margin-bottom: 40px;
  font-style: italic;
  opacity: 0.9;
}

.shg-edu-hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.shg-edu-stat-card-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.shg-edu-stat-card-item:hover {
  transform: translateY(-5px);
}

.shg-edu-stat-number-display {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.shg-edu-stat-label-text {
  font-size: 1rem;
  opacity: 0.9;
}

/* Mission & Vision Section Styles */
.shg-edu-mission-vision-section {
  padding: 80px 0;
  background: #f8f9ff;
}

.shg-edu-content-wrapper-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.shg-edu-section-header-title {
  text-align: center;
  margin-bottom: 60px;
}

.shg-edu-primary-heading-text {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.shg-edu-section-subtitle-desc {
  font-size: 1.2rem;
  color: #7f8c8d;
}

.shg-edu-mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.shg-edu-mission-card-block {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #667eea;
}

.shg-edu-mission-card-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shg-edu-card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.shg-edu-card-icon-wrapper i {
  font-size: 2rem;
  color: white;
}

.shg-edu-card-title-heading {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.shg-edu-card-description-text {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.7;
}

/* Programs Section Styles */
.shg-edu-programs-showcase-area {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
}

.shg-edu-programs-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.shg-edu-program-feature-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.shg-edu-program-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.shg-edu-program-card-header {
  background: linear-gradient(45deg, #667eea, #764ba2);
  padding: 30px 25px;
  text-align: center;
  color: white;
}

.shg-edu-program-icon-display {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.shg-edu-program-title-name {
  font-size: 1.5rem;
  font-weight: 600;
}

.shg-edu-program-card-body {
  padding: 30px 25px;
}

.shg-edu-program-details-list {
  list-style: none;
}

.shg-edu-program-details-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}

.shg-edu-program-details-list li:last-child {
  border-bottom: none;
}

.shg-edu-program-details-list i {
  color: #667eea;
  margin-right: 10px;
  width: 20px;
}

/* Impact Metrics Section Styles */
.shg-edu-impact-metrics-zone {
  padding: 80px 0;
  background: #2c3e50;
  color: white;
  text-align: center;
}

.shg-edu-metrics-display-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.shg-edu-metric-counter-box {
  padding: 40px 20px;
}

.shg-edu-metric-number-large {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 10px;
}

.shg-edu-metric-label-desc {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Photo Gallery Section Styles */
.shg-edu-photo-gallery-section {
  padding: 80px 0;
  background: #f8f9ff;
}

.shg-edu-gallery-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.shg-edu-gallery-image-frame {
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  position: relative;
}

.shg-edu-gallery-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.shg-edu-gallery-image-frame .shg-edu-placeholder-text {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
}

.shg-edu-gallery-image-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section Styles */
.shg-edu-cta-action-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    rgb(102, 126, 234) 0%,
    rgb(118, 75, 162) 100%
  );
  text-align: center;
  color: white;
}

.shg-edu-cta-button-primary {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.shg-edu-cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .shg-edu-main-heading {
    font-size: 2.5rem;
  }

  .shg-edu-tagline-text {
    font-size: 1.2rem;
  }

  .shg-edu-primary-heading-text {
    font-size: 2.2rem;
  }

  .shg-edu-hero-stats-grid,
  .shg-edu-mission-vision-grid,
  .shg-edu-programs-grid-layout {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Women empowerment CSS page
--------------------------------------------------------------*/

.shg-we-hero-banner {
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.shg-we-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.shg-we-hero-content {
  position: relative;
  z-index: 2;
}

.shg-we-primary-impact-showcase {
  background: #f8f9fa;
  padding: 80px 0;
}

.shg-we-impact-metric-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  border-top: 4px solid;
}

.shg-we-impact-metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shg-we-impact-metric-card:nth-child(1) {
  border-top-color: #667eea;
}
.shg-we-impact-metric-card:nth-child(2) {
  border-top-color: #764ba2;
}
.shg-we-impact-metric-card:nth-child(3) {
  border-top-color: #f093fb;
}
.shg-we-impact-metric-card:nth-child(4) {
  border-top-color: #f5576c;
}

.shg-we-metric-figure-display {
  font-size: 40px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shg-we-metric-description-text {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
}

.shg-we-mission-vision-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
  position: relative; /* Added for decorative elements */
}

.shg-we-featured-content-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.shg-we-content-box-header {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.shg-we-content-box-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.shg-we-program-activities-section {
  padding: 80px 0;
  background: #fff;
}

.shg-we-section-main-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.shg-we-section-sub-description {
  font-size: 1.2rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.shg-we-activity-highlight-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.shg-we-activity-highlight-card:hover {
  transform: scale(1.05);
}

.shg-we-activity-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.shg-we-activity-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.shg-we-activity-card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.shg-we-empowerment-gallery-showcase {
  background: #f8f9fa;
  padding: 80px 0;
}

.shg-we-gallery-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.shg-we-gallery-image-container:hover {
  transform: scale(1.05);
}

.shg-we-gallery-showcase-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shg-we-gallery-image-container:hover .shg-we-gallery-showcase-image {
  transform: scale(1.1);
}

.shg-we-impact-showcase-image-wrapper {
  position: relative;
  margin-top: 30px;
}

.shg-we-impact-showcase-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.shg-we-floating-stats-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 25px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.shg-we-badge-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

.shg-we-mission-vision-image-container {
  position: relative;
  margin-bottom: 30px;
}

.shg-we-mission-vision-showcase-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.shg-we-circular-stats-overlay {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shg-we-circular-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #667eea;
  display: block;
}

.shg-we-programs-showcase-container {
  position: relative;
  margin-top: 30px;
}

.shg-we-programs-main-showcase-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.shg-we-programs-info-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 25px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(240, 147, 251, 0.3);
}

.shg-we-programs-badge-title {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.shg-we-programs-badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.shg-we-stats-counter-animation {
  animation: countUp 2s ease-out;
}

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

.shg-we-decorative-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(118, 75, 162, 0.1) 100%
  );
  border-radius: 50%;
  z-index: -1;
}

.shg-we-decorative-element-1 {
  top: -100px;
  right: -100px;
}

.shg-we-decorative-element-2 {
  bottom: -100px;
  left: -100px;
}

/*--------------------------------------------------------------
# Healthcare CSS page
--------------------------------------------------------------*/

.healthcare-hero-section {
  background: linear-gradient(
      135deg,
      rgba(118, 75, 162, 0.9) 0%,
      rgba(102, 126, 234, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

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

.healthcare-hero-content {
  position: relative;
  z-index: 2;
}

.healthcare-services-overview {
  background: #fff;
  padding: 90px 0;
}

.section-primary-title {
  font-size: 3rem;
  font-weight: 900;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}

.section-supporting-text {
  font-size: 1.3rem;
  color: #6c757d;
  text-align: center;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.healthcare-service-accordion {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border: none;
  overflow: hidden;
}

.service-accordion-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: none;
  padding: 25px 30px;
  position: relative;
}

.service-accordion-header:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.service-accordion-header.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.accordion-title-text {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.accordion-content-body {
  padding: 30px;
  background: #fafbfc;
  border-top: 1px solid #e9ecef;
}

.accordion-description-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #495057;
  margin: 0;
}

.healthcare-impact-showcase {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  padding: 90px 0;
  color: white;
  position: relative;
}

.impact-statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.impact-stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number-display {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}

.stat-label-text {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.healthcare-programs-detail {
  background: #f8f9fa;
  padding: 90px 0;
}

.program-feature-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid;
}

.program-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-feature-card:nth-child(1) {
  border-left-color: #667eea;
}
.program-feature-card:nth-child(2) {
  border-left-color: #764ba2;
}
.program-feature-card:nth-child(3) {
  border-left-color: #f093fb;
}

.program-card-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.program-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.program-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #6c757d;
}

.healthcare-image-showcase {
  position: relative;
  margin: 40px 0;
}

.showcase-primary-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.badge-primary-text {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
}

.badge-secondary-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.healthcare-gallery-section {
  background: #fff;
  padding: 90px 0;
}

.gallery-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-image-frame:hover {
  transform: scale(1.03);
}

.gallery-display-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-image-frame:hover .gallery-display-image {
  transform: scale(1.1);
}

.mobile-healthcare-showcase {
  position: relative;
  margin: 50px 0;
}

.mobile-service-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mobile-stats-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 20px 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overlay-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
  display: block;
}

.overlay-stat-label {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 600;
}

.decorative-health-element {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.decorative-health-element-1 {
  top: -75px;
  left: -75px;
}

.decorative-health-element-2 {
  bottom: -75px;
  right: -75px;
}

.service-expansion-animation {
  animation: expandIn 0.5s ease-out;
}

@keyframes expandIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Source of Income CSS page
--------------------------------------------------------------*/
.source-income-hero-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

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

.source-income-hero-content {
  position: relative;
  z-index: 2;
}

/* Source of Income Introduction Section */
.source-income-intro-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.source-income-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(30, 144, 255, 0.02) 0%,
    rgba(106, 90, 205, 0.02) 100%
  );
  z-index: 0;
}

.source-income-section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1e3a8a;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.source-income-section-subtitle {
  font-size: 1.4rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.source-income-content-wrapper {
  position: relative;
  z-index: 1;
}

.source-income-text-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 40px;
}

.source-income-highlight-box {
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  color: white;
  padding: 35px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
  position: relative;
  overflow: hidden;
}

.source-income-highlight-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  transform: rotate(45deg);
}

.source-income-highlight-text {
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.source-income-image-showcase {
  position: relative;
  margin: 50px 0;
}

.source-income-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.source-income-overlay-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  color: white;
  padding: 25px 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
  backdrop-filter: blur(10px);
}

.source-income-badge-number {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.source-income-badge-label {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Source of Income Programs Section */
.source-income-programs-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
}

.source-program-service-card {
  background: white;
  border-radius: 28px;
  padding: 45px;
  margin-bottom: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 6px solid;
  position: relative;
  overflow: hidden;
}

.source-program-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.source-program-service-card:hover::before {
  left: 100%;
}

.source-program-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.source-program-service-card:nth-child(1) {
  border-top-color: #1e40af;
}
.source-program-service-card:nth-child(2) {
  border-top-color: #7c3aed;
}
.source-program-service-card:nth-child(3) {
  border-top-color: #dc2626;
}
.source-program-service-card:nth-child(4) {
  border-top-color: #059669;
}

.source-program-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.source-program-card-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.source-program-card-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

/* Source of Income Stats Section */

/* Source of Income Gallery Section */
.source-income-gallery-section {
  background: #ffffff;
  padding: 100px 0;
}

.source-gallery-frame-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.source-gallery-frame-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.source-gallery-image-display {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.source-gallery-frame-wrapper:hover .source-gallery-image-display {
  transform: scale(1.15);
}

.source-gallery-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 25px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.source-gallery-frame-wrapper:hover .source-gallery-overlay-info {
  transform: translateY(0);
}

.source-gallery-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.source-gallery-info-desc {
  font-size: 0.9rem;
  opacity: 0.9;
}

.source-decorative-income-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.source-decorative-income-element-left {
  top: 20%;
  left: -100px;
}

.source-decorative-income-element-right {
  bottom: 20%;
  right: -100px;
}

.floating-animation {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/*--------------------------------------------------------------
# Disaster CSS page
--------------------------------------------------------------*/
.disaster-hero-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

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

.disaster-hero-content {
  position: relative;
  z-index: 2;
}

.disaster-intro-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.disaster-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(30, 144, 255, 0.02) 0%,
    rgba(106, 90, 205, 0.02) 100%
  );
  z-index: 0;
}

.disaster-section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1e3a8a;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.disaster-section-subtitle {
  font-size: 1.4rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.disaster-content-wrapper {
  position: relative;
  z-index: 1;
}

.disaster-text-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #374151;
  text-align: justify;
  margin-bottom: 40px;
}

.disaster-highlight-box {
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  color: white;
  padding: 35px;
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
  position: relative;
  overflow: hidden;
}

.disaster-highlight-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  transform: rotate(45deg);
}

.disaster-highlight-text {
  font-size: 1.2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.disaster-image-showcase {
  position: relative;
  margin: 50px 0;
}

.disaster-main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.disaster-overlay-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  color: white;
  padding: 25px 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(30, 64, 175, 0.4);
  backdrop-filter: blur(10px);
}

.disaster-badge-number {
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.disaster-badge-label {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
}

.disaster-why-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
}

.disaster-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.disaster-stat-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid;
  transition: all 0.3s ease;
}

.disaster-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.disaster-stat-card:nth-child(1) {
  border-top-color: #dc2626;
}
.disaster-stat-card:nth-child(2) {
  border-top-color: #1e40af;
}
.disaster-stat-card:nth-child(3) {
  border-top-color: #059669;
}
.disaster-stat-card:nth-child(4) {
  border-top-color: #7c3aed;
}

.disaster-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1e293b;
  display: block;
  margin-bottom: 10px;
}

.disaster-stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.disaster-programs-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.disaster-service-card {
  background: white;
  border-radius: 28px;
  padding: 45px;
  margin-bottom: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 6px solid;
  position: relative;
  overflow: hidden;
}

.disaster-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.disaster-service-card:hover::before {
  left: 100%;
}

.disaster-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.disaster-service-card:nth-child(1) {
  border-top-color: #dc2626;
}
.disaster-service-card:nth-child(2) {
  border-top-color: #1e40af;
}
.disaster-service-card:nth-child(3) {
  border-top-color: #059669;
}

.disaster-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.disaster-card-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.disaster-card-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

.disaster-gallery-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
}

.disaster-gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.disaster-gallery-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.disaster-gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.disaster-gallery-frame:hover .disaster-gallery-image {
  transform: scale(1.15);
}

.disaster-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 25px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.disaster-gallery-frame:hover .disaster-gallery-overlay {
  transform: translateY(0);
}

.disaster-gallery-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.disaster-gallery-desc {
  font-size: 0.9rem;
  opacity: 0.9;
}

.decorative-disaster-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.decorative-disaster-element-left {
  top: 20%;
  left: -100px;
}

.decorative-disaster-element-right {
  bottom: 20%;
  right: -100px;
}

.floating-animation {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.disaster-impact-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

/*--------------------------------------------------------------
# Uplifting Community CSS page
--------------------------------------------------------------*/
.community-uplift-banner {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.community-uplift-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.uplift-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.uplift-main-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.uplift-tagline {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-style: italic;
  opacity: 0.95;
}

.uplift-description {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
}

.uplift-cta-button {
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  border: none;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
  transition: all 0.3s ease;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.4);
  }
  50% {
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.6);
  }
}

.uplift-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.6);
}

.community-why-section {
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  padding: 120px 0;
  position: relative;
}

.why-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-section-header {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.why-section-header::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  border-radius: 3px;
}

.why-narrative-text {
  font-size: 1.25rem;
  line-height: 2;
  color: #374151;
  text-align: justify;
  margin-bottom: 50px;
  padding: 0 20px;
}

.why-highlight-panel {
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  color: white;
  padding: 50px;
  border-radius: 30px;
  margin: 50px 0;
  box-shadow: 0 25px 50px rgba(30, 64, 175, 0.25);
  position: relative;
  overflow: hidden;
}

.why-highlight-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: rotateHighlight 15s linear infinite;
}

@keyframes rotateHighlight {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.why-highlight-content {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  line-height: 1.9;
}

.community-work-approach {
  background: linear-gradient(
    45deg,
    rgba(30, 144, 255, 0.02) 0%,
    rgba(106, 90, 205, 0.02) 100%
  );
  padding: 120px 0;
}

.work-section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 60px;
  text-align: center;
}

.work-methods-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.work-method-block {
  background: white;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
  border-left: 8px solid #3b82f6;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.work-method-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.05),
    transparent
  );
  transition: left 0.6s ease;
}

.work-method-block:hover::before {
  left: 100%;
}

.work-method-block:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.15);
}

.work-method-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 20px;
}

.work-method-details {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #64748b;
}

.grants-support-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.support-feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-top: 6px solid;
  transition: all 0.4s ease;
  position: relative;
}

.support-feature-card:nth-child(1) {
  border-top-color: #1e90ff;
}
.support-feature-card:nth-child(2) {
  border-top-color: #6a5acd;
}

.support-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(30, 144, 255, 0.12);
}

.support-card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #1e90ff, #1e40af);
  color: white;
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.3);
}

.support-feature-card:nth-child(2) .support-card-icon {
  background: linear-gradient(135deg, #6a5acd, #6366f1);
  box-shadow: 0 10px 25px rgba(106, 90, 205, 0.3);
}

.support-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 25px;
}

.support-card-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #6b7280;
}

.community-gallery-showcase {
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  padding: 120px 0;
  color: white;
}

.gallery-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-align: center;
  color: #ffffff;
}

.gallery-subtitle {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 80px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 60px;
}

.gallery-item-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  background: #ffffff;
}

.gallery-item-wrapper:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.gallery-main-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-wrapper:hover .gallery-main-image {
  transform: scale(1.2);
}

.gallery-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 35px 25px 25px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.gallery-item-wrapper:hover .gallery-info-overlay {
  transform: translateY(0);
}

.gallery-item-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.gallery-item-desc {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.floating-elements {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatMovement 8s ease-in-out infinite;
}

.floating-elements-1 {
  top: 10%;
  left: 5%;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.3), transparent);
  animation-delay: 0s;
}

.floating-elements-2 {
  bottom: 15%;
  right: 8%;
  background: radial-gradient(circle, rgba(106, 90, 205, 0.3), transparent);
  animation-delay: 2s;
}

.floating-elements-3 {
  top: 50%;
  right: 3%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.3), transparent);
  animation-delay: 4s;
}

@keyframes floatMovement {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(20px) rotate(240deg);
  }
}

@media (max-width: 768px) {
  .uplift-main-title {
    font-size: 2.8rem;
  }
  .uplift-tagline {
    font-size: 1.4rem;
  }
  .uplift-description {
    font-size: 1.1rem;
  }
  .why-section-header {
    font-size: 2.8rem;
  }
  .work-section-title {
    font-size: 2.8rem;
  }
  .gallery-main-title {
    font-size: 2.8rem;
  }
  .grants-support-section {
    grid-template-columns: 1fr;
  }
}
/*--------------------------------------------------------------
# Contact CSS page
--------------------------------------------------------------*/
.contact-hero-section {
  background: linear-gradient(
      135deg,
      rgba(30, 144, 255, 0.9) 0%,
      rgba(106, 90, 205, 0.9) 100%
    ),
    url("https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
      center/cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

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

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-main-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.contact-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(30, 144, 255, 0.02) 0%,
    rgba(106, 90, 205, 0.02) 100%
  );
  z-index: 0;
}

.contact-section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1e3a8a;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-section-subtitle {
  font-size: 1.4rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 60px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 5px solid;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.contact-info-card:nth-child(1) {
  border-top-color: #1e40af;
}
.contact-info-card:nth-child(2) {
  border-top-color: #7c3aed;
}
.contact-info-card:nth-child(3) {
  border-top-color: #dc2626;
}
.contact-info-card:nth-child(4) {
  border-top-color: #059669;
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  color: #1e40af;
}

.contact-card-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #475569;
}

.contact-detail-item i {
  width: 20px;
  margin-right: 12px;
  color: #1e40af;
}

.contact-detail-item a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: #1e40af;
}

.contact-form-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 100px 0;
  position: relative;
}

.contact-form-card {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.form-floating {
  margin-bottom: 25px;
}

.form-floating .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 15px;
  padding: 25px 20px 10px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.form-floating .form-control:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15);
}

.form-floating label {
  color: #64748b;
  font-weight: 500;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #1e40af 0%, #6366f1 100%);
  border: none;
  border-radius: 15px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.contact-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
  background: linear-gradient(135deg, #1e3a8a 0%, #5b21b6 100%);
}

.map-section {
  background: #ffffff;
  padding: 80px 0;
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 450px;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.decorative-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(30, 64, 175, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.decorative-element-left {
  top: 20%;
  left: -100px;
}

.decorative-element-right {
  bottom: 20%;
  right: -100px;
}

.floating-animation {
  animation: floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 768px) {
  .contact-section-title {
    font-size: 2.5rem;
  }

  .contact-form-card {
    padding: 30px;
  }

  .contact-info-card {
    padding: 30px;
  }
}

/*--------------------------------------------------------------
# Doantion CSS page
--------------------------------------------------------------*/
.donation-hero-section {
  /* Renamed from .disaster-hero-section */
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.donation-hero-section::before {
  /* Renamed from .disaster-hero-section */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.donation-hero-content {
  /* Renamed from .disaster-hero-content */
  position: relative;
  z-index: 2;
}
.donation-page-container {
  /* Renamed from .container */
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.donation-hero-section h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.donation-hero-section .donation-heart-icon {
  /* Renamed from .heart-icon */
  font-size: 4rem;
  color: #ff6b6b;
  margin-bottom: 20px;
  display: block;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.donation-content-section {
  /* Renamed from .section */
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.donation-content-section:hover {
  transform: translateY(-5px);
}

.donation-content-section h2 {
  color: #667eea;
  font-size: 2.2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.donation-content-section h2 i {
  color: #764ba2;
}

.donation-content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.donation-methods-grid {
  /* Renamed from .donation-methods */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.donation-method-card {
  /* Renamed from .donation-card */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.donation-method-card:hover {
  transform: scale(1.05);
}

.donation-method-card i {
  font-size: 3rem;
  margin-bottom: 20px;
}
.donation-method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.donation-qr-section {
  /* Renamed from .qr-section */
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  border-radius: 20px;
  margin: 40px 0;
}

.donation-qr-section h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.donation-qr-code-container {
  /* Renamed from .qr-code-container */
  background: white;
  padding: 30px;
  border-radius: 15px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donation-qr-code-placeholder {
  /* Renamed from .qr-code */
  width: 350px;
  height: 350px;
  background: #f5f5f5;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  margin-bottom: 15px;

  overflow: hidden;
}

.donation-qr-code-placeholder img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.donation-upi-id {
  font-family: monospace;
  font-size: 1.1rem;
  color: #333;
  background: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.donation-qr-message {
  color: white;
  margin-top: 20px;
  font-size: 1.1rem;
}
.donation-tax-benefit-banner {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}

.donation-tax-benefit-banner i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.donation-faq-section {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px;
}

.donation-faq-section h2 {
  color: #667eea;
  text-align: center;
  margin-bottom: 40px;
}

.donation-faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.donation-faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transition: all 0.3s ease;
}

.donation-faq-question:hover {
  opacity: 0.9;
}

.donation-faq-question.active {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.donation-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.donation-faq-answer.active {
  max-height: 200px; /* Adjust if content exceeds */
  padding: 20px;
}

.donation-impact-stats-grid {
  /* Renamed from .impact-stats */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.donation-stat-card {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 10px;
}

.donation-stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}

.donation-stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .donation-hero-section h1 {
    font-size: 2.5rem;
  }

  .donation-content-section {
    padding: 20px;
  }

  .donation-methods-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .donation-qr-code-placeholder {
    width: 250px;
    height: 250px;
  }

  .donation-qr-code-container {
    padding: 20px;
  }

  .donation-upi-id {
    font-size: 16px;
  }
}
