@import url('https://fonts.googleapis.com/css?family=Rajdhani&display=swap');
/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:               #116530;
  --secondary-color:             #c7d7e2;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #116530;
  --custom-btn-bg-hover-color:     #49a06c;
  --gold-color:                   #F5DEB3;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #e9eaeb;
  --link-hover-color:             #4f83d1;

  --body-font-family:          'Rajdhani', sans-serif;

  --h1-font-size:                 52px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  17px;
  --btn-font-size:                18px;
  --copyright-font-size:          14px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
  overflow-x: hidden;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.page-404-title {
  color: var(--secondary-color);
  font-size: 10rem;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color:rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.testimonial-section .section-overlay {
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: #e5e50f;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--herse::before {
  display: none;
}

.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--dark-color);
  stroke-width: 1px;
}

.link__graphic--stroke path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.link:hover .link__graphic--stroke path {
  stroke-dashoffset: 0;
}

.link__graphic--arc {
  top: 73%;
  left: -23%;
}

.link__graphic--arc path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--arc path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}

.button {
  display: inline-block;
  position: relative;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--atlas > span {
  display: inline-block;
}

.button--atlas:hover > span {
  opacity: 0;
}


.button--pan {
  overflow: hidden;
}

.button--pan span {
  position: relative;
}

.button--pan::before {
  content: '';
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pan:hover::before {
  background: transparent;
  transform: translate3d(0,-100%,0);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

.bi-star-fill {
  color: var(--custom-btn-bg-color);
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  object-fit: cover;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
  line-height: normal;
  transition: all 0.3s;
  padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  margin-top: 8px;
  margin-right: 0;
  padding: 12px 25px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: #ffffff !important;
}
.custom-btn:hover span{
color: var(--white-color);
}
.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color) !important;
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: transparent;
  position: absolute;
  top: 49px;
  right: 0;
  left: 0;
  min-height: 80px;
  z-index: 9;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.6s;
}
@media (max-width: 991px) {
  .navbar{
    background-color:rgba(26, 26, 26, 0.1) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
.navbar-toggler[aria-expanded="true"] {
  background-color:transparent;
  border-radius: 10px;
}
.navbar .navbar-collapse.show {
  background: var(--primary-color) !important;
  transition: all 0.6s;
  border-radius: 10px;
  }
}

.navbar.sticky {
  position:fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 80px;
  width: 100%;
  padding-top: 15px !important;
  padding-bottom: 15px;
  background: linear-gradient(
    rgba(17, 101, 48, 0.99),
    rgba(17, 101, 48, 0.1)
  ) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-light);
}
.navbar .navbar-brand {
    display: flex;
    align-items: center;
    height: 80px;
}

.navbar .navbar-brand img {
    max-height: 6rem;
    transition: .4s;
    margin-top: 10px;
}

.navbar.sticky .navbar-brand img {
    max-height: 5rem;
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 20px;
  padding: 0;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color) !important;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .navbar  {
    display: block;
  }
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: transparent;
  color: var(--secondary-color) !important;
}

.dropdown-menu {
  background: var(--secondary-color);
  box-shadow: 0 0rem 5rem rgba(0,0,0,.175);
  display: none;
  opacity: 0;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--secondary-color);
  position: absolute;
  top: -10px;
  left: 20px;
}

.dropdown-item {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 0;
  padding-bottom: 7px;
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  color: var(--white-color);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
  transition: transform 0.4s ease;
}
.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
    display: block;
  }
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
  background: white; 
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background:#fff;
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background:#fff;
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}
@media screen and (min-width: 992px) {
  .navbar-nav .nav-link {
    position: relative;
    overflow: hidden;
    padding-bottom: 5px; 
  }
  .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0; 
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }
  .navbar-nav .dropdown:hover .dropdown-toggle::after {
      transform: rotate(180deg);
}
  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
  }
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: var(--primary-color);
  position: relative;
  z-index: 22;
  height: 49px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-size: clamp(0.85rem, 2vw, 0.8rem);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}

