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

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom right, #f4f1ee, #e6dace);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: 100vh;
}

section {
  padding: 80px 5%;
  max-width: 100%;
  margin: 0 auto;
}

p {
  color: rgb(0, 0, 0);
}

/* TRANSITION */

a,
.btn {
  transition: all 300ms ease;
}

/* DESKTOP NAV */

nav,
.nav-links {
  display: flex;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.6); /* Brighter base */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #241D1D;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-radius: 0 0 1rem 1rem; /* Slight roundness at bottom */
}
.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1.1rem;
}

.nav-links i {
  margin-right: 8px;
  color: #2D2D2D;
  font-size: px;
  transition: color 0.3s ease;
}

.nav-links a {
  color: #2D2D2D;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  mix-blend-mode:darken;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #b52d51;
  left: 0;
  bottom: 0;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #b52d51;
}

.nav-links a:hover i,
.nav-links a.active i {
  color: #b52d51;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.logo {
  font-size: 1.8rem;
  color: #b52d51;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  align-items: center;
  display: flex;
  gap: 4px; /* spacing between image and text */
}

.nav-logo-img {
  height: 68px; /* adjust as needed */
  width: auto;
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo:hover {
  color: #2E8B57;
  text-shadow: 0 0 10px rgba(29, 167, 11, 0.6);
  transform: scale(1.05);
}

/* HAMBURGER MENU */

#hamburger-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  width: 30px;
  height: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 100%;
  height: 4px;
  background-color: black;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease-in-out;
  transform: none;
  opacity: 1;
}

.menu-links {
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0;
  transition: max-height 0.3s ease-in-out;
  z-index: 999;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  transition: all 0.3 ease-in-out;
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 400px; /* Enough to show all links */
  padding: 1rem 0;
  backdrop-filter: blur(5px);
  display: flex;
}

.hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -5px);
}


/* HERO SECTION */

.hero-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
  z-index: 2;
  animation: floatIn 1.2s ease-out forwards;
  animation-delay: 0.2s;
}

.hero-content:hover {
  transform: scale(1.01);
}

.hero {
  position: relative;
  margin-top: 0vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10vh;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 50, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #fff;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #eee;
}

.btn-primary {
  background: linear-gradient(180deg, #66bb6a, #2e7d32) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(46,125,50,0.25), 0 2px 6px rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(46,125,50,0.28), 0 3px 10px rgba(0,0,0,0.07);
  transform: scale(1.05) !important;
  transition: transform 0.3s ease;
}

.btn-primary:focus-visible { 
  outline: 3px solid #81c784; 
  outline-offset: 2px; 
}
  

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 16s infinite, zoomSlide 16s infinite;
  transition: opacity 1s ease-in-out;
  animation-fill-mode: both;
  z-index: 0;
  pointer-events: none;
  will-change: opacity, transform;
}

.slide1 {
  background-image: url('./assets/slide1.jpeg');
  animation-delay: 0s, 0s;
  z-index: 0;
}

.slide2 {
  background-image: url('./assets/slide2.jpeg');
  animation-delay: 4s, 4s;
  z-index: 0;
}

.slide3 {
  background-image: url('./assets/slide3.jpeg');
  animation-delay: 8s, 8s;
  z-index: 0;
}

.slide4 {
  background-image: url('./assets/slide4.jpeg');
  animation-delay: 12s, 12s;
  z-index: 0;
}

@keyframes fadeSlide {
  0%, 5%     { opacity: 0; }
  6%, 23.99% { opacity: 1; }

  24%, 29%   { opacity: 0; }
  30%, 47.99%{ opacity: 1; }

  48%, 53%   { opacity: 0; }
  54%, 71.99%{ opacity: 1; }

  72%, 77%   { opacity: 0; }
  78%, 95.99%{ opacity: 1; }

  96%, 100%  { opacity: 0; }
}

@keyframes zoomSlide {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
  }
  95% {
    opacity: 0;
  }
  100% {
    transform: scale(1);
  }
}

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

.hero-content h1,
.hero-content p,
.hero-content a {
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
}

