/* Stretch footer full width, no left gap */
.footer-stretch {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #6BB77B;
  color: #fff;
  position: relative;
  left: 0;
  box-sizing: border-box;
}
.footer-stretch .footer-brand h2,
.footer-stretch .footer-brand p,
.footer-stretch .footer-brand .social-links a,
.footer-stretch .bottom-footer p {
  color: #fff !important;
}
.footer-stretch .footer-brand .social-links a {
  font-size: 2rem;
  margin: 0 10px;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.footer-stretch .footer-brand .social-links a:hover {
  opacity: 1;
}
.footer-stretch .bottom-footer {
  background: #6BB77B;
  padding: 10px 0 18px 0;
}
/* Move blog content section upward over hero */
.blog-content {
  margin-top: -90px !important;
  position: relative;
  z-index: 2;
}

.highlight-text.text-white {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
/* Chatbot Carousel Styles */
.chatbot-carousel-wrapper {
  width: 100%;
  margin: 0 auto 12px auto;
  position: relative;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chatbot-carousel-track {
  position: relative;
  width: 280px;
  height: 400px;
  margin-bottom: 10px;
  overflow: hidden;
}
.chatbot-carousel-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.10), 0 1.5px 6px rgba(135,202,156,0.10);
  width: 280px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
  will-change: transform;
}
.chatbot-carousel-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 2;
}
.chatbot-carousel-card.left {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  z-index: 1;
}
.chatbot-carousel-card.right {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  z-index: 1;
}
/* Only show one card at a time, center it */
.chatbot-carousel-wrapper {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 12px auto;
  position: relative;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  justify-content: center;
  min-height: 400px;
  height: 400px;
}
@media (max-width: 480px) {
  .chatbot-carousel-card, .chatbot-carousel-track {
    min-width: 200px;
    max-width: 200px;
    width: 200px;
    height: 320px;
  }
  .chatbot-carousel-wrapper {
    max-width: 220px;
    min-height: 320px;
    height: 320px;
  }
}
@media (max-width: 480px) {
  .chatbot-carousel-card {
    min-width: 180px;
    max-width: 200px;
    width: 180px;
  }
  .chatbot-carousel-wrapper {
    max-width: 220px;
  }
}
.carousel-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: #e9ecef;
}
.carousel-card-text {
  padding: 16px 16px 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.carousel-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: #2c3e50;
  margin-bottom: 2px;
}
.carousel-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: #5a6c7d;
  line-height: 1.4;
  min-height: 2.5em;
  max-height: 3.2em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel-card-btn {
  margin: 12px 16px 16px 16px;
  padding: 10px 0;
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.13);
  transition: background 0.2s, transform 0.2s;
}
.carousel-card-btn:hover {
  background: linear-gradient(135deg, #5FAD85, #87CA9C);
  transform: translateY(-2px) scale(1.03);
}
.carousel-pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0 0;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8e6c9;
  transition: background 0.2s;
  display: inline-block;
}
.carousel-dot.active {
  background: #4CAF50;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(44,62,80,0.10);
  color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  opacity: 0.85;
  transition: background 0.2s, opacity 0.2s;
  user-select: none;
}
.carousel-arrow.left {
  left: 12px;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-arrow.right {
  right: 12px;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  .chatbot-carousel-card, .chatbot-carousel-track {
    min-width: 200px;
    max-width: 200px;
    width: 200px;
  }
  .chatbot-carousel-wrapper {
    max-width: 220px;
  }
}
.carousel-arrow:hover {
  background: rgba(76,175,80,0.18);
  opacity: 1;
}
@media (max-width: 480px) {
  .chatbot-carousel-card {
    min-width: 180px;
    max-width: 200px;
    width: 180px;
  }
}
*{
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 86%; /* Reduces font sizes proportionally */
}

body {
  overflow-x: hidden;
}

/* Global Typography Rules - All Titles use Poppins, All Descriptions use Inter */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

p, .description, .content, .text {
  font-family: "Inter", sans-serif;
}

.navbar-animations{
  opacity: 0;
  animation: fadeInNav 4.5s ease-out forwards;
}

.custom-navbar{
  background-color: transparent !important;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
  align-items: center;
  padding-top: 1rem !important; /* increase navbar vertical padding */
  padding-bottom: 1rem !important;
  min-height: 72px; 
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif !important;
}

.navbar-brand span {
  color: green;
}

.nav-item{
  margin-right: 20px;
  font-size: 1.2rem;
}

.nav-item{
  margin-right: 20px;
  font-size: 1.2rem;
}

.nav-item a{
  font-family: "Poppins", sans-serif !important;
}

.blog-icon{
  margin-right: 50px;
}

.navbar-button{
  margin-right: 0 !important;
  margin-top: 0 !important;
  margin-left: 18px !important;
  align-self: center !important;
}

.custom-navbar > .container {
  display: flex;
  align-items: center;
}
.custom-navbar .navbar-collapse {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end;
}
.navbar-button{
  align-self: center !important;
}

.navbar-button.btn-primary-custom{
  padding: 12px 28px !important;
  font-size: 1rem !important;
  border-radius: 40px !important;
  box-shadow: 0 10px 28px rgba(79,181,115,0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
}

/* Slightly reduce size on small screens so it doesn't overflow */
@media (max-width: 992px){
  .navbar-button.btn-primary-custom{
    padding: 10px 18px !important;
    font-size: 0.95rem !important;
  }
}

.btn {
  background-color: #87CA9C !important;
  font-weight: 600 !important;
}

.hero-button{
  animation: fadeSlide 2.5s ease-out forwards;
}

.fs-7 {
  font-size: 1.2rem;
}

.btn:hover {
  background-color: #5FAD85 !important;
}

body .nav-link.active {
  color: #5FAD85 !important;
}

body .nav-link {
  font-weight: 600;
  position: relative;
}

/* subtle hover underline for navbar links */
body .nav-link::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #87CA9C, #5FAD85);
  transition: width 180ms ease;
  opacity: 0.95;
}
body .nav-link:hover::after{
  width: 100%;
}

/* stronger weight for active page */
body .nav-link.active{
  font-weight: 800;
}

.custom-navbar.scrolled{
  background-color: whitesmoke !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/*Enhanced Hero Section Styling*/

/*welcome badge*/
.welcome-badge {
  background: linear-gradient(135deg, #aee7c8, #c8efd9);
  color: #0a0a0a;
  border-radius: 50px;
  padding: 4px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  margin-top: 0px;
  box-shadow: 0 3px 8px rgba(135, 202, 156, 0.18);
  animation: slideInFromTop 1s ease-out forwards;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

/*hero title*/
.hero-title {
  font-size: 3.0rem !important;
  font-weight: 700 !important;
  line-height: 1.3;
  margin-bottom: 24px;
  font-family: "Poppins", sans-serif;
  color: #2c3e50;
  animation: slideInFromLeft 1.2s ease-out forwards;
}

.highlight-text {
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  border-radius: 2px;
  opacity: 0.3;
}

/*description*/
.hero-description {
  font-size: 1.05rem !important;
  font-weight: 500;
  line-height: 1.6;
  color: #5a6c7d;
  margin-bottom: 32px;
  font-family: "Inter", sans-serif;
  animation: slideInFromLeft 1.4s ease-out forwards;
}

/*buttons*/
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  animation: slideInFromBottom 1.6s ease-out forwards;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #87CA9C, #5FAD85, #6BB77B);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(135, 202, 156, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-primary-custom i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  animation: arrowSlide 2s ease-in-out infinite;
}

@keyframes arrowSlide {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(8px);
  }
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(135, 202, 156, 0.6);
  background: linear-gradient(135deg, #6BB77B, #87CA9C, #5FAD85);
  color: white;
  text-decoration: none;
}

.btn-primary-custom:hover i {
  transform: translateX(6px);
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.1);
  color: #7a8ba1;
  padding: 16px 32px;
  border: 1px solid rgba(122, 139, 161, 0.3);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-secondary-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 202, 156, 0.1), rgba(95, 173, 133, 0.1));
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-secondary-custom:hover {
  color: #87CA9C;
  border-color: rgba(135, 202, 156, 0.6);
  background: rgba(135, 202, 156, 0.1);
  transform: translateY(-3px) scale(1.02);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(135, 202, 156, 0.2);
}

.btn-secondary-custom:hover::before {
  width: 100%;
}

/*client stats*/
.trust-indicators {
  display: flex;
  gap: 32px;
  animation: fadeInUp 1.8s ease-out forwards;
}

.indicator {
  text-align: center;
}

.indicator .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #87CA9C;
  font-family: "Poppins", sans-serif;
}