.site-header-icon {
  display: inline-block;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section svg {
  position: absolute;
  bottom: -50px;
  z-index: 1;
  right: 0;
  left: 0;
  pointer-events: none;
}
.hero-section h1 {
  font-size: clamp(1.75rem, 3vw + 1rem, 3.5rem);
  font-weight: 700;
}

.hero-section p {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
}

@media screen and (min-width: 991px) {
  .hero-section-full-height {
    height: 85vh;
  }
}
@media screen and (max-width: 991px){
  .hero-section {
  min-height: 88vh;
}
}
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/*---------------------------------------
  INTRO        
-----------------------------------------*/
.intro-section {
  padding-top: 50px;
}
.intro-section h2 {
  font-size: clamp(1.7rem, 2.5vw + 1rem, 2rem);
  line-height: 1.3;
}

.intro-section p {
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.15rem);
  line-height: 1.7;
}

.intro-section h6 {
  font-size: clamp(1rem, 1vw + 0.5rem, 1rem);
  line-height: 1.4;
}
/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  position: relative;
}

.custom-block-wrap .custom-block {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-block {
  background-color: rgba(17, 101, 48, 0.7); 
  border-radius: var(--border-radius-small);
  padding: 35px;
}
.custom-block .custom-icon,
.custom-block p {
  color: var(--white-color);
  font-style: italic;
}
@media screen and (max-width: 991px) {
  .custom-block-wrap .custom-block {
    right: 12px;
    background-color: rgba(17, 101, 48, 0.3); 
  }
}


/*---------------------------------------
  BANNER        
-----------------------------------------*/
.banner-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding-top: 100px;
  padding-bottom: 50px;
}
.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 2;
}
.banner-section > * {
  position: relative;
  z-index: 3;
}

.banner-section .breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
  color: var(--white-color);
}


/*---------------------------------------
  COUNTDOWN              
-----------------------------------------*/
.countdown-section {
  position: relative;
}

.countdown-section-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.countdown {
  text-align: center;
  padding-left: 0;
}

.countdown-item {
  list-style: none;
  flex: 0 0 13%;
  margin: 15px;
}

.countdown-text {
  background: var(--section-bg-color);
  border-radius: 6px;
  color: var(--secondary-color);
  font-size: var(--p-font-size);
  position: relative;
  padding: 4px 8px;
}

.countdown-text::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 5px solid var(--section-bg-color);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-image {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
}

.featured-block {
  padding: 20px;
}

.featured-block h2 {
  font-size: clamp(1.5rem, 2vw + 1rem, var(--h2-font-size)); /* max: 46px */
  font-weight: 600;
  line-height: 1.3;
}

.featured-block p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, var(--p-font-size)); /* max: 16px */
  line-height: 1.7;
  color: #333;
}
.section-title {
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
}

#mission-vision-values .card-title {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
}
#mission-vision-values .card{
  border-radius: 15px;
  background-color: var(--secondary-color);
}
#mission-vision-values .card .card-body .list-unstyled li{
  color: var(--dark-color) !important;
}
#mission-vision-values .card-text,
#mission-vision-values ul {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.125rem);
  color:var(--dark-color);
}

.text-accent {
  color:var(--primary-color);
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
  transition: 0.3s ease-in-out;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-image,
.gallery-image {
  border-radius: var(--border-radius-medium);
}

.team-info {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 30px;
}

.team-info h4 {
  font-size: clamp(20px, 2.5vw, 28px); 
  color:var(--dark-color);
}

.team-info p {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 0;
  color: var(--primary-color);
}

.team-info::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 20px solid var(--secondary-color);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  top: 20px;
  left: -20px; 
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .team-info::before {
    border-top: 0;
    border-bottom: 20px solid var(--secondary-color);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    top: -20px;
    margin: auto;
    bottom: auto;
    right: 0;
    left: 0;
  }
}
.gallery-image {
  transition: all 0.3s;
}

.gallery-image:hover {
  transform: scale(1.02);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-thumb {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 1%;
  height:100%;
}
.services-section 
.custom-btn.btn {
  font-size: clamp(0.85rem, 0.8vw + 0.2rem, 0.95rem);
  padding: clamp(0.55rem, 0.4vw + 0.1rem, 0.5rem) clamp(0.6rem, 0.8vw + 0.3rem, 1rem);
}

.services-section h2 {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
}

.services-section h4 {
  font-size: clamp(1.2rem, 1.8vw + 0.5rem, 2rem);
}

.services-section p {
  font-size: clamp(0.95rem, 1.2vw + 0.3rem, 1rem);
  line-height: 1.6;
  color:var(--dark-color);
}

.services-thumb.section-bg {
  background: var(--section-bg-color);
}

.services-detail-section .services-image {
  aspect-ratio: 0;
}
.services-info h4 a{
  color: var(--dark-color);
}
.services-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}