.hero-content h1 {
  animation-delay: 0.3s;
}

.hero-content p {
  animation-delay: 0.6s;
}

.hero-content a {
  animation-delay: 0.9s;
}

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

/* ABOUT SECTION */

#about {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#vanta-about {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

#about .container {
  position: relative;
  z-index: 2;
}

/* Border for all cards inside #about */
#about .about-who-we-are-card,
#about .about-founders-card,
#about .stats-glass-card,
#about .card {
  position: relative;          
  border-radius: 1rem;        
  background: rgba(255,255,255,0.6); 
  z-index: 1;                  
  padding: 2rem;
  overflow: hidden;            
}

/* Gradient border with rounded corners */
#about .about-who-we-are-card::before,
#about .about-founders-card::before,
#about .stats-glass-card::before,
#about .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px; /* thickness of border */
  border-radius: 1rem;
  background: linear-gradient(135deg, #a8e6cf, #ffd1dc);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude; /* ensures the gradient only appears as border */
  pointer-events: none;
  z-index: 0; /* behind card content */
}

.about {
  padding: 6rem 3rem 5%;
  background-color: #f4f9f4;
  color: #2d2d2d;
}

.about h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #2e8b57;
  margin-bottom: 0.6rem;
  color: #2e684e;
  background: linear-gradient(to right, #50c58d, #2c4c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Origin story row */
.about-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.about-who-we-are-card,
.about-founders-card {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gradient-border .about-founders-card {
  background: #fff; /* card inside stays clean */
  border-radius: 12px;
  padding: 1.5rem;
}

.about-who-we-are-card {
  text-align: center;
}

/* Founder block inside card */
.about-founders-card .founder-block {
  text-align: center;
  margin-bottom: 2rem;
}

.about-founders-card .founder-block img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #2e8b57;
}

.about-founders-card h3 {
  font-size: 1.8rem;
  color: #2e8b57;
  margin-bottom: 1.5rem;
}

.about-founders-card h4 {
  font-size: 1.2rem;
  color: #b52d51;
  margin-bottom: 0.3rem;
}

.about-founders-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.4;
}

.green-heading {
  color: #2e8b57;
  font-weight: 600;
}

.center-text {
  text-align: center;
}

.founder-block-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.founder-block-row img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #2e8b57;
  flex-shrink: 0;
}

.founder-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #444;
}

.info-block h3,
.about-founders-card h3 {
  margin-bottom: 0.5rem; /* Spacing below headings */
  font-size: 1.4rem;
}

.about-founders-card h3 {
  margin-bottom: 1rem; /* Spacing below headings */
  font-size: 1.4rem;
}

.info-block {
  margin-bottom: 1rem; /* Space between mission/vision/roots blocks */
  justify-content: center;
}

.founder-block-row {
  margin-bottom: 2rem;
}

.founder-details h4 {
  margin: 0;
  color: #b52d51;
  font-size: 1.1rem;
}

.founder-details p {
  margin: 0.3rem 0 0 0;
  font-size: 0.95rem;
}

/* Stats */

.stats-glass-card {
  margin: 1.5rem 0;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: #fff;
  margin-bottom: 3rem;
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-around;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
}

.stats-glass-card .stat-box {
  text-align: center;
  flex: 1 1 180px;
  max-width: 220px;
}

.stats-glass-card .stat-box h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #2e8b57; 
} 

.stats-glass-card .stat-box p {
  font-size: 1rem;
  opacity: 0.9;
}

/* What Sets Us Apart */

.unique-row {
  padding-bottom: 2rem;
}

.unique-row h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #b52d51;
}

.unique-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  flex: 1 1 250px;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: auto;          /* allows dynamic height */
  min-height: auto;      /* remove any forced min-height */
  flex: 1 1 auto;  
}

.unique-cards,
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: start; /* ensures all cards align to top */
  padding-top: 1rem;
}



.unique-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch; /* makes sure all cards stretch to same height */
} 

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

.card i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2e8b57; 
  transition: color 0.3s ease;
}

.about-text,
.card,
.stat-box {
  max-width: 100%;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}


