@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&display=swap");

/***** General CSS *****/

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

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

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

span.txt-color {
  color: #b91c1c;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 50px auto;
  text-align: center;
  width: 60%;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

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

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

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

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

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

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 50px;
  padding: 1px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #0000004a;
  border: 1px solid #0000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  box-shadow: 0 0 0 0 #0000;
  border: 1px solid #0000005c;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  line-height: 1;
  font-family: "Rajdhani";
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background-color: #b91c1c;
  padding: 0 20px;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-txt {
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 18px;
}

.theme2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 1px;
  border-radius: 5px;
  overflow: hidden;
  /* box-shadow: 0 0 20px 0 #0000004a; */
  border: 1px solid #ffffff38;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  box-shadow: 0 0 0 0 #0000;
  border: 1px solid #0000005c;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 14px;
  line-height: 1;
  font-family: "Rajdhani";
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  padding: 0 20px;
  /* border-radius: 5px 0 0 5px; */
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-txt {
  color: #000;
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 60px;
  line-height: 65px;
  color: #fff;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 50px;
  line-height: 55px;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}

h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* Header Css Starts */

header {
  padding: 20px 0;
  background-color: #b91c1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.topSec {
  width: 100%;
}

.topSec-links {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  height: 30px;
  position: relative;
}

/* .topSec-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  height: 100%;
  border-right: 1px solid #ffffff4f;
} */

.topSec-links ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  height: 100%;
}

.topSec-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat";
  color: #fff;
}

.topSec-socials-main {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}

.socials ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #ffffff4f;
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a:hover {
  border: 1px solid #0000;
  background-color: #ffff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.socials ul li a:focus {
  border: 1px solid #0000;
  background-color: #ffff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.socials ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #ffffff4f;
  transition: ease-in;
  transition-duration: 0.5s;
}

.socials ul li a:hover i {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.socials ul li a:focus i {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menuSec {
  padding: 0px 0;
  width: 100%;
}

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  height: 40px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 100%;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  font-family: "Rajdhani";
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  z-index: 0;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  /* transition-delay: 0.5s; */
}

.menu-box ul li a:hover {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* .menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #ff8040;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
} */

/* .menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
} */

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  width: 100%;
  transition: ease-out;
  /* transition-delay: 0.5s; */
  transition-duration: 0.5s;
}

.menu-box ul li.active a {
  color: #fff;
}

.menu-box ul li.active a::after {
  width: 100%;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-logo {
  /* display: inline-flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* height: 50px; */
  /* width: 70%; */
  width: 120px;
  height: 120px;
}

.header-logo a {
  display: inline-flex;
  /* align-items: center; */
  /* justify-content: center; */
  /* height: 100%; */
  /* width: 100%; */
}

.header-logo a img {
  /* display: inline-flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* height: 100%; */
  /* width: 100%; */
  /* object-fit: contain; */
}

.header-btn-main {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Header Css Ends */

/* Banner Css Starts */

section.main_slider {
  position: relative;
}

section.main_slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 85vw;
  background-color: #fff;
  height: 100px;
  z-index: 1;
  border-radius: 0 5px 0 0;
}

section.main_slider .carousel-item {
  height: 100vh;
}

.banner_text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  position: relative;
  z-index: 9;
}

.banner-header {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.banner_text h6 {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
}

.banner_text p {
  color: #fff;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}

.main-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators {
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.scroll-main a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 14%;
  gap: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.scroll-main a h6 {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}

.scroll-main a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid #ffffff38;
  color: #fff;
}

/* Banner Css Ends */

/* Inner Banner Css Starts */

section.inner-banner-sec .carousel-item {
  height: 30vh;
}

section.inner-banner-sec::before {
  background: #000 !important;
}

section.inner-banner-sec .main-banner-img {
  display: none;
}

.home-baner-image {
  position: relative;
  z-index: 1;
  background: #000;
  height: 100%;
}

.home-baner-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 35%,
    rgb(0 0 0 / 0%) 100%
  );
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}

section.inner-banner-sec .main-banner-img {
  object-fit: cover;
  object-position: right;
}

section.main_slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.83) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Inner Banner Css Ends */