.indicator .label {
  display: block;
  font-size: 0.9rem;
  color: #7a8ba1;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

/*feature items*/
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 1.8s ease-out forwards;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5a6c7d;
  font-weight: 500;
}

.feature-item i {
  color: #87CA9C;
  font-size: 1.2rem;
}

/*image section*/
.hero-image-container {
  position: relative;
  animation: slideInFromRight 1.2s ease-out forwards;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  display: block;
  object-fit: cover;
}

.hero-image:hover {
  transform: scale(1.02);
}

/*floating elements*/
.floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #2c3e50;
  animation: float 3s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
  color: #87CA9C;
  font-size: 1.5rem;
}

.card-1 {
  top: 20%;
  right: -10px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -20px;
  animation-delay: 1.5s;
}

.card-3 {
  top: 15%;
  right: -15px;
  animation-delay: 0.5s;
}

.card-4 {
  bottom: 25%;
  left: -25px;
  animation-delay: 2s;
}

/*animations*/
@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes countUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*mobile*/
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-description {
    font-size: 1rem !important;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .floating-card {
    display: none;
  }
  
  .welcome-badge {
    margin-top: 20px;
  }
}

/*slider*/

#hero-slider{
  background-image: 
    linear-gradient(135deg, rgba(135, 202, 156, 0.05) 0%, rgba(95, 173, 133, 0.08) 50%, rgba(107, 183, 123, 0.05) 100%),
    radial-gradient(circle at 20% 50%, rgba(135, 202, 156, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(95, 173, 133, 0.08) 0%, transparent 50%);
  background-size: cover, cover, cover, cover;
  background-position: center center;
  position: relative;
}