.services-image-wrap:hover .services-image-hover {
  opacity: 1;
}

.services-title-link {
  display: block;
}

.services-image,
.team-image {
  border-radius: var(--border-radius-small);
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s;
}

.services-image-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.services-image,
.services-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s;
  border-radius: var(--border-radius-small);
}
.services-icon-wrap {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity 0.5s;
  padding: 8px 12px;
}
.services-icon-wrap p {
  font-size: clamp(0.65rem, 0.9vw, 0.85rem); /* responsive text */
  margin-bottom: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.services-icon-wrap i {
  font-size: 1em; /* keep icons balanced with text */
}

.services-icon-wrap .button--skoll {
  width: 100%;
  height: 100%;
}
.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color:var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.service-card {
    position: relative;
    padding-top: 10px;
    padding-left: 10px;
    overflow: visible;
}
.service-card img{
  aspect-ratio: 1/1;
}
.service-card:hover .step-number {
    transform: scale(1.1);
    transition: all 0.3s ease;
}
#why-jamkin {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: var(--secondary-color) !important;
}

#why-jamkin h2 {
  font-size: clamp(2rem, 3.5vw + 1rem, 2.875rem); /* 46px = 2.875rem */
  font-weight: 700;
  color: #212529;
}

#why-jamkin p {
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1rem); /* target: 16px = 1rem */
  line-height: 1.6;
  color:var(--dark-color);
}

#why-jamkin ul {
  padding-left: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#why-jamkin ul li {
  font-size: clamp(0.95rem, 1vw + 0.25rem, 1rem); /* match p-font-size */
  margin-bottom: 0.75rem;
  display: flex;
  color: var(--dark-color);
  align-items: center;
}

#why-jamkin ul li i {
  color: #28a745; /* Bootstrap 'success' green */
  margin-right: 0.5rem;
  flex-shrink: 0;
}

#why-jamkin .btn {
  font-size: clamp(1rem, 1vw + 0.25rem, 1.125rem); /* 18px = 1.125rem */
  padding: 0.6rem 1.5rem;
  border-radius: 0.375rem;
}
/*** Product ***/
.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    background: var(--primary-color);
    width: 100%;
    height: 100%;
}
.product-item .custom-btn {
  border: 1px solid var(--secondary-color);
  background: linear-gradient(to right, var(--secondary-color) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: var(--white-color);
  transition: background-position 0.4s ease, color 0.4s ease;
}
.product-item .custom-btn:hover {
  background-position: left bottom;
  color: var(--dark-color) !important; 
}
.product-item h4{
  color: #F5DEB3;
}
.product-item a{
  text-decoration: none;
  color: #ffffff;
}
.product-item p{
  color: #ffffff;
}
.product-item img{
aspect-ratio: 1/1;
}
.product-icon {
    position: relative;
    margin: -50px 0 25px 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 50%;
    transition: .5s;
}

.product-item:hover .product-icon {
    color: #FFFFFF;
}
/* Modal Typography with clamp() */
#productModal .modal-title {
  font-size: clamp(22px, 3vw, 28px); /* h4 as max */
}

#productModal h2 {
  font-size: clamp(28px, 4vw, 46px); /* h2 as max */
}

#productModal h5 {
  font-size: clamp(18px, 2.5vw, 24px); /* h5 as max */
}

#productModal .lead {
  font-size: clamp(16px, 1.8vw, 20px);
}

#productModal p:not(.lead) {
  font-size: clamp(14px, 1.6vw, 16px);
}

#productModal li {
  font-size: clamp(14px, 1.6vw, 16px);
}

#productModal th,
#productModal td {
  font-size: clamp(13px, 1.5vw, 15px);
}