/* About Us Sec Css Starts */
/* Mission Content */
.mission-content h3 {
  font-size: 36px;
  text-transform: capitalize;
  margin: 30px 0 13px;
}
/* Mission Content */

section.about-sec .row {
  position: relative;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.about-img img.about-pj-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #b91c1c;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 80%;
  object-fit: cover;
}

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 30px 20px 10px 50px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  top: 0;
  right: auto;
  width: 55%;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.about-header h2 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.about-header h2 span.about-header-txt {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  padding: 0 100px 0 0;
}

.about-header h2 span.about-header-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 35%;
  border-bottom: 2px solid #b91c1c;
}

/* About Us Sec Css Ends */

/* Service Sec Css Starts */

section.service-sec {
  background-image: url("../images/service-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.service_slider .slick-active {
  opacity: 1;
}

.service-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px 0;
}

.service-heading-title {
  width: 75%;
}

.service-heading-title h2 {
  color: #fff;
}

.service-heading-txt {
  width: 45%;
}

.service-heading-txt p {
  color: #fff;
}

.service-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  /* background-color: #fff; */
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-card-main:hover {
  border-radius: 10px;
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-img-main {
  width: 100%;
}

.service-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
}

.service-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  scale: 1;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-card-main:hover .service-card-img img {
  scale: 1.1;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 20px 0 0 0;
  height: 320px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-card-main:hover .service-card-txt-main {
  padding: 20px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-top {
  position: relative;
  padding: 0 0 0 30px;
}

.service-card-top::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  height: 10px;
  width: 10px;
  background-color: #fff;
  border-radius: 100px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-card-main:hover .service-card-top::before {
  background-color: #b91c1c;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-top h5 {
  color: #fff;
  font-size: 14px;
  line-height: 25px;
}

.service-card-main:hover .service-card-top h5 {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-heading {
  position: relative;
  padding: 0 0 15px 0;
}

.service-card-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ffffff40;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-card-main:hover .service-card-heading::before {
  border-bottom: 1px solid #00000040;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-heading h2 {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.service-card-main:hover .service-card-heading h2 {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.service-card-txt p {
  color: #fff;
}

.service-card-main:hover .service-card-txt p {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Service Sec Css Ends */

/* Work Sec Css Starts */

section.work-sec {
  padding: 100px 0 0 0;
}

.work-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.work-txt ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.work-txt ul li {
  position: relative;
  padding: 0 0 0 20px;
}

.work-txt ul li p {
  font-family: "Rajdhani", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.work-txt ul li::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 0;
  height: 8px;
  width: 8px;
  background-color: #b91c1c;
  border-radius: 100px;
  overflow: hidden;
}

.work-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 100%;
  padding: 0 0 5px 0;
  background-color: #b91c1c;
  box-shadow: 0 0 20px 10px #00000030;
}

.work-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Work Sec Css Ends */

/* Join Sec Css Starts */

section.join-sec {
  padding: 100px 0 80px 0;
}

section.join-sec .row {
  position: relative;
}

section.join-sec .row::before {
  content: "";
  position: absolute;
  height: 640px;
  width: 51%;
  top: -20%;
  left: 0;
  background-color: #b91c1c;
  box-shadow: 0 0 20px 10px #00000030;
}

.join-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.join-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  width: 95%;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 9;
}

.join-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Join Sec Css Ends */

/* Testidonate Sec Css Strts */

section.testidonate-sec {
  background-image: url("../images/service-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.donation-form-main {
  background: #fff;
  border-radius: 10px;
  padding: 34px 34px 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.donation-form-txt h2 {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.donation-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 40px 30px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 #00000040;
  border-radius: 5px;
  overflow: hidden;
}

.donation-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.donation-block-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #111;
}

.donation-options {
  display: grid;
  gap: 12px;
}

.donation-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  cursor: pointer;
  background: #fff;
  transition: 0.2s ease;
  height: 70px;
}

.donation-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation-amount {
  font-size: 23px;
  font-weight: 900;
  color: #111;
  font-family: "Rajdhani";
}

.donation-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.4;
  font-family: "Montserrat";
  font-weight: 500;
}

.donation-radio {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #fff;
  display: inline-block;
  position: relative;
  background: transparent;
}

.donation-option span.donation-radio {
  border-color: #c9c9c9;
}

.donation-option.is-active .donation-radio {
  border-color: rgba(255, 255, 255, 0.9);
}

.donation-option.is-active {
  background: #b7161b;
  border-color: #b7161b;
}

.donation-option.is-active .donation-amount,
.donation-option.is-active .donation-desc {
  color: #fff;
}

.donation-option.is-active .donation-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #fff;
}

