/* @import url('https://fonts.googleapis.com/css2?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&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
  box-sizing: border-box;
  font-family: "Josefin Sans", sans-serif;
}

:root {
  --clr-primary: #0C7047;
  --clr-primary-hover: #05613b;
  --clr-dark: #111;
  --clr-white: #fff;
  --clr-lightGray: #F7F7F7;
  --clr-light-primary: #E6F0EC;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  color: var(--clr-dark);
  font-weight: 300;
}

.bg-color {
  background-color: #E6F0EC;
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary-hover);
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.logo-header img {
  width: 100px;
}
img {
  max-width: 100%;
}

/* Button */

.ThemeBtn {
  border: 0;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  background: var(--clr-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: 0.5px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  min-width: fit-content;
  border-radius: 10px;
}

.ThemeBtn:before {
  position: absolute;
  content: '';
  height: 90px;
  width: 400px;
  background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0)0%, rgba(255, 255, 255, 0.2)50%, transparent 50%);
  top: 0;
  bottom: 0;
  transform: skew(-45deg);
  left: -450px;
  transition: all 1s ease-in-out;
}

.ThemeBtn:hover::before {
  left: 450px;
}

.ThemeBtn:hover {
  background: var(--clr-primary-hover);
  color: var(--clr-white);
}

/* Button end */

/* header */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
  transform: translateY(0);
  /*background: rgb(255 255 255 / 60%);
  backdrop-filter: blur(10px);*/
}

/* .hide-nav {
  transform: translateY(-120%) !important;
  -webkit-transform: translateY(-120%) !important;
} */

.header-nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 30px;
}

header .navbar {
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}
.navbar-nav {
  gap: 60px;
  align-items: center;
}
li.nav-item a span {
  position: relative;
  top: 2px;
}
.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  width: 110px;
  transition: all 0.3s ease-in-out;
}

.navigation-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
}

.navbar-nav .nav-link {
  padding: 15px 0 !important;
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-dark);
  position: relative;
  text-transform: uppercase;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
  color: var(--clr-primary);
  transition: 0.3s;
}
.mega-menu.dropdown-menu {
  transition-duration: 0s!important; /* Disable transition */
}
.contact-links-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sticky-header {
  background: #111;
  box-shadow: 0 0 10px rgb(0 0 0 / 30%);
  color: #fff;
}

.sticky-header .navbar {
  padding: 10px 0;
}

.sticky-header .navbar-brand img {
  width: 90px;
}



.sticky-header .navbar-nav .nav-link:hover {
  color: var(--clr-primary-hover);
}

/* header end */


main {
  overflow: hidden;
}


/* scroll top */

#scrollTotop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 25px;
  right: -50px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--clr-green);
  z-index: 99;
  box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
  transition: all 0.3s ease-in-out;
  border: 0;
  outline: none;
}

#scrollTotop.showscroll {
  right: 25px;
}

.ScrollArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ScrollArrow i {
  font-size: 20px;
  color: var(--clr-white);
}

/* scroll top */

.form-control {
  min-height: 44px;
  border-radius: 0;
  background: #E6F0EC;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--clr-primary);
}

.form-group label {
  font-weight: 500;
  margin-bottom: 10px;
}

.custom-space {
  padding: 80px 0;
}

/* Section Title  */

.SecHead {
  margin: 0 0 10px;
}

.SecHead-Title {
  position: relative;
}

.TitleDivider {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  top: -20px;
}

.TitleDivider:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 2px;
  border-image-source: linear-gradient(90deg, rgba(12, 112, 71, 0.20) 0%, rgba(12, 112, 71, 0.00) 100%);
  top: 10px;
}

.SecHead-Title h2 {
  color: var(--clr-primary);
  /* text-shadow: 2px 0px 0px rgb(255 255 255 / 81%); */
  font-size: 50px;
  font-weight: 500;
  line-height: normal;
/*  text-transform: uppercase;*/
  margin: 0 0 15px;
}

.SecHead-Title h2 b {
  color: var(--clr-dark);
  font-weight: bold;
}

.SecHead h4 {
  font-size: 30px;
  margin: 0 0 15px;
  /* text-shadow: 2px 0px 0px rgb(255 255 255 / 81%); */
}


/* Section Title end */


/* Footer-Css */

footer {
  background-color: #111;
  color: #fff;
}

.about-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.about-footer p {
  margin: 0px;
}


.footer-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-info p {
  margin: 0;
}

.footer-info h5 {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav li a {
  color: #fff;
  font-size: 13px;
}

.copyright p {
  margin: 0px;
  font-size: 14px;
  font-weight: 400;
}
.all-content-ft {
  font-size: 12px!important;
  padding: 5px 0px 0px 0px;
}
.copyright {
  padding: 20px 0;
  text-align: center;
  
}

.instagram {
  padding: 5px 10px 15px;
}

.instagram a:before {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  background: #0c7047;
  z-index: -1;
  left: -5px;
  top: -9px;
  border-radius: 100%;
}

.instagram a {
  position: relative;
  z-index: 1;
}

.instagram img {
  filter: drop-shadow(2px 4px 6px black);
}



/* verify-input-css */

.verify-inputbox {
  position: relative;
  overflow: hidden;
}

.verify-inputbox button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 11px 20px;
}


.WelcomeModal {
  background: rgba(17, 17, 17, 0.6);
}


.accordion-button:not(.collapsed) {
  color: var(--clr-primary);
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none !important;
}

/* .accordion-button:not(.collapsed)::after {

} */

.success-modal {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.modal-content {
  border-radius: 0px;
  background: transparent;
  border: none;
  /* backdrop-filter: blur(10px); */
  /* padding: 20px; */
  text-align: center;
}

.error-modal {
  background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.WelcomeModal {
  background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.image-pin {
  position: relative; /* Establishes a positioning context */
  display: inline-block; /* Allows the container to wrap around the content */
}

.image-pin img {
  width: 100%; /* Makes the image responsive */
  height: auto; /* Maintains aspect ratio */
}

.text-number {
  position: absolute; /* Positions the text relative to the container */
  top: 50%; /* Centers the text vertically */
  left: 50%; /* Centers the text horizontally */
  transform: translate(-50%, -50%); /* Adjusts the positioning to center it */
  color: white; /* Change to desired text color */
  font-size: 1.5rem; /* Adjust font size as needed */
  text-align: center; /* Centers the text within its container */
}