#hero-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(135, 202, 156, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(95, 173, 133, 0.04) 0%, transparent 30%);
  pointer-events: none;
}

/*.slide1{
  background-image: url('main1.png');
  background-size: cover;
  background-position: center;
}

.slide2{
  background-image: url('main2.png');
  background-size: cover;
  background-position: center;
}*/

.slider-image{
  position: relative;
}

.slider-image::before{
  content: "";
  position: absolute;
  left: 0;
  width: 98%;
  height: 110%;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
  border-radius: 12px;
  backdrop-filter: blur(20px);
  animation: fadeSlideImgLayer 2s ease-out forwards;
}

.slider-image img{
  width: 115%;
  height: 120%;
  box-shadow: 0px 4px 10px rgba(135, 202, 156, 0.5);
  animation: fadeSlideImg 2s ease-out forwards;
  
}

.slider-image2 img{
  height: 125%;
}

.slider-content h1{
  font-size: 4.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  margin-top: 15px;
  animation: fadeSlide 2.5s ease-out forwards;
  
}

.slider-text{
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
  animation: fadeSlide 2.5s ease-out forwards;
}

/*slider Button*/
.owl-prev, .owl-next{
  position: absolute;
  top: 50%;
  width: 50px !important;
  height: 50px !important;
  font-size: 35px !important;
  place-items: center;
  border-radius: 50% !important;
  background-color: #87CA9C;
  display: grid;
  margin-top: -30px !important;
}

.slider-content a{
  font-size: 1.4rem !important;
}

.owl-prev {
  left:0;
}

.owl-next {
  right:0;
}

/*------------- ABOUT US------------------------*/

.aboutus, .services, .feedback{
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 2s ease-out;
}

.aboutus-animation{
  opacity: 1;
  transform: translateY(0);
}

.aboutus img{
  width: 95%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.aboutus img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 20px 45px rgba(135, 202, 156, 0.2);
}

.aboutus-image {
  position: relative;
}

.aboutus-image::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: linear-gradient(135deg, rgba(135, 202, 156, 0.1), transparent);
  border-radius: 20px;
  z-index: -1;
  transition: all 0.3s ease;
}

.aboutus-image:hover::before {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
}

.aboutus .about-content{
  position: relative;
}

.aboutus::after {
  content: "";
  display: table;
  clear: both;
}

.aboutus-title{
  font-weight: 600;
  color: black;
  text-align: center;
  font-family: "Poppins", sans-serif;
  animation: fadeInUp 1s ease-out forwards;
}

.aboutus-title h2 {
  background: linear-gradient(135deg, #2c3e50, #87CA9C, #5FAD85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin-bottom: 15px;
}

.aboutus-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  border-radius: 2px;
}

/*MAIN TILE FONT SIZE IN EVERY SECTION*/
.aboutus-title h2, .services-title h2, .feedback-title h2{
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
}

.content p{
  text-align: justify;
  font-size: 1.25rem;
  padding-top: 10px;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #5a6c7d;
  animation: fadeInUp 1.2s ease-out forwards;
  margin-bottom: 20px;
}

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

.mb-6{
  padding-bottom: 80px;
}

