@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  overflow: visible;
}

a {
  text-decoration: none;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}
.hero-section {
  background-image: url("main.png");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.feature-item {
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.heartbeat {
  animation: heartbeat 20s ease-in-out infinite;
}

/* Falling Leaves Styles */
.leaves-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(144, 238, 144, 0.6);
  clip-path: path("M20 0 C30 10 30 20 20 30 C10 20 10 10 20 0");
}

@keyframes falling1 {
  0% {
    transform: translate(0, -10%) rotate(0deg);
  }
  100% {
    transform: translate(100px, 1000%) rotate(360deg);
  }
}

@keyframes falling2 {
  0% {
    transform: translate(0, -10%) rotate(90deg);
  }
  100% {
    transform: translate(-100px, 1000%) rotate(450deg);
  }
}

@keyframes falling3 {
  0% {
    transform: translate(0, -10%) rotate(180deg);
  }
  100% {
    transform: translate(50px, 1000%) rotate(540deg);
  }
}

/* Individual leaf styles with random starting positions and animations */
.leaf:nth-child(1) {
  left: 20%;
  animation: falling1 12s linear infinite;
  animation-delay: -2s;
}

.leaf:nth-child(2) {
  left: 40%;
  animation: falling2 14s linear infinite;
  animation-delay: -4s;
}

.leaf:nth-child(3) {
  left: 60%;
  animation: falling3 16s linear infinite;
  animation-delay: -7s;
}

.leaf:nth-child(4) {
  left: 80%;
  animation: falling2 13s linear infinite;
  animation-delay: -5s;
}

.leaf:nth-child(5) {
  left: 30%;
  animation: falling1 15s linear infinite;
  animation-delay: -9s;
}

.leaf:nth-child(6) {
  left: 70%;
  animation: falling3 17s linear infinite;
  animation-delay: -3s;
}

.leaf:nth-child(7) {
  left: 45%;
  animation: falling2 14s linear infinite;
  animation-delay: -8s;
}

.leaf:nth-child(8) {
  left: 55%;
  animation: falling1 16s linear infinite;
  animation-delay: -1s;
}

.leaf:nth-child(9) {
  left: 25%;
  animation: falling3 15s linear infinite;
  animation-delay: -6s;
}

.leaf:nth-child(10) {
  left: 85%;
  animation: falling2 13s linear infinite;
  animation-delay: -4.5s;
}

.section-features {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
}

.container-custom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-features {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
}

.container-custom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.feature-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  cursor: pointer;
}

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

.feature-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-radius: 32px;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #3b82f6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-features {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: white;
}

.container-custom {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.feature-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  top: 0;
  cursor: pointer;
}

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

/* Border animation elements */
.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0 solid transparent;
  border-radius: 0.5rem;
  pointer-events: none;
}

.feature-card::before {
  border-top-width: 3px;
  border-bottom-width: 3px;
  border-image: linear-gradient(90deg, #3b82f6, #60a5fa) 1;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card::after {
  border-left-width: 3px;
  border-right-width: 3px;
  border-image: linear-gradient(180deg, #3b82f6, #60a5fa) 1;
  transform: scaleY(0);
  transition: transform 0.3s ease 0.15s;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  transform: scaleY(1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #3b82f6;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