/* Thumbnail captions */
#thumbnailGallery .img-thumbnail::after {
  font-size: clamp(10px, 1.2vw, 12px);
}
#thumbnailGallery .img-thumbnail{
  aspect-ratio: 16/9;
}
/* Buttons */
#productModal .btn {
  font-size: clamp(14px, 1.8vw, 18px);
}
#productModal .modal-body {
  background-color: var(--secondary-color);
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  #productModal .modal-body {
    --h1-font-size: clamp(28px, 6vw, 32px);
    --h2-font-size: clamp(24px, 5vw, 28px);
    --h3-font-size: clamp(20px, 4vw, 24px)
  }
  
  #productModal .table-responsive {
    font-size: clamp(12px, 1.4vw, 14px);
  }
}
.modal .modal-header{
  background: var(--primary-color);
}
.modal-footer{
  background: var(--secondary-color);
}
.modal .carousel-item img{
  aspect-ratio: 1/1;
}
.product-modal-img {
    aspect-ratio: 1/1;
    object-fit: contain;
}
.cursor-pointer {
    cursor: pointer;
}

/*---------------------------------------
  TESTIMONIAL              
-----------------------------------------*/
.testimonial-section {
  background-image: url('../images/coffe-shop-with-wooden-walls-unfocused.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.testimonial-section .featured-block {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  margin-bottom: 24px;
  padding: 30px;
}

.testimonial-section .featured-block h4,
.testimonial-section .featured-block p {
  color: var(--white-color);
}



/*---------------------------------------
  PARTNERS              
-----------------------------------------*/
.partners-section {
  text-align: center;
  padding-top: 25px;
  padding-bottom: 50px;
  background-image: url('../images/services/solar/sol-22.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.partners-section-title {
  border-radius: var(--border-radius-large);
  background-color: var(--secondary-color);
  display: inline-block;
  position: relative;
  bottom: 50px;
  font-weight: 600;
  margin-bottom: -50px;
  padding: 10px 20px;
}

.counter-number {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem); 
  font-weight: 700;
  color: var(--white-color) !important;
}

.counter-label {
  text-transform: uppercase;
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem); /* responsive <p> */
  margin-top: 0.5rem;
  color: var(--white-color) !important;
  font-weight: 600;
}

/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-top: 0;
}

.counter-number {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--secondary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form label,
.consulting-form label {
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  color: #F5DEB3;
  margin-bottom: 6px;
  display: inline-block;
}

.contact-form .form-control,
.consulting-form .form-control,
.consulting-form .form-select {
  min-height: clamp(2.5rem, 5vw, 3rem);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
}


.contact-info {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  margin-top: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 100%;
}

.contact-info h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem); /* ~28px to 40px */
  font-weight: 600;
}

.contact-info h5 {
  font-size: clamp(1rem, 2.5vw, 1.375rem); /* ~16px to 22px */
  margin-bottom: 1rem;
  line-height: 1.4;
  display: flex;
  color: var(--p-color);
  align-items: center;
}

.contact-info a {
  color: var(--p-color);
  text-decoration: none;
  word-break: break-word;
}

.contact-info a:hover {
  color: var(--link-hover-color);
}

.custom-icon {
  font-size: 1.25rem; /* Optional: scale icons for better visibility */
}



/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-medium);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.3s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.consulting-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 45px;
}

.consulting-form-header .form-icon {
  font-size: var(--h2-font-size);
  color: var(--white-color);
}
.consulting-form-header h3{
  color:#F5DEB3;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.footer-modern {
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: clamp(14px, 1.4vw, 15px);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-heading {
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
  margin-top: 8px;
}

.footer-modern p,
.footer-modern .form-label {
  font-size: clamp(14px, 1.2vw, 16px);
  color: #dddddd;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-modern .footer-link {
  display: block;
  color: #cccccc;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: clamp(14px, 1.3vw, 15px);
  transition: color 0.3s ease;
}

.footer-modern .footer-link:hover {
  color:var(--secondary-color);
  text-decoration: underline;
}

.footer-modern .text-accent {
  color: var(--secondary-color);
}

.footer-modern .btn-accent {
  background-color: var(--secondary-color);
  border: none;
  padding: 0.4rem 0.9rem;
  font-size: clamp(14px, 1.3vw, 15px);
}

.footer-modern .btn-accent:hover {
  background-color: var(--secondary-color);
}

.footer-modern input[type="email"] {
  font-size: clamp(13px, 1.2vw, 15px);
  border-radius: 0;
  border: none;
  padding: 0.5rem;
}

.footer-modern hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-modern .small {
  font-size: clamp(13px, 1.2vw, 14px);
}

.footer-modern .text-decoration-none:hover {
  color: var(--secondary-color);
}



/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: #7fbcf0;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.button--skoll {
  overflow: hidden;
  border-radius: 50%;
  color: var(--white-color);
  width: 35px;
  height: 35px;
}