/* TESTIMONIAL SECTION */

.testimonial-scroll-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #c8f5d3, #f9d7e9);
  text-align: center;
}

.testi-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  color: #2e684e;
  background: linear-gradient(to right, #50c58d, #2c4c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-scroll-wrapper {
  overflow-x: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

.testimonial-scroll-wrapper::-webkit-scrollbar {
  display: none;             /* Chrome, Safari */
}

.testimonial-scroll {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
}

.testimonial-card {
  flex: 0 0 auto;
  min-width: 100px;
  max-width: 260px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.2s ease-in-out;
}

.testimonial-location {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 3px;
  text-align: right;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  color: #666;
  text-align: right;
}

/* Testimonial cards gradient border */
.testimonial-card,
.see-more-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6); /* keep card content visible */
  border-radius: 1rem;                 /* rounded corners */
  padding: 1.5rem;
  overflow: hidden;                     /* contain pseudo-element */
  z-index: 1;
}

/* Gradient border effect */
.testimonial-card::before,
.see-more-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px; /* thickness of the border */
  border-radius: 1rem;
  background: linear-gradient(135deg, #a8e6cf, #ffd1dc);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;  /* gradient only on border */
  pointer-events: none;
  z-index: 0;
}

/* Special styling for the 'See More' button card */
.see-more-card {
  flex: 0 0 auto;
  min-width: 200px;
  height: 100%;
  padding: 1rem 1.5rem;
  background-color: #e0f7ec;
  color: #007a5e;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
  margin-top: auto;
  margin-bottom: auto;
}

.see-more-card:hover {
  background-color: #d1f3e7;
}

.see-more-card p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.see-more-card i {
  transition: transform 0.3s ease;
}

.see-more-card:hover i {
  transform: translateX(6px);
}

/* SISTER CONCERN SECTION */

.sister-concern-section {
  padding: 4rem 1.5rem;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sister-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2e5744;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.sister-concern-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.gradient-border {
  background: linear-gradient(135deg, #a8e6cf, #ffd3e2);
  padding: 4px; /* thickness of border */
  border-radius: 16px; /* rounded border */
  display:inline;
}

.gradient-border .sister-concern-card {
  background: #fff; /* card inside stays clean */
  border-radius: 12px;
  padding: 1.5rem;
}

.kanippallil-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  border-radius: 0.8rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.sister-content {
  text-align: center;
}

.nursery-name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #2e684e;
  background: linear-gradient(to right, #50c58d, #2c4c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.socials-links {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.socials-links a {
  position: relative;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  color: #2e4a38;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 60% 40% 35% 65% / 50% 50% 50% 50%; /* Asymmetric abstract blob */
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2),
              0 8px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  text-decoration: none;
  font-family: inherit;
}

.socials-links a:hover {
  color: #fff;
  background: linear-gradient(145deg, #2c4c3a, #4fa47f);
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 0 18px rgba(50, 150, 120, 0.4),
              0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Interaction row layout */
.interaction-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Call & Locate buttons - same glassy style as social links */
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2e4a38;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem; /* less round than pill for elegance */
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2),
              0 8px 15px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.35s ease;
}


.action-btn:hover {
  color: #fff;
  background: linear-gradient(145deg, #2c4c3a, #4fa47f);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 18px rgba(50, 150, 120, 0.4),
              0 6px 18px rgba(0, 0, 0, 0.15);
}


.action-btn i {
  font-size: 1.1rem;
}

.social-links a {
  border-radius: 60% 40% 35% 65% / 50% 50% 50% 50%;
}

/* Make sure social icons align nicely with buttons */
.interaction-row .social-links {
  display: flex;
  gap: 1rem;
}

/* SERVICES PAGE */

.vanta-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* stays behind everything */
}

.vanta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vanta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fdf9f4;
  opacity: 0.95; /* adjust blend strength */
}

.services-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

.services-section {
  padding: 7rem 2rem;
  background: #f6fef7;
  color: #234d20;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e8b57;
}