.number-section{
  background: linear-gradient(135deg, rgba(135, 202, 156, 0.9), rgba(95, 173, 133, 0.95));
  backdrop-filter: blur(15px);
  z-index: 2;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(135, 202, 156, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.number-section .row {
  gap: 15px;
  margin: 0;
}

.number-section .row .col-3 {
  flex: 1;
  max-width: none;
  padding: 0;
}

.number-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.number-content-01 {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 15px 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.number-content-01::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.number-content-01:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.number-content-01:hover::before {
  left: 100%;
}

.number {
  margin-left: 20px;
}

.number-section h3{
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1.4s ease-out forwards;
}

.number-section h1{
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif !important;
  color: white;
  margin-bottom: 5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.number-content-01 h1 {
  animation: countUp 2s ease-out forwards;
  transform: scale(1);
  transition: transform 0.3s ease;
  font-size: 1.8rem;
  margin-bottom: 3px;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.number-content-01:hover h1 {
  transform: scale(1.05);
}

.number-content-01 p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.8rem;
  margin: 0;
  font-family: "Inter", sans-serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 1.1;
}

.mt-n130{
  margin-top: 6px;
}



/*Services*/
.service-icon img{
  width: 100%;
  height: auto;
  border-radius: 10px !important;
}

#Services{
  background: #f8f9fa;
  position: relative;
}

/* Horizontal scroll for services on homepage */
.services-scroll-wrapper{
  position: relative;
  margin: 24px 0 12px 0;
}
.services-track{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-behavior: smooth;
  -ms-overflow-style: none; 
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar{ height: 0; }

.services-track > .col-lg-4{
  flex: 0 0 320px;
  max-width: 320px;
}

.services-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 30;
}
.services-arrow.left{ left: -56px; }
.services-arrow.right{ right: -56px; }

@media (max-width: 768px){
  .services-track > .col-lg-4{ flex: 0 0 260px; max-width: 260px; }
  .services-arrow{ display: none; }
}

.service-box{
  background: #ffffff;
  padding: 20px 18px 25px 18px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  opacity: 1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.service-box:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(135, 202, 156, 0.12);
  background: #ffffff;
  border-color: rgba(135, 202, 156, 0.25);
}

/* Service Icon Styling */
.service-icon-wrapper {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  height: 200px;
}

.service-icon-bg {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 3px 10px rgba(135, 202, 156, 0.25);
  transition: all 0.2s ease;
}

.service-icon-main {
  font-size: 1.25rem;
  color: white;
  transition: all 0.2s ease;
}

.service-box:hover .service-icon-bg {
  box-shadow: 0 4px 12px rgba(135, 202, 156, 0.35);
}

.service-icon {
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: block;
  position: relative;
}

.service-icon img {
  transition: all 0.3s ease;
  border-radius: 12px !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-box:hover .service-icon img {
  transform: scale(1.02);
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #5a6c7d;
  font-weight: 500;
  line-height: 1.4;
}

.service-features li i {
  color: #87CA9C;
  margin-right: 8px;
  font-size: 1.15rem;
  min-width: 20px;
  flex-shrink: 0;
}

.service-box-hover{
  transition: none;
}

.service-box-hover:hover {
  transform: none;
}

.service-card-btn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  position: relative;
  margin-top: auto;
  padding: 8px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 18px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(135, 202, 156, 0.3);
  text-decoration: none;
  cursor: pointer;
}

.services .service-box:hover .service-card-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services .service-box:hover .service-card-btn:hover {
  background: linear-gradient(135deg, #6BB77B, #5FAD85);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 202, 156, 0.4);
}


/*SERVICE AND FEEDBACK TITLE FONT SIZE*/
.services-title h2 {
  background: linear-gradient(135deg, #2c3e50, #87CA9C, #5FAD85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.services-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  border-radius: 2px;
}

.services-title h4 {
  font-size: 1.2rem;
  margin: 15px 0 35px 0;
  color: #5a6c7d;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feedback-title h2 {
  background: linear-gradient(135deg, #2c3e50, #87CA9C, #5FAD85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.feedback-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  border-radius: 2px;
}

.feedback-title h4{
  font-size: 1.2rem;
  margin: 15px 0 40px 0;
  color: #5a6c7d;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.service-box-show{
  opacity: 1;
}

.service-title h3{
  margin: 12px 0 10px 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.2s ease;
  text-align: left;
}

.service-box:hover .service-title h3 {
  color: #5FAD85;
}

.service-content {
  text-align: left;
  margin-bottom: 5px;
  flex-grow: 1;
}

.service-content p{
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.5;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.services{
  background: #f8f9fa;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Ensure service boxes are visible on services page */
.bg-light .service-box {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Make buttons always visible on services page */
.bg-light .service-box .service-card-btn {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}


.services .btn {
  background: linear-gradient(135deg, #87CA9C, #5FAD85) !important;
  color: white !important;
  border: none !important;
  padding: 12px 30px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(135, 202, 156, 0.3) !important;
}

.services .btn:hover {
  background: linear-gradient(135deg, #6BB77B, #5FAD85) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(135, 202, 156, 0.4) !important;
}

/*feedback*/

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

#Feedbacks {
  padding: 60px 0;
  position: relative;
}

.feedback-box{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 40px 35px;
  border-radius: 20px;
  max-width: 900px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feedback-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(135, 202, 156, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.feedback-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(135, 202, 156, 0.15);
  background: rgba(255, 255, 255, 1);
}

.feedback-content p{
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  color: #2c3e50;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  font-style: italic;
}

.feedback-content p::before {
  content: '"';
  font-size: 4rem;
  color: rgba(135, 202, 156, 0.3);
  position: absolute;
  top: -20px;
  left: -15px;
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.feedback-content p::after {
  content: '"';
  font-size: 4rem;
  color: rgba(135, 202, 156, 0.3);
  position: absolute;
  bottom: -40px;
  right: -15px;
  font-family: "Inter", sans-serif;
  line-height: 1;
}

.feedback-image img{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  border: 4px solid rgba(135, 202, 156, 0.2);
  transition: all 0.3s ease;
}

.feedback-box:hover .feedback-image img {
  border-color: rgba(135, 202, 156, 0.4);
  transform: scale(1.05);
}

.feedback-image{
  text-align: center;
  margin-bottom: 15px;
}

.feedback-author h4 {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.feedback-author p {
  color: #87CA9C;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  font-family: "Inter", sans-serif;
}

/*footer*/
.footer{
  background-color: #87CA9C;
  padding-top: 24px;
  color: white;
  text-align: center;
  margin-top: 30px;
  padding-bottom: 24px;
}

.footer .footer-brand{
  color: white;
  margin-bottom: 30px;
  display: inline-block;
}

.footer-top{
  margin-bottom: 40px;
}

.bottom-footer{
  border-top: 1px solid rgba(255,255,255,0.6);
  padding-top: 16px;
}

.footer .social-links a{
  color: #87CA9C;
  font-size: 24px;
  margin-left: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
}

.bottom-footer p{
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  margin: 0;
}

/* override Bootstrap defaults */
.footer .social-links a, .footer .social-links a i{
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.footer .social-links a:hover{
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 10px 20px rgba(14, 30, 37, 0.12);
  background-color: #f8f8f8;
  color: #2b8a58;
}

.footer .social-links a:focus, .footer .social-links a:active{
  outline: none;
  animation: footer-pulse 480ms ease-in-out;
}

@keyframes footer-pulse{
  0%{ transform: scale(1); }
  50%{ transform: scale(1.08); }
 100%{ transform: scale(1); }
}


/* Ensure bottom footer text isn't overridden by Bootstrap */
.footer .bottom-footer p{
  font-size: 14px;
  color: rgba(255,255,255,0.95) !important;
  margin: 0;
}

/* Contact form improvements */
#exampleModal .modal-content{
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,20,30,0.25);
}

#exampleModal .modal-body{
  padding: 0;
}

#exampleModal .modal-body .col-lg-4{
  padding: 0;
}

#exampleModal .modal-body .col-lg-4 img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

#exampleModal .modal-body .col-lg-8{
  background: #ffffff;
}

#exampleModal .modal-body .col-lg-8 form{
  padding: 36px 40px;
}

#exampleModal .modal-body h1{
  font-size: 30px;
  margin-bottom: 6px;
  font-weight: 700;
}

#exampleModal .modal-body p{
  color: #6b6b6b;
  margin-bottom: 18px;
}

#exampleModal .modal-body .form-label{
  font-weight: 600;
  color: #333333;
}

#exampleModal .modal-body .form-control{
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  padding: 12px 14px;
  box-shadow: none;
}

#exampleModal .modal-body .form-control:focus{
  border-color: #5fb27e;
  box-shadow: 0 10px 30px rgba(95,178,126,0.12);
  outline: none;
}

#exampleModal .buttons-row{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

/* Button visuals: stronger, modern primary and subtle outline */
#exampleModal .buttons-row .btn{
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 160ms ease, opacity 160ms ease;
}

/* Save / primary */
.btn-save{
  background: linear-gradient(180deg,#4fb573,#3fa664);
  color: #fff !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(63,166,100,0.18);
}
.btn-save:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(63,166,100,0.20);
}

/* Cancel / outline */
.btn-cancel{
  background: transparent !important;
  border: none !important;
  color: #5b5b5b !important;
  padding: 8px 12px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  opacity: 0.95;
}
.btn-cancel:hover{
  background: rgba(0,0,0,0.035) !important;
  transform: translateY(-1px);
  opacity: 1;
}

/* Right-align buttons inside modal footer */
#exampleModal .buttons-row{
   justify-content: flex-end; 
  }

/* Slightly narrower modal for better visual balance */
#exampleModal .modal-dialog{ 
  max-width: 980px; 
}

