body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color:#0f1111;
}

/* Hero */
.hero {
  background: white;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.cta-btn {
  margin-top: 20px;
  background: #ff6a5b;
  border: none;
  padding: 15px 30px;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
}
.cta-btn:hover { background: #e05545; }

/* General */
h2 {
  font-weight: bold;
}
.tagline {
  font-size: 30px;
  color: #1f1e1e;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 100%;
  box-sizing: border-box;
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Animated Character Effect */
.animate-character {
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #84994F 10%,
    #B45253 29%,
    #FCB53B 67%,
    #FFE797 80%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 40px; /* Reduced size from 60px */
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

@keyframes progress1 {
  0% {
    transform: scalex(0);
    opacity: 0.5;
  }
  90% {
    transform: scalex(1);
    opacity: 1;
  }
  92% {
    transform: scalex(1);
    opacity: 1;
  }
  100% {
    transform: scalex(1);
    opacity: 0;
  }
}

@keyframes progress2 {
  0% {
    transform: scale(0.3, 0.8) translateZ(0);
    opacity: 0;
  }
  90% {
    transform: scale(1, 1) translateX(300px) translateZ(0);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translateX(300px) translateZ(0);
    opacity: 0;
  }
}

.line {
  position: absolute;
  top: 50%;
  width: 300px;
  left: 50%;
  margin-left: -150px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.line::before {
  animation: progress1 4s infinite;
  transform-origin: 0 0;
  content: "";
  display: block;
  width: 300px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.4) 80%, rgba(255, 255, 255, 1));
}

.line::after {
  content: "";
  position: absolute;
  animation: progress2 4s infinite;
  transform-origin: 90% 50%;
  margin-left: -24px;
  top: -9px;
  width: 30px;
  height: 21px;
  border-radius: 2px;
  background: rgba(210, 189, 255, 0.55);
  filter: blur(8px);
  box-shadow: 0 0 10px 6px rgba(210, 189, 255, 0.4),
    -20px 0 15px 4px rgba(210, 189, 255, 0.3),
    -40px 0 15px 2px rgba(210, 189, 255, 0.2),
    -60px 0 10px 1px rgba(210, 189, 255, 0.1),
    -80px 0 10px 1px rgba(210, 189, 255, 0.05);
}


/* Services */
#services {
  padding: 60px 20px;
  text-align: center;
}

#services h2 {
  margin-bottom: 30px;
  color: #d1e2df; /* Teal for headings */
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  border: 2px solid #76D7C4; /* Mint border */
  border-radius: 10px;
  padding: 20px;
  width: 350px;
  position: relative;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none !important;
}

.card:hover {
  background-color: #F5B895; /* Peach hover */
  transform: translateY(-10px);
  box-shadow:
    inset 0 0 40px whitesmoke,
    inset 10px 0 60px #f0f,
    inset -10px 0 60px #0ff,
    0 0 30px #fff,
    -5px 0 40px #f0f,
    5px 0 40px #0ff;
}

.services img {
  max-width: 100px;
  margin-bottom: 15px;
}

/* Single Service */
.single-service {
  background: #f9f9f9;
  padding: 80px 40px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.service img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.service h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.service p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.service a {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #76D7C4;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
}

.service a:hover {
  background-color: #5bb3a8;
}

/* Photos */
.photos {
  background: #f0f0f0;
  padding: 60px 20px;
  text-align: center;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.photo-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Videos */
.videos {
  background: #e9e9e9;
  padding: 60px 20px;
  text-align: center;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-grid iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

/* About */
.about {
  background: #f0f8ff;
  padding: 20px 20px 40px 20px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
  margin: 40px auto 40px auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.about a {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #ff6a5b;
}
.about ul {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}
.about li {
  margin: 10px 0;
  font-weight: bold;
  color: #333;
}

/* Contact */
.contact {
  background: #76D7C4; /* Changed to match header and footer */
  padding: 100px 20px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  border-radius: 12px;
  background: #fff;
}
.contact input, .contact textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.contact button {
  background: #ff6a5b;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
}
.contact button:hover { background: #e05545; }
.contact a {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #ff6a5b;
}
.service a {
  display: block;
  margin-top: 20px;
  text-decoration: none;
  color: #ff6a5b;
}

/* Opinions */
.opinions {
  background: #e9e9e9;
  padding: 60px 20px;
  text-align: center;
}
.opinion-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.opinion-card {
  background: white;
  border: 2px solid #76D7C4;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.opinion-card:hover {
  transform: translateY(-5px);
}
.opinion-card p {
  font-style: italic;
  margin-bottom: 10px;
}
.opinion-card cite {
  font-weight: bold;
  color: #76D7C4;
}

/* Header */
.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  background-color: #76D7C4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: white;
  flex-wrap: wrap;
  position: relative;
}
.header img {
  max-width: 100px;
  height: auto;
}
.header nav {
  display: flex;
  gap: 20px;
  flex-basis: 100%;
  margin-top: 10px;
  justify-content: center;
}
.header nav a {
  text-decoration: none !important;
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 10px 15px;
  transition: color 0.3s ease;
}
.header nav a:hover {
  color: #f5b895;
}

/* Testimonial */
.testimonial {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  margin: 0;
  padding: 20px;
  border-left: 5px solid #76D7C4;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  background-color: #76D7C4; /* Mint */
  text-align: center;
  padding: 20px;
  font-size: 20px;
  color: white;
  font-family: "Poppins", sans-serif;
}

/* Search Bar */
.search-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.search-input {
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  width: 300px;
  outline: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.search-input::placeholder {
  color: #999;
}