.button--skoll span {
  display: block;
  position: relative;
}

.button--skoll > span {
  overflow: hidden;
}

.button--skoll:hover > span > span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

.button--skoll::before {
  content: '';
  background: var(--custom-btn-bg-color);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 50%;
  transform: translate3d(0,0,0);
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.button--skoll:hover::before {
  transform: translate3d(0,100%,0);
}
/*---------------------------------------
  PROJECT STYLES               
-----------------------------------------*/
.projects {
  background-color: var(--section-bg-color);
  padding-bottom: 5rem;
}

/* Filter buttons */
#portfolio-flters {
  padding: 0;
  list-style: none;
}

#portfolio-flters li {
  display: inline-block;
  cursor: pointer;
  color: var(--dark-color);
  font-weight: 600;
  border: 2px solid var(--secondary-color);
  padding: 8px 18px;
  transition: all 0.3s ease;
  background-color: transparent;
}

#portfolio-flters li.active,
#portfolio-flters li:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.portfolio-img .swiper,
.portfolio-img .swiper-wrapper,
.portfolio-img .swiper-slide {
  height: 100%;
}
/* Portfolio item */
.portfolio-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-1px);
}

/* Image container */
.portfolio-img {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  background-color: #ccc;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
  color: var(--white-color);
  background-color: var(--secondary-color);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  transition: background 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--primary-color);
}

/* Info text */
.portfolio-item p {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  text-align: center;
}

.portfolio-item h5 {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.25rem);
  font-weight: 600;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 0.3rem;
}

.portfolio-item hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  border-top: 2px solid var(--primary-color);
  width: 40px;
}

#load-more {
  background-color: var(--custom-btn-bg-color);
  border: none;
  color: var(--white-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

#load-more:hover {
  background-color: var(--custom-btn-bg-hover-color);
}

@media (max-width: 576px) {
  .portfolio-img {
    height: 200px;
  }

  #portfolio-flters li {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}
  .video-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  }
  .video-container {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .video-container:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important;
  }
  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 2;
    display: flex;
  }
  .btn-video-play {
    width: 80px;
    height: 80px;
    background: rgba(25, 135, 84, 0.9);
    border: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-video-play:hover {
    background: #198754;
    transform: scale(1.1);
  }
  .badge {
    letter-spacing: 0.5px;
    font-weight: 500;
  }
  .hygiene-hero {
  }
  .productSwiper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
  }
  
  .productSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
  }
  
  .productSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }

  .swiper-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .swiper-button-next, 
  .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(2px);
  }
  
  .swiper-button-next:after, 
  .swiper-button-prev:after {
    font-size: 1.2rem;
  }
  
  .swiper-pagination-bullet {
    background: var(--white-color);
    opacity: 0.6;
  }
  
  .swiper-pagination-bullet-active {
    background:var(--secondary-color);
    opacity: 1;
  }
/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .intro-section {
    padding-top: 0;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .team-section {
    padding-bottom: 80px;
  }

  .navbar {
    background-color: var(--white-color);
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--primary-color);
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    background-color: var(--custom-btn-bg-color);
    color: var(--white-color);
    margin-left: 0;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 20px;
    opacity: 1;
    pointer-events: auto;
    width: 90vw;
    left: 0 !important;
    right: 0 !important;
    max-width: 100vw;
    margin-top: 10px;
    margin-bottom: 15px;
  }



  .site-footer {
    padding-top: 50px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    text-align: center;
    margin-top: 50px;
  }

  .site-footer-bottom .footer-menu {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {

  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section svg {
    bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}
/* WhatsApp widget styles */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: auto;
    max-width: 90vw;
}

.chat-button {
  background-color:  #0C6B58;
  position: fixed;
  bottom: 20px;
  left: 20px;  
  color: white;
  padding: 10px 16px;
  border-radius: 30px; 
  display: inline-flex; 
  align-items: center;
  text-transform: uppercase;
  gap: 8px; 
  cursor: pointer;
  box-shadow: 0 7px 12px rgba(18, 140, 126, 0.3);
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 700; 
  line-height: 1.2;
}

.chat-button:hover {
  background-color:var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.4);
}

.chat-button i {
  font-size: 18px; 
}