/* Underline under the title for visual separation */
#exampleModal .modal-body h1{ 
  position: relative; padding-bottom: 8px; 
}

#exampleModal .modal-body h1:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg,#5fb27e,#3fa664);
  border-radius: 4px;
}

/* Make inputs and buttons visually consistent on small screens */
@media (max-width: 767px){
  #exampleModal .modal-dialog{ max-width: 720px; }
  #exampleModal .modal-body .col-lg-4{ display:none; }
  #exampleModal .modal-body .col-lg-8{ width:100%; }
}

#exampleModal .form-control, #exampleModal .btn{
  box-sizing: border-box;}


/*service page*/
.container-fluid.service-page {
  min-height: 380px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  z-index: 1;
}

.mt-n5 {
  margin-top: -100px;
}

.navbar_service{
  background-color: whitesmoke !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.service-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-90 {
  width: 90%;
}

@media (min-width: 992px) {
  .w-lg-90 {
    width: 90%;
  }
}

.service-page h1, .blog-page h1{
  font-family: "Poppins", sans-serif;
  color: #2c3e50;
  animation: fadeSlide 2.5s ease-out forwards;
}

.service-page p, .blog-page p{
  font-family: "Inter", sans-serif;
  animation: fadeSlide 2.5s ease-out forwards;
}

.number-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(135, 202, 156, 0.3);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .number-circle {
    width: 70px;
    height: 70px;
    font-size: 1.3rem;
  }
}