.section-header p {
  font-size: 1.1rem;
  color: #444;
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid transparent;
  background: 
    linear-gradient(#fff, #fff) padding-box, /* card content background */
    linear-gradient(-135deg, #a8e6cf, #ffd1dc) border-box; /* gradient border */
  box-shadow: 0 8px 24px rgba(0, 128, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 128, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 1rem;
  color: #2e8b57;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  margin: 0 1rem 1.5rem;
}

.cta {
  text-align: center;
  margin-top: 4rem;
}


/* CONTACT US */


.contact-page {
  padding: 12vh 2rem;
  background: linear-gradient(135deg, #e0f7ec, #d0e9ff); /* soft mint-blue gradient */
}

/* Heading Section */
.contact-heading {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.contact-heading h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003c3c;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

.contact-heading p {
  font-size: 1.1rem;
  color: #444;
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Contact Cards Container */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* ---------- CONTACT PAGE CARDS ---------- */
.contact-card .inner-card {
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.6); /* glass-like */
  padding: 2rem;
  overflow: hidden;
  z-index: 1;
}

/* Gradient border effect */
.contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px; /* border thickness */
  border-radius: 1rem;
  background: linear-gradient(135deg, #a8e6cf, #ffd1dc);
  -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

/* Optional hover animation */
.contact-card .inner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

/* Shared Card Styles */
.contact-card {
  flex: 1 1 300px;
  background: #f5fbf9;
  border-radius: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.info-block i {
  color: #004d40;
}

/* Company Info */
.company-logo {
  width: 100px;
  margin-bottom: 1rem;
}

.company-name {
  font-size: 2rem;
  color: #004d40;
  font-weight: 700;
  margin: 0.4rem 0;
}

.tagline {
  font-size: 1rem;
  font-style: italic;
  color: #00796b;
  margin-bottom: 1rem;
}

.company-info p {
  margin: 0.4rem 0;
  color: #444;
  line-height: 1.5;
}

/* Contact Details */
.section-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #004d40;
  text-align: center;
}

.social-links {
  margin-top: 1rem;
}

.map-link {
  display: inline-block;
  margin-top: 6px;
  color: #2e7d32;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.map-link:hover {
  color: #1b5e20;
  text-decoration: underline;
}

.social-links a {
  margin-right: 12px;
  color: #00796b;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: #004d40;
  transform: scale(1.1);
}

/* Ensure both cards are same height */
.contact-card:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-media-section {
  margin-top: 2rem;
  text-align: center;
}

.social-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #004d40;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
}

.social-icons a {
  text-decoration: none;
  color: #444;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.social-icons a i {
  font-size: 1.2rem;
}

.social-icons a:hover {
  color: #1b5e20;
}

/* FORM STYLING */

.form-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #004d40;
  text-align: center;
}

.form-subheading {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.4;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  width: 100%;
  flex-grow: 1;
}

.custom-form label {
  font-weight: 600;
  color: #004d40;
}

.custom-form input,
.custom-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid #cfcfcf;
  border-radius: 0.6rem;
  font-size: 1rem;
  background: #f9f9f9;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.custom-form input:focus,
.custom-form textarea:focus {
  border-color: #4db6ac;
  box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.2);
  outline: none;
}

.custom-form button {
  background-color: #00796b;
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-form button:hover {
  background-color: #004d40;
  transform: translateY(-2px);
}

/* REVIEWS PAGE */

.gr-reviews-wrap, .garden-reviews {
    --gr-bg: radial-gradient(1200px 600px at 10% -10%, #e8f5eb 0%, #f7fcf8 35%, #ffffff 70%);
    --gr-surface: #ffffff;
    --gr-ink: #1f2f25;
    --gr-muted: #577361;
    --gr-accent: #2e7d32;         /* leaf green */
    --gr-accent-2: #66bb6a;       /* lighter green */
    --gr-gold: #f1c40f;           /* star color */
    --gr-ring: rgba(46, 125, 50, 0.35);
    --gr-shadow: 0 10px 25px rgba(31,47,37,0.07), 0 2px 8px rgba(31,47,37,0.06);
    --gr-radius: 18px;
    --gr-radius-lg: 22px;
    --gr-gap: clamp(16px, 2.5vw, 28px);
    background: radial-gradient(1200px 600px at 10% -10%, #e8f5eb 0%, #f7fcf8 35%, #ffffff 70%);
    padding: clamp(28px, 4vw, 60px) 16px 90px;
    color: #1f2f25; 
    position: relative;
    overflow: clip; 
    min-height: 100vh;         /* full height */
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical centering */
  align-items: center;       /* horizontal centering */
  position: relative;
  }

  .garden-reviews {
    padding-top: 5rem;
  }

  /* ---------- Hero ---------- */
  .gr-hero {
    max-width: 980px;
    margin: 0 auto clamp(28px, 5vw, 56px);
    text-align: center;
    margin-top: 10rem;
  }
  .gr-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
  }
  .gr-hero-sub {
    color: var(--gr-muted);
    font-size: clamp(14px, 2.2vw, 18px);
    margin: 0 auto 22px;
    max-width: 720px;
  }
  .gr-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gr-accent-2), var(--gr-accent));
    color: #fff;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(46,125,50,0.25), 0 2px 6px rgba(0,0,0,0.06);
    transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  }
  .gr-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(46,125,50,0.28), 0 3px 10px rgba(0,0,0,0.07); }
  .gr-btn:focus-visible { outline: 3px solid var(--gr-ring); outline-offset: 2px; }
  .gr-btn-lg { font-size: clamp(15px, 2.4vw, 18px); padding: 14px 22px; }
  .gr-btn .gr-icon { width: 20px; height: 20px; }

  .icon-arrow {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin: 2rem auto 0 auto;
  width: 30px;
  cursor: pointer;
  height: auto;
  animation: bounce 1.5s infinite;
  filter: drop-shadow(0 0 5px #00ffe1);
}

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

  /* ---------- Reviews Header ---------- */
  .gr-reviews { 
    max-width: 1140px; 
    margin: 0 auto; 
  }

  .gr-reviews-header { text-align: center; margin-bottom: 14px; }
  .gr-reviews-header h2 {
    font-size: clamp(22px, 3.4vw, 32px);
    margin: 8px 0 6px;
    letter-spacing: -0.01em;
  }
  .gr-reviews-sub {
    color: var(--gr-muted);
    margin: 0 auto;
    max-width: 720px;
    font-size: clamp(13px, 2vw, 16px);
  }
  .gr-heading-icon { width: 28px; height: 28px; color: var(--gr-accent); opacity: .9; }

  /* ---------- Grid & Card ---------- */
  .gr-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gr-gap);
  }
  .gr-card {
    grid-column: span 12;
    background: var(--gr-surface);
    border-radius: var(--gr-radius);
    padding: clamp(16px, 2.6vw, 22px);
    box-shadow: var(--gr-shadow);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .gr-card::after {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(260px 120px at 110% -10%, rgba(102,187,106,0.08), transparent 60%);
    z-index: -1;
  }

  /* Gradient border effect */
.gr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3px; /* border thickness */
  border-radius: 1rem;
  background: linear-gradient(135deg, #a8e6cf, #ffd1dc);
  -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0; /* behind content */
}

  .gr-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(31,47,37,0.10), 0 6px 14px rgba(31,47,37,0.07); }
  @media (min-width: 640px){ .gr-card{ grid-column: span 6; } }
  @media (min-width: 980px){ .gr-card{ grid-column: span 4; } }

  .gr-card-top { display:flex; align-items:center; justify-content:space-between; margin-bottom: 10px; }
  .gr-stars { font-size: 18px; letter-spacing: 2px; color: var(--gr-gold); }
  .gr-text { font-size: 15.5px; line-height: 1.6; margin: 4px 0 12px; }
  .gr-meta { display:flex; align-items:center; gap:8px; font-weight:600; color: var(--gr-ink); }
  .gr-name { font-weight: 700; }
  .gr-place { color: var(--gr-muted); font-weight: 600; }
  .gr-dot { opacity: .5; }

  /* ---------- Floating Action Button ---------- */
  .gr-fab {
    position: fixed;
    right: clamp(14px, 3vw, 24px);
    bottom: clamp(14px, 3vw, 24px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 0;
    background: linear-gradient(180deg, var(--gr-accent-2), var(--gr-accent));
    color: #fff;
    box-shadow: 0 14px 34px rgba(46,125,50,0.30), 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 60;
    transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
  }
  .gr-fab:hover { transform: translateY(-1px); }
  .gr-fab:focus-visible { outline: 3px solid var(--gr-ring); outline-offset: 3px; }
  .gr-fab .gr-icon { width: 20px; height: 20px; }
  .gr-fab-text { font-weight: 800; letter-spacing: .2px; font-size: 14.5px; }

  /* ---------- Modal ---------- */
  
  .gr-modal-backdrop[hidden] { display: none; }
  .gr-modal-backdrop {
    position: fixed; inset: 0; z-index: 80;
    background: rgba(17, 27, 21, 0.45);
    backdrop-filter: blur(3px);
    display: grid; place-items: center;
    padding: 16px;
    animation: gr-fade-in .15s ease-out;
  }
  .gr-modal {
    width: min(680px, 100%);
    background: var(--gr-surface);
    border-radius: 1rem;
    box-shadow: 0 28px 60px rgba(0,0,0,0.25);
    position: relative;
    overflow: clip;
    animation: gr-pop-in .18s ease-out;
  }

  .gr-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px; /* border thickness */
  border-radius: inherit; /* same radius as modal */
  background: linear-gradient(135deg, #a8e6cf, #ffd1dc);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}
  .gr-modal-header { padding: 18px 18px 0; }
  .gr-modal-header h3 { margin: 0 0 6px; font-size: clamp(18px, 2.8vw, 22px); }
  .gr-modal-header p { margin: 0 0 10px; color: var(--gr-muted); font-size: 14px; }
  .gr-modal-body { padding: 12px 18px 18px; }

  .gr-modal-close {
    position: absolute;
    top: 10px; right: 10px;
    border: 0; background: #fff; color: var(--gr-ink);
    border-radius: 12px; width: 36px; height: 36px;
    display: grid; place-items: center; cursor: pointer;
    box-shadow: var(--gr-shadow);
  }
  .gr-modal-close:hover { background: #f6faf7; }
  .gr-modal-close:focus-visible { outline: 3px solid var(--gr-ring); outline-offset: 2px; }

  @keyframes gr-fade-in { from{ opacity: 0 } to{ opacity: 1 } }
  @keyframes gr-pop-in { from{ transform: translateY(6px) scale(.98); opacity: 0 } to{ transform: none; opacity: 1 } }

  /* ---------- Demo Form (replaceable) ---------- */

.review-form input,
.review-form textarea {
 width: 100%;
 padding: 0.9rem 1rem;
 border: 1px solid #cfcfcf;
 border-radius: 0.6rem;
 margin-bottom: 1.2rem;
 font-family: inherit;
 font-size: 1rem;
 transition: border 0.3s ease, box-shadow 0.3s ease;
}


.review-form input:focus,
.review-form textarea:focus {
 border-color: #4db6ac;
 box-shadow: 0 0 0 3px rgba(77, 182, 172, 0.2);
 outline: none;
}


.review-form button {
 background-color: #2e7d32;
 color: #fff;
 padding: 0.75rem 1.5rem;
 border: none;
 border-radius: 8px;
 cursor: pointer;
 font-size: 1rem;
 transition: background 0.3s ease;
 display: block;
 margin: auto;
}


.review-form button:hover {
 background-color: #b52d51;
}


.rating-row {
 display: flex;
 align-items: center;
 gap: 1rem;
 margin-bottom: 1rem;
}


.rating-label {
 margin: 0;
 font-weight: bold;
 color: #1b5e20;
}


.star-rating {
 display: flex;
 flex-direction: row-reverse;
 justify-content: flex-start;
 gap: 0.3rem;
 font-size: 1.5rem;
}


.star-rating input[type="radio"] {
 display: none;
}


.star-rating label {
 font-size: 1.5rem;
 color: #ccc;
 cursor: pointer;
 transition: color 0.2s ease;
}


.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
 color: gold;
}

  /* ---------- Accessibility helpers ---------- */
  .gr-visually-hidden {
    position: absolute !important; width: 1px; height: 1px; margin: -1px;
    border: 0; padding: 0; white-space: nowrap; clip-path: inset(50%);
    clip: rect(0 0 0 0); overflow: hidden;
  }

#form-status {
  display: none;  /* hide overlay by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* semi-transparent */
  backdrop-filter: blur(4px);           /* nice blur effect */
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 500;
}

.spinner {
  border: 4px solid #e0e0e0;
  border-top: 4px solid #2e7d32; /* green */
  border-radius: 50%;
  width: 40px; height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

#status-message {
  font-size: 16px;
  color: #2e7d32;
  font-weight: bold;
}

/* ================== FOOTER ================== */

.site-footer {
  background: linear-gradient(135deg, #2a3c2f, #101a13);
  color: #dcedc8;
  padding: 0rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139,195,74,0.1), transparent 70%);
  animation: slow-rotate 40s linear infinite;
  z-index: 0;
}