.chat-container {
    background-color:#fff;
    position: fixed;
    bottom: 80px;
    left: 20px; 
    border-radius: 18px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-top: 20px;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 350px;
    max-width: 90vw;
}

.chat-container.open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background-color: #128C7E;
    color: white;
    padding: 18px;
    display: flex;
    align-items: center;
    position: relative;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #128C7E;
    font-size: 20px;
    flex-shrink: 0;
}
.chat-avatar img{
  border-radius: 50%;
}

.chat-header-info {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.chat-title {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-status {
    font-size: 13px;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
}

.chat-messages {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    font-weight: 700;
    background-image: 
      linear-gradient(rgba(230, 221, 212, 0.7), rgba(230, 221, 212, 0.7)), 
      url("../images/whatsapp.png");
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 12px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.received {
    background-color: #e2e2e2;
    border-top-left-radius: 4px;
}

.sent {
    background-color: #DCF8C6;
    border-top-right-radius: 4px;
    align-self: flex-end;
}

.message-time {
    font-size: 11px;
    color: #888;
    text-align: right;
    margin-top: 4px;
}

.chat-input-container {
    display: flex;
    padding: 12px;
    background-color: white;
    border-top: 1px solid #eee;
    align-items: center;
}

.chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 24px;
    padding: 12px 18px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    min-width: 0;
}

.chat-input:focus {
    border-color: #128C7E;
}

.send-button {
    background-color: #128C7E;
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin-left: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.send-button:hover {
    background-color: #0C6B58;
}

.instructions {
    margin-top: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 500px;
}

.instructions h3 {
    color: #128C7E;
    margin-bottom: 15px;
}

.instructions ol {
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    color: #555;
}

/* Responsive design */
@media (max-width: 600px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
  .chat-button {
    padding: 8px 14px;   
    font-size: 13px;     
    border-radius: 24px;
    gap: 6px;            
  }

  .chat-button i {
    font-size: 16px;     /* smaller icon */
  }
    
    .chat-container {
        width: 320px;
        left: 0;
    }
    
    .message {
        max-width: 90%;
    }
    
    .chat-header {
        padding: 14px;
    }
    
    .chat-messages {
        padding: 15px;
        height: 250px;
    }
    
    .chat-input-container {
        padding: 10px;
    }
    
    .send-button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 400px) {
    .whatsapp-widget {
        bottom: 10px;
        left: 10px;
    }
    
    .chat-container {
        width: 300px;
    }
    
    .chat-messages {
        height: 220px;
        padding: 12px;
    }
    
    .chat-input {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .send-button {
        width: 40px;
        height: 40px;
        margin-left: 6px;
    }
    
    .message {
        padding: 10px 14px;
        font-size: 14px;
    }
}
.news-swiper {
  position: relative;
  overflow: visible;          
  padding-right: 2rem;      
}
.news-swiper .swiper-slide{

}
.news-swiper::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0), var(--bs-body-bg));
}

.news-card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 3/4;
}

.news-card iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.news-swiper .swiper-button-prev,
.news-swiper .swiper-button-next {
  color:var(--primary-color);
  width: 45px;
  height: 45px;
  border-radius: 0;
  background: var(--secondary-color);
  box-shadow: 0 .25rem .75rem rgba(0,0,0,.08);
}
.news-swiper .swiper-button-prev:after,
.news-swiper .swiper-button-next:after {
  font-size: 16px;
  font-weight: 700;
}
.faq {
  background: 
    linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
    url('../images/services/solar/sol-117.webp') center/cover no-repeat;
  width: 100%;
}
.faq .accordion-item {
  background-color: transparent; 
  border: none;               
}
.faq .accordion-button {
  background-color: rgba(255, 255, 255, 0.2); 
  color: #fff;                            
  border: none;       
  font-weight: bold;                       
}
.faq .accordion-button:not(.collapsed) {
  background: linear-gradient(
    rgba(17, 101, 48, 0.9),
    rgba(17, 101, 48, 0.9)
  ) !important;
  color: var(--secondary-color);
  box-shadow: none !important;
  outline: none; 
}
.faq .accordion-body {
   background: linear-gradient(
    rgba(17, 101, 48, 0.7),
    rgba(17, 101, 48, 0.7)
  ) !important;
  color: var(--gold-color) !important;          
  padding-left: 1rem;
  padding-right: 1rem;
}