.steps-hover {
  transition: all 0.3s ease;
}

.steps-hover:hover {
  background: rgba(135, 202, 156, 0.05) !important;
  transform: translateY(-5px);
}

.steps-hover:hover .number-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(135, 202, 156, 0.4);
}

.steps-hover:hover h2 {
  color: #5FAD85;
}

.service-title h3, .Additional_title{
  font-family: "Poppins", sans-serif;
}

/* Glass service cards - more specific selector */
.glass-service-hover .service-icon-wrapper,
.bg-white.rounded-4 .service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(135, 202, 156, 0.1), rgba(95, 173, 133, 0.15));
  transition: all 0.3s ease;
}

.glass-service-hover .service-icon-wrapper i,
.bg-white.rounded-4 .service-icon-wrapper i {
  color: #87CA9C;
  transition: all 0.3s ease;
}

.glass-service-hover {
  transition: all 0.3s ease;
}

.glass-service-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(135, 202, 156, 0.15) !important;
  border-color: rgba(135, 202, 156, 0.3) !important;
}

.glass-service-hover:hover .service-icon-wrapper,
.bg-white.rounded-4:hover .service-icon-wrapper {
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  transform: scale(1.1);
}

.glass-service-hover:hover .service-icon-wrapper i,
.bg-white.rounded-4:hover .service-icon-wrapper i {
  color: white;
}

.glass-service-hover:hover h3 {
  color: #5FAD85;
}