@keyframes slow-rotate {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 1.4rem;
  font-weight: 600;
  color: #c8e6c9;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #dcecdc;
}

/* Call-to-Action Button */
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem; 
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  cursor: pointer;
}
.footer-btn:hover {
  background: linear-gradient(90deg, #388e3c, #81c784);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Socials */
.social-links {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}
.icon {
  cursor: pointer;
  color: #a5d6a7;
  transition: all 0.3s ease;
}
.icon:hover {
  color: #66bb6a;
  transform: scale(1.1);
}

/* Contact */
.footer-contact p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: #cfd8dc;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 0.5rem;
  color: #81c784;
}

.maps-link {
  color: #c8e6c9;       /* leaf green */
  font-size: 0.9rem;
  margin-left: 3px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.maps-link:hover {
  color: #66bb6a;       /* lighter green on hover */
  text-decoration: none;
}

/* Quick Links Row */
.footer-links-row {
  text-align: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(200, 230, 201, 0.2);
  padding: 0.8rem 0;
  position: relative;
  z-index: 1;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #c8e6c9;
  position: relative;
  transition: all 0.3s ease;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #66bb6a;
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: #81c784;
}
.footer-links a:hover::after {
  width: 100%;
}

/* Newsletter */
.newsletter-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #e8f5e9;
}
.newsletter-text {
  font-size: 0.95rem;
  color: #c8e6c9;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.05);
  padding: 0.5rem;
  border-radius: 9999px;
}
.newsletter-input {
  flex: 1;
  padding: 0.6rem 0.9rem;
  border: none;
  outline: none;
  font-size: 0.9rem;
  border-radius: 9999px;
  background: transparent;
  color: #fff;
}
.newsletter-input::placeholder {
  color: #a5d6a7;
}
.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #66bb6a, #2e7d32);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
.newsletter-btn .arrow {
  transition: transform 0.3s ease;
}
.newsletter-btn:hover {
  background: linear-gradient(135deg, #43a047, #1b5e20);
}
.newsletter-btn:hover .arrow {
  transform: translateX(5px);
}

/* Bottom */
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

.footer-bottom p {
  color: #f0eaea;
}

.footer-bottom i {
  color: #e57373;
}

/* ===== Projects Gallery Section ===== */

.projects-gallery {
  padding: 2rem 2rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: linear-gradient(90deg, #1d3b29, #3c6e47);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.projects-header {
  margin-bottom: 40px;
}

.projects-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2e7d32; /* Green Roses theme */
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.projects-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(to right, #50c58d, #2c4c3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.projects-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.projects-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Masonry Layout ===== */
.masonry {
  column-count: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
  border-radius: 14px;
  padding: 4px; /* space for border */
  background: linear-gradient(135deg, #c8f5d3, #f9d7e9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;

  /* Prevent image itself from shrinking inside */
  background-clip: padding-box, border-box;
}

.masonry img:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