/* Custom link + input */

.donation-custom-link {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: underline;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}

.donation-custom-wrap {
  display: none;
}

.donation-custom-wrap.is-open {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.donation-custom-label {
  display: block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #111;
  font-family: "Rajdhani";
}

.donation-custom-input {
  display: grid;
  grid-template-columns: 34px 1fr;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.donation-currency {
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #111;
  background: #f6f6f6;
}

.donation-custom-input input {
  border: 0;
  outline: 0;
  padding: 12px 12px;
  font-weight: 700;
}

/* Frequency */

.donation-frequency {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  background-color: #b7161b;
  padding: 3px;
  border-radius: 5px;
  overflow: hidden;
}

.donation-freq-option {
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #b7161b;
  background: #b7161b;
  transition: 0.2s ease;
}

.donation-freq-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation-freq-inner {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.donation-freq-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  color: #fff;
  text-transform: uppercase;
}

/* Selected frequency */

.donation-freq-option.is-active {
  background: #b7161b;
  background-color: #fff;
}

.donation-freq-option.is-active .donation-freq-text {
  color: #000;
}

.donation-freq-option.is-active .donation-radio {
  border-color: #c9c9c9;
}

.donation-freq-option.is-active .donation-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #000;
}

/* Donate button (class names updated if you use them) */

.donation-submit {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 74px;
  border: 0;
  padding: 0;
  width: 260px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.donation-submit-left {
  background: #b7161b;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 14px 18px;
  text-align: left;
}

.donation-submit-right {
  background: #fff;
  color: #111;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.testidonate-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  margin: 0 0 50px 0;
}

.testidonate-heading h5 {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 6px;
}

.testidonate-heading h2 {
  color: #fff;
}

.testi-card-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 40px;
  background-color: #fff;
  /* margin: 20px 0; */
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi-card-user {
  position: relative;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.testi-card-user-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  border-radius: 100px;
  overflow: hidden;
}

.testi-card-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testi-card-user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  object-fit: contain;
  padding: 7px;
  background-color: #b7161b;
  border-radius: 100px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}

.testi-card-txt-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.testi_slider .slick-active {
  opacity: 1;
}

.testi_slider .slick-slide {
  margin: 20px 0;
}

.testi-card-user-txt {
  position: relative;
  padding: 10px 0 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
  width: 100%;
}

.testi-card-user-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3px;
  background-color: #b91c1c;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi-card-main:hover .testi-card-user-txt::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi-card-user-txt h5 {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  color: #b7161b;
  font-weight: 700;
  position: relative;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi-card-main:hover .testi-card-user-txt h5 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi-card-user-txt h6 {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1;
  color: #b7161b;
  font-weight: 700;
  position: relative;
  z-index: 9;
}

.testi-card-main:hover .testi-card-user-txt h6 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi_slider button.slick-next,
.testi_slider button.slick-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 100px;
  /* overflow: hidden; */
  border: 1px solid #ffffff38;
  right: -15%;
  left: unset;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi_slider button.slick-next:hover,
.testi_slider button.slick-prev:hover {
  border: 1px solid #0000;
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi_slider button.slick-next {
  top: 40%;
}

.testi_slider button.slick-prev {
  top: 60%;
}

.testi_slider .slick-next:before {
  content: "\f077";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "FontAwesome";
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi_slider button.slick-next:hover::before {
  background-color: #b7161bc7;
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi_slider .slick-next::after {
  content: "";
  height: 60px;
  border-right: 1px solid #ffffff3d;
  position: absolute;
  top: -80px;
}

.testi_slider .slick-prev:before {
  content: "\f078";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "FontAwesome";
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi_slider button.slick-prev:hover::before {
  background-color: #b7161bc7;
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi_slider .slick-prev::after {
  content: "";
  height: 60px;
  border-right: 1px solid #ffffff3d;
  position: absolute;
  bottom: -80px;
}

/* Testidonate Sec Css Ends */

/*Resources Sec Css Starts*/

section.quote-sec {
  position: relative;
  background-image: url("../images/quote-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0 0 0;
}

section.quote-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 53%;
  height: 60%;
  border-right: 1px solid #ffffff2e;
}

.quote-form {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}

.quote-input {
  width: 100%;
}

.quote-input input,
.quote-select select,
.quote-input textarea {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  height: 50px;
  border: 1px solid #00000024;
  border-radius: 5px;
  overflow: hidden !important;
  padding: 0 20px;
  margin: 0 0 20px 0;
  font-size: 13px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  cursor: pointer;
  position: relative;
  z-index: 9;
  background-color: #0000;
}

.quote-input input::placeholder,
.quote-select select::placeholder,
.quote-input textarea::placeholder {
  font-size: 13px;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  text-transform: uppercase;
  font-weight: 500 !important;
}

.quote-input textarea::placeholder {
  position: absolute;
  bottom: 10%;
  left: 3%;
}

.quote-select-main {
  position: relative;
}

.quote-select-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 30%;
  right: 5%;
}

.quote-input textarea {
  resize: none;
  height: 200px;
  padding: 20px;
}

.quote-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.quote-heading h2 {
  color: #fff;
}

.quote-txt p {
  color: #fff;
  opacity: 1;
}

.quote-list ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.quote-list ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.quote-list ul li a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.quote-list ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 2px solid #fff;
  border-radius: 100px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.quote-list ul li a:hover i {
  background-color: #fff;
  color: #b91c1c;
  border: 2px solid #0000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.quote-list ul li a p {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

/*Quote Sec Css Ends*/

/* Blog Dec Starts */

section.blog-sec {
  position: relative;
}

.latest_blog_sec {
  padding: 80px 0;
}

.blog_card {
  margin: 30px 0;
}

.blog_image {
  position: relative;
  transition: ease-in-out;
  transition-duration: 0.5s;
}

.blog_image img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  height: 444px;
}

.blog_text .admin ul {
  gap: 20px;
  display: flex;
  align-items: center;
}

.blog_text .admin ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog_text .admin ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog_text .admin ul li a i {
  color: #b91c1c;
}

.blog_text .admin ul li a p {
  color: #2d2d2d;
  font-weight: 600;
  margin: 0;
}

.blog_text {
  border-radius: 10px;
  position: absolute;
  background-color: white;
  width: 90%;
  /* height: 310px; */
  bottom: 0;
  padding: 40px 15px 20px 0;
  border-top-left-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.blog_text h4 {
  font-family: "Montserrat", serif;
  font-size: 20px;
  line-height: 25px;
  transition: ease-in-out;
  transition-duration: 0.5s;
}

.blog_image:hover .blog_text h4 {
  color: #b91c1c;
  transition: ease-in-out;
  transition-duration: 0.5s;
}

.blog_slider .slick-slide,
.blog_slider .slick-active {
  opacity: 1;
  outline: none;
}

/* Blog Dec Ends */

/* Footer Section Start */

.footerSec {
  background-color: #141415;
  padding: 80px 0 0px 0px;
}
.footer-logo img {
  width: 200px;
}
.footerSec p {
  color: #fff;
  margin-top: 0;
  line-height: 25px;
  font-size: 14px;
  text-align: justify;
  margin-bottom: 0;
  font-family: "Montserrat";
}

.foot-links h5 {
  color: #fff;
  text-transform: uppercase;
  font-family: "Rajdhani";
  font-weight: 700;
  position: relative;
  font-size: 18px;
  padding: 0 0 5px 0;
  margin: 0 0 20px 0;
  font-family: "Rajdhani", sans-serif;
}

.foot-links h5:after {
  content: "";
  position: absolute;
  width: 119px;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: 1s ease-in-out;
  background-color: #ffffff42;
}

ul.f-nav li a {
  font-size: 14px;
  color: #fff;
  line-height: 34px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
}

ul.f-contact li a {
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 300;
  color: #fff;
}

ul.f-contact li {
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 300;
  color: #fff;
  line-height: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
}

ul.f-contact li i {
  font-size: 16px;
  /* margin: 0 10px 0 0; */
  font-weight: 600;
}

.f-input input {
  border: none;
  width: 100%;
  height: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0 20px;
  border-radius: 5px;
  color: #fff;
  background-color: unset;
  border: 1px solid #fff;
}

.f-input input::placeholder {
  color: #fff;
}

.footer-contact ul {
  display: flex;
  margin-top: 20px;
  gap: 10px;
}

.footer-contact ul li:hover i {
  animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  background: #0b1e2f;
  box-shadow: 0 0 8px 4px #78b921;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.footer-contact ul li i {
  background-color: #adc941;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 0;
  transition: 0.5s ease-in-out;
}

.copy-txt p {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
}

.footer-btm .container {
  margin-top: 70px;
  padding: 20px 0;
  /* background-image: -webkit-linear-gradient( 90deg, rgb(1, 103, 1) 0%, rgb(44, 152, 14) 100%); */
  margin: 50px auto 0;
  z-index: 1;
  position: relative;
  border-radius: 5px;
}

ul.f-contact li a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px;
}

.footer-logo {
  /* margin-bottom: 30px; */
}

.footer-contact {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

ul.f-contact {
  width: 90%;
}

ul.f-nav li {
  position: relative;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

ul.f-nav li:hover {
  padding: 0 0 0 10px;
  transition: ease-out;
  transition-duration: 0.5s;
}

ul.f-nav li:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #b91c1c;
  transition: 0.5s ease-in-out;
}

ul.f-nav li:hover:after {
  width: 100%;
}

.foot-links:hover h5:after {
  width: 100%;
}

.footer-btm {
  position: relative;
  z-index: 1;
  background-color: #b91c1c;
}

.footer-btm:after {
  position: absolute;
  /* content: ""; */
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0;
  bottom: 50%;
  z-index: -1;
}

/* Footer Section End */

/* About Us Page Css Starts */

section.in-testidonate-sec {
  background-image: none;
}

section.in-testidonate-sec .testidonate-heading {
  align-items: center;
  justify-content: center;
  width: 100%;
}

section.in-testidonate-sec .testidonate-heading h2 {
  color: #000;
}

.in_testi_slider .slick-active,
.in_testi_slider .slick-slide {
  opacity: 1;
}

section.in-testidonate-sec .testi-card-main {
  box-shadow: 0 0 20px 0 #00000029;
  margin: 20px 0;
}

section.in-testidonate-sec .testi-box {
  width: 95%;
  margin: 0 0 0 auto;
}

.in_testi_slider .draggable {
  padding: 0 300px 0 0 !important;
}

section.in-work-sec {
  padding: 80px 0;
}

/* About Us Page Css End */

/* Service Page Css Starts */

section.in-service-sec {
  background-image: none;
}

section.in-service-sec .service-card-top::before {
  background-color: #b91c1c;
}

section.in-service-sec .service-card-top h5 {
  color: #000;
}

section.in-service-sec .service-card-heading h2 {
  color: #000;
}

section.in-service-sec .service-card-txt p {
  color: #000;
}

section.in-service-sec .service-card-main {
  margin: 20px 0;
}

section.in-service-sec .service-card-main:hover {
  box-shadow: 0 0 20px 0 #00000036;
  margin: 20px 0;
}

section.in-service-sec .service-card-heading::before {
  border-bottom: 1px solid #00000040;
}

/* Service Page Css End */

/* Service Detail Page Css Starts */

section.in-service-detail .about-header h2 span.about-header-txt::before {
  display: none;
}

section.in-service-detail .about-txt-bottom {
  margin: 50px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

/* Service Detail Page Css End */

/* Projects Page Css Starts */

/* Section spacing */

.gallery-sec {
  padding: 80px 0 80px 0;
  background: #ffffff;
}

/* Heading */

.projects-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.projects-heading p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a9a;
}

/* Map area */

.projects-map-main {
  margin-top: 30px;
}

.map-wrap {
  position: relative;
}

.projects-map-tooltip .t-count {
  margin-top: 6px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.projects-map {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  /* ✅ needed for tooltip positioning */
}

/* Make SVG responsive */

.projects-map svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Default country style */

.projects-map path {
  fill: #ededed;
  stroke: #ffffff;
  stroke-width: 0.6;
  transition: fill 0.12s linear;
}

/* Hover ONLY if allowed */

.projects-map path.hoverable {
  cursor: pointer;
}

.projects-map path.hoverable:hover {
  fill: #565656;
}

/* Countries with projects */

.projects-map path.has-projects {
  fill: #cbcbcb;
}

.projects-map path.has-projects.hoverable:hover {
  fill: #b31217;
}

/* =========================
   Custom Tooltip
========================= */

.projects-map-tooltip {
  position: absolute;
  z-index: 9999;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 12px 14px;
  pointer-events: none;
  display: none;
  opacity: 0;
}

.projects-map-tooltip .t-title {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: #111;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
}

.projects-map-tooltip .t-row {
  margin-top: 8px;
  display: flex;
  /* ✅ JS toggles this on/off */
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: #666;
}

.projects-map-tooltip .t-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.projects-map-tooltip .t-val {
  font-weight: 800;
  color: #2b0f12;
}

/* Dot */

.map-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b31217;
}

.projects-map-tooltip {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
  height: auto;
  /* ✅ avoid clipping */
  overflow: visible;
  /* ✅ avoid clipping */
}

.projects-map-tooltip .t-count {
  position: relative;
  font-size: 20px;
  line-height: 25px;
  font-weight: 600;
  margin: 0;
  color: #000;
  font-family: "Rajdhani", sans-serif;
  padding: 0 0 0 15px;
}

.projects-map-tooltip .t-count::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  background-color: #b31217;
  border-radius: 100px;
  height: 8px;
  width: 8px;
}

/* wrapper */

.ct-table-wrap {
  border-radius: 6px;
}

/* table base */

.ct-table {
  width: 100%;
  border-collapse: separate;
  /* important for row gaps */
  border-spacing: 0 5px;
  /* spacing between rows like cards */
  min-width: 760px;
  /* keeps layout stable on responsive */
}

/* header */

.ct-table thead th {
  background: #b51212;
  /* red header */
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 14px 22px;
  border: 0;
}

.ct-table thead th:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.ct-table thead th:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* body cells (card style) */

.ct-table tbody td {
  /* background: #fff; */
  padding: 22px 22px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  font-size: 16px;
  color: #333;
  /* vertical-align: middle; */
  font-weight: 700;
  font-family: cursive;
  font-family: "Rajdhani", sans-serif;
}

/* left/right borders so the row looks like one card */

.ct-table tbody td:first-child {
  border-left: 1px solid #efefef;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.ct-table tbody td:last-child {
  border-right: 1px solid #efefef;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* subtle “card” shadow feel */

.ct-table tbody tr td {
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.03); */
}

/* alignment helpers */

.ct-center {
  text-align: center;
}

/* country + visits emphasis */

.ct-country {
  text-transform: uppercase;
  font-weight: 700;
  color: #2f2f2f;
}

.ct-visits {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.map-table table tbody tr {
  transition: ease-in;
  transition-duration: 0.5s;
}

.map-table table tbody tr:hover {
  background-color: #e6e6e6;
  transition: ease-out;
  transition-duration: 0.5s;
}

.map-table {
  margin: 100px 0;
}

/* Projects Page Css End */

/* Contact Us Page Css Starts */

.contact_detail_box h2 {
  font-size: 19px;
  line-height: 1;
  color: #fff !important;
  font-weight: 400;
  /* margin: 30px 0 10px 0; */
}

.contact_detail_box p a {
  font-size: 14px;
  line-height: 24px;
  color: #fff !important;
  margin: 0;
  font-family: "Poppins";
  letter-spacing: 1px;
}

.contact_detail_box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 50px 20px;
  background-color: #000;
  border-radius: 5px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.contact_detail_box:hover {
  background: #b91c1c;
  color: white;
  transition: ease-out;
  transition-duration: 0.5s;
}

.contact_form {
  padding-bottom: 80px;
}

.contact_form label {
  font-size: 14px;
  font-weight: 400;
  color: #5d5d5d;
  margin-bottom: 10px;
  font-family: roboto;
}

.btn_contact {
  border: 0;
  right: 0;
  background-color: #00007c;
  color: #fff;
  padding: 10px 40px;
  border: 2px solid #00007c;
  transition: 0.3s ease-in-out;
}

.btn_contact:hover {
  border: 0;
  right: 0;
  background-color: #fff0;
  color: #00007c;
  padding: 10px 40px;
  border: 2px solid #00007c;
}

.centerCol {
  margin: 0 auto;
  float: none;
}

.contact-sec-h h6 {
  font-size: 70px;
  line-height: 60px;
  color: white;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-sec-h p {
  font-size: 14px;
  width: 85%;
  margin: auto;
  font-weight: 500;
}

.contact_page.all-section {
  padding: 100px 0 80px 0;
}

.contact_form {
}

.btn_wrap.text-center button {
  border: none;
  background: #ffac1c;
  padding: 15px 71px;
  font-family: "Montserrat";
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}

.contact_detail_con {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.btn_wrap.text-center button::before {
  background: #000;
  height: 0;
}

.contact_detail_box p {
  /* margin-bottom: 0; */
  /* margin: 0 auto; */
  /* width: 82%; */
  font-weight: 400;
  color: #fff;
  opacity: 1;
}

figure img {
  width: 50px;
}

section.contact_form button.theme_btn.theme_btn2 {
  padding: 15px 45px;
  background: #333333;
  text-transform: uppercase;
}

input.form-control,
textarea.form-control {
  height: 50px;
  padding: 0 20px;
  margin: 0 0 20px 0;
  color: #000;
  font-size: 14px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 500;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
  font-size: 12px;
  line-height: 1;
  font-family: "Montserrat";
  font-weight: 500;
  text-transform: uppercase;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

textarea.form-control::placeholder {
  position: absolute;
  bottom: 16%;
  left: 2%;
}

.request-form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

.number-item input::-webkit-outer-spin-button,
.number-item input::-webkit-inner-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}

.contact_detail_box.text-center * {
  color: white;
}

.contact_detail_head {
  width: 90%;
  border-bottom: 1px solid #ffffff33;
  padding: 0 0 5px 0;
}

.contact_detail_box:hover h2 {
  color: white !important;
}

.contact_detail_box:hover p {
  color: #fff;
}

.contact_detail_box:hover a {
  color: #fff !important;
}

.btn_wrap.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Contact Us Page Css Ens */

/*Donate Page Css Starts*/

.donate-form-txt {
  display: inline-flex;
  position: relative;
  padding: 0 0 5px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.donate-form-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #000;
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.donate-form-ex:hover .donate-form-txt::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.donate-form-txt h6 {
  font-size: 20px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  color: #000000b3;
}

.donate-form-check-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.donate-top {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 150px;
}

.donate-bottom {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 139px;
}

.donate-form-check label {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  cursor: pointer;
}

.donate-form-check label span {
  font-size: 20px;
  line-height: 25px;
  color: #666666;
}

.donate-check-txt {
  width: 100%;
  position: relative;
}

.donate-check-txt input,
.donate-check-txt select,
.donate-check-txt textarea {
  width: 100%;
  padding: 0 10px;
  border: 1px solid #00000042;
  height: 45px;
  border-radius: 5px;
  background-color: #0000;
  position: relative;
  z-index: 9;
  outline: none;
}

.donate-check-txt input:focus,
.donate-check-txt select:focus,
.donate-check-txt textarea:focus {
  background-color: #b91c1c;
  color: #fff;
}

.donate-check-txt textarea {
  padding: 20px;
  height: 150px;
  resize: none;
}

.donate-check-txt select {
  cursor: pointer;
}

.donate-check-txt input::placeholder {
  font-size: 15px;
  line-height: 20px;
  color: #9f9e9e;
  font-family: "Montserrat";
}

.donate-check-txt input:focus::placeholder,
.donate-check-txt select:focus::placeholder,
.donate-check-txt textarea:focus::placeholder {
  color: #fff;
}

.donate-check-txt input[type="date"]::-webkit-inner-spin-button,
.donate-check-txt input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.donate-check-txt .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  color: #000;
}

.donate-form-check-ex {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.donate-form-space {
  margin: 50px 0 0 0;
}

.donate-right p,
.donate-form-check-bototm p {
  font-size: 15px;
  color: #9f9e9e;
  line-height: 20px;
}

.donate-check-txt i {
  position: absolute;
  top: 40%;
  right: 2%;
  font-size: 13px;
  color: #7b7b7b;
}

.card-form-txt h6 {
  font-size: 40px;
  line-height: 45px;
  color: #000;
  text-transform: uppercase;
  font-family: "Rajdhani";
}

.donate-form-card-main input {
  margin: 10px 0;
}

.donate-check-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0 0;
}

.cart_sidebar ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 147px;
}

.cart_sidebar ul li label {
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  color: #666666;
}

.cart_sidebar ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.cart_sidebar .radiosss-payments li label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #f3f3f2;
  border: 1px solid #b7b7b775;
  box-shadow:
    0 1px 2px rgb(0 0 0 / 5%),
    inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  border-radius: 20px;
  left: 6px;
  border: 0;
  width: 10px;
  height: 10px;
  background-color: #b91c1c;
}

.radiosss-payments .card.card-body {
  padding: 0;
  border: 0;
  margin-left: 30px;
  background: none;
}

/*Donate Page Css Ends*/

/* Project Page */

.project_page {
  padding: 100px 0;
}

.project-images a,
.project-images img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.project-images {
  margin: 12px 0;
}

/* Project Page */

/* New Project  */
.present_future-page {
  padding: 0 0 100px 0;
}

.pnf_project-box {
  text-align: center;
  border: 1px solid #666;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transform: scale(0.96);
  transition: 0.5s all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pnf_project-icon i {
  width: 100px;
  height: 100px;
  font-size: 40px;
  border: 1px solid #b91c1c;
  border-radius: 100px;
  display: grid;
  place-content: center;
  margin: 0 auto 30px;
  color: #fff;
  transition: 0.5s all;
  background: #b91c1c;
}

.pnf_project-box:hover .pnf_project-icon i {
  background: #fff;
  color: #b91c1c;
  border-color: #fff;
}

.pnf_project-dscrp p {
  font-size: 16px;
  line-height: 26px;
}

.pnf_project-box:hover {
  background: #b91c1c;
  transform: scale(1);
}

.pnf_project-box:hover p {
  color: #fff;
}

.pavilian-sec {
  padding: 80px 0 0 0;
}
.pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 16px;
  line-height: 1;
  font-family: "Rajdhani";
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  background-color: #b91c1c;
  padding: 15px 20px;
  border-radius: 5px 0 0 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  border-radius: 8px;
  margin: 0;
  border: 2px solid #fff;
  gap: 10px;
}
.pdf-btn:hover {
  color: #fff;
}
.pavilian-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: 0 -90px;
  border-radius: 12px;
}

.pavilian-text p {
  line-height: 30px;
  margin: 20px 0;
}

.pavilian-sec .row {
  align-items: center;
}

/* New Project  */
.who-we-are-sec .work-img {
  height: 500px;
  object-position: top !important;
}

.who-we-are-sec .work-img img {
  object-position: top;
}

.send-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.send-with-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: left;
  gap: 40px;
  margin: 20px 0;
  text-align: center;
}

.qr-code-img {
  width: 25%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.send-with-main a {
  font-family: "Montserrat";
  font-size: 20px;
  text-decoration: underline;
  color: #000;
  position: relative;
}
.send-with-main a span {
  font-size: 13px;
  position: absolute;
  right: -10px;
  top: -9px;
}
.loader_wrp {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: #ffffff;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;

  transition: all 1s ease;

  flex-direction: column;

  gap: 5px;
}
.loader-video {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