/*Blog Page*/
.blog-page{
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  padding: 80px 50px 30px 50px;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.blog-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.blog-page h1{
  margin-top: 55px;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeSlide 2.5s ease-out forwards;
}

.blog-page p{
  font-size: 1.3rem;
  text-align: center;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeSlide 2.5s ease-out forwards;
  margin-bottom: 0;
}

.blog-container{
  background: #f8f9fa;
  width: 100%;
  position: relative;
  margin-top: -30px;
  z-index: 2;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
  padding-top: 50px;
}

.blog-main{
  padding-top: 50px;
  width: 100%;
  animation: fadeSlide 2.5s ease-out forwards;
}

.blog-card{
  max-width: 795px;
  width: 100%;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(135, 202, 156, 0.2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(135, 202, 156, 0.3);
}

.blog-card img{
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.02);
}

.blog-card .card-img-top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.blog-card .card-body h2, .card-body h5 {
  font-family: "Poppins", sans-serif;
  color: #2c3e50;
  font-weight: 600;
}

.blog-card .card-body h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.blog-card .card-body p, .card-body .card-text{
  font-family: "Inter", sans-serif;
  color: #5a6c7d;
  line-height: 1.6;
}

.blog-card .btn-primary {
  background: linear-gradient(135deg, #87CA9C, #5FAD85) !important;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(135, 202, 156, 0.3);
}

.blog-card .btn-primary:hover {
  background: linear-gradient(135deg, #6BB77B, #5FAD85) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 202, 156, 0.4);
}

.blog-addition img{
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: all 0.3s ease;
}

.scroll-box .card:hover .blog-addition img {
  transform: scale(1.02);
}

.scroll-box{
  height: 540px;
  overflow-y: scroll;
  padding-right: 15px;
  padding-left: 5px;
}

/*.custom-left-shift {
  padding-left: -100px;
  margin-left: -110px;
}*/

/* Style for Webkit browsers (Chrome, Edge, Safari) */
.scroll-box::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.scroll-box::-webkit-scrollbar-thumb {
  background-color: #88888870; /* Scrollbar color */
  border-radius: 4px; /* Rounded edges */
}

.scroll-box::-webkit-scrollbar-thumb:hover {
  background-color: #87CA9C; /* Color on hover */
}

.scroll-box::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Scrollbar track color */
 
}

.card-body h2, h5{
  font-family: "Poppins", sans-serif;
}

.card-body p, p{
  font-family: "Inter", sans-serif;
}

.Additional_blog{
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(15px);
  height: 673px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 25px 15px 25px 25px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.Additional_blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(135, 202, 156, 0.2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(135, 202, 156, 0.3);
}

.Additional_title {
  font-family: "Poppins", sans-serif;
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.Additional_title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
  border-radius: 2px;
}

.scroll-box .card {
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  margin-right: 10px;
  overflow: hidden;
}

.scroll-box .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(135, 202, 156, 0.2);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(135, 202, 156, 0.3);
}

.scroll-box .card:last-child {
  margin-bottom: 15px;
}

.scroll-box .card-body {
  padding: 20px;
}

.scroll-box .card-body h5 {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  padding-right: 5px;
  font-family: "Poppins", sans-serif;
}

.scroll-box .card-body p {
  color: #5a6c7d;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px;
  padding-right: 5px;
  font-family: "Inter", sans-serif;
}

.scroll-box .card img {
  transition: all 0.3s ease;
  border-radius: 15px 0 0 15px;
}

.scroll-box .card:hover img {
  transform: scale(1.05);
}

.scroll-box .card-body h5 {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.scroll-box .card-body p {
  color: #5a6c7d;
  font-size: 0.9rem;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
}

#blog .container-fluid {
  background: transparent;
}

#blog .blog-page {
  background: linear-gradient(135deg, #87CA9C, #5FAD85);
}

#blog{
  background: white;
}

/*contact us*/

.form-control:focus{
  border-color: #87CA9C;
  box-shadow: none;
}

/*Navbar changing*/

.scrolled{
  background-color: whitesmoke !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/*Custom Responsive*/

/* Extra Small (xs): Applies to all screen sizes */
@media (max-width: 575.98px) {
  /* Styles for extra small screens */
  .slider-image img {
    height: auto;
    margin: 2px;
  }

  .slider-image{
    padding-top: 80px;
    padding-inline: 20px;
  }

  .slider-title{
    font-size: 2.65rem;
    margin-top: 30px;
  }

  .slider-text{
    font-size: 1.1rem;
  }

  .slider-image2 img{
    height: 100%;
  }

  .slider-title2{
    padding-top: 25px;
  }

  .aboutus{
    padding: 80px 20px 80px 20px;
  }

  .services{
    padding: 20px;
  }

  .feedback{
    padding: 20px;
  }

  .container-fluid.service-page{
    min-height: 300px;
  }

  .service-page h1 {
    font-size: 2rem !important;
  }

  .service-page p {
    font-size: 1rem !important;
  }

  .mt-n5 {
    margin-top: -60px;
  }

  .number-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .steps-hover h2 {
    font-size: 1.25rem !important;
  }

  .steps-hover p {
    font-size: 0.9rem !important;
  }

  .glass-service-hover .service-icon-wrapper,
  .bg-white.rounded-4 .service-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .glass-service-hover .service-icon-wrapper i,
  .bg-white.rounded-4 .service-icon-wrapper i {
    font-size: 2rem !important;
  }

  .glass-service-hover h3 {
    font-size: 1.1rem !important;
  }

  .glass-service-hover p {
    font-size: 0.9rem !important;
  }

  .custom-left-shift {
   margin-left: 0px;
  }

  .blog-card{
    max-width: 450px;
    width: 100%;
    padding-left: 20px;
  }
}

/* Small (sm): ≥ 576px */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Styles for small screens */
  .slider-image{
    padding-top: 120px;
    padding-inline: 20px;
  }

  .slider-title{
    font-size: 2.6rem;
    padding-top: 10px;
  }

  .custom-left-shift {
    margin-left: -5px;
   }
 
   .blog-card{
     max-width: 650px;
     width: 100%;
     padding-left: 10px;
   }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .slider-image img {
    height: auto;
  }

  .slider-image{
    padding-top: 120px;
    padding-inline: 20px;
  }

  .slider-title{
    font-size: 3rem;
    padding-top: 10px;
  }

  .container-fluid{
    height: 350px;
  }

  /*.custom-left-shift {
    padding-left: 20px;
    margin-left: 20px;
  }*/

  .blog-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

.blog-card, .additional_blog {
    width: 90%;
    margin-bottom: 20px;
}

}

/* Large (lg): ≥ 992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  
  .aboutus img{
    width: 95%;
    height: 100%;
    object-fit: cover;
  }

  .container-fluid{
    height: 350px;
  }

  .custom-left-shift {
    padding-left: 0px;
    margin-left: 0px;
  }

  .blog-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

.blog-card, .additional_blog {
    width: 90%;
    margin-bottom: 20px;
}

/*slider image shape*/
/* HTML: <div class="inverted-radius"></div> */
.inverted-radius {
  --r: 12px; /* the radius */
  --s: 30px; /* size of inner curve */
  --x: 20px; /* horizontal offset (no percentane) */
  --y: 10px; /* vertical offset (no percentage) */
  
  width: 140px;
  aspect-ratio: 1;
  background: #87CA9C;
  border-radius: var(--r);
  --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
  --_g:conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)),#0000 25%,#000 0);
  --_d:(var(--s) + var(--r));
  mask:
    calc(100% - var(--_d) - var(--x)) 100% var(--m),
    100% calc(100% - var(--_d) - var(--y)) var(--m),
    radial-gradient(var(--s) at 100% 100%,#0000 99%,#000 calc(100% + 1px)) 
     calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
    var(--_g) calc(-1*var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(-1*var(--_d) - var(--y));
  mask-repeat: no-repeat;

  position: absolute;
  top: 3%;
  width: 100%;
  max-width: 150px; 
  left: 4%;
  animation: fadeSlideImg 2s ease-out forwards;
}
}

/* Extra Large (xl): ≥ 1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* Styles for extra-large screens */
  /*slider image shape*/
/* HTML: <div class="inverted-radius"></div> */
.inverted-radius {
  --r: 12px; /* the radius */
  --s: 30px; /* size of inner curve */
  --x: 20px; /* horizontal offset (no percentane) */
  --y: 10px; /* vertical offset (no percentage) */
  
  width: 140px;
  aspect-ratio: 1;
  background-color: rgba(135, 202, 156, 1);
  border-radius: var(--r);
  --_m:/calc(2*var(--r)) calc(2*var(--r)) radial-gradient(#000 70%,#0000 72%);
  --_g:conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)),#0000 25%,#000 0);
  --_d:(var(--s) + var(--r));
  mask:
    calc(100% - var(--_d) - var(--x)) 100% var(--m),
    100% calc(100% - var(--_d) - var(--y)) var(--m),
    radial-gradient(var(--s) at 100% 100%,#0000 99%,#000 calc(100% + 1px)) 
     calc(-1*var(--r) - var(--x)) calc(-1*var(--r) - var(--y)),
    var(--_g) calc(-1*var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(-1*var(--_d) - var(--y));
  mask-repeat: no-repeat;

  position: absolute;
  top: 3%;
  width: 100%;
  max-width: 130px; 
  left: 4%; 
  animation: fadeSlideImg 2s ease-out forwards;
}
 
}

/* Extra Extra Large (xxl): ≥ 1400px */
@media (min-width: 1400px) {
  /* Styles for extra-extra-large screens */
}


/*ANIMATIONS*/
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/*@keyframes blurClear {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}*/

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

/* Chatbot Styles */
#chatbot {
  position: fixed;
  bottom: 20px;
  right: 110px;
  width: 380px;
  height: 600px;
  background: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  z-index: 2000;
  overflow: hidden;
}

#chatbot-header {
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #fff;
  padding: 16px 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

#chatbot-header button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

#chatbot-header button:hover {
  background: rgba(255, 255, 255, 0.3);
}

#chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-height: 460px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#chatbot-messages .bot {
  background: #ffffff;
  color: #333;
  padding: 12px 16px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 85%;
  align-self: flex-start;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #e9ecef;
}

#chatbot-messages .user {
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #fff;
  padding: 12px 16px;
  border-radius: 18px 18px 4px 18px;
  max-width: 85%;
  align-self: flex-end;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

#chatbot-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
  padding: 0 8px;
}

#chatbot-options button {
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(76, 175, 80, 0.2);
}

#chatbot-options button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  background: linear-gradient(135deg, #45a049, #75c878);
}

#chatbot-input {
  display: flex;
  padding: 12px 15px;
  background: #fff;
  gap: 8px;
  border-top: 1px solid #f0f0f0;
}

#chatbot-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: border-color 0.3s ease;
  background: #f8f9fa;
}

#chatbot-input input:focus {
  border-color: #4CAF50;
  background: #fff;
}

#chatbot-input button {
  padding: 10px 18px;
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

#chatbot-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
}

/* Updated Chatbot Toggle Button Styles */
#chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #4CAF50, #81C784);
  color: #fff;
  border: none;
  border-radius: 30px;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  overflow: hidden;
  padding: 0;
}

#chatbot-toggle .chatbot-icon {
  font-size: 28px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

#chatbot-toggle .chatbot-text {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

#chatbot-toggle:hover {
  width: 200px;
  padding: 0 20px;
  justify-content: flex-start;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
  transform: translateY(-2px);
}

#chatbot-toggle:hover .chatbot-text {
  opacity: 1;
  max-width: 150px;
}