/* =============================
   ABOUT PAGE BANNER
============================= */
.banner {
  background-image: url('../img/sincerely-media-4dSXcNTyXaI-unsplash.jpg'); /* replace with your image */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll; /* avoids mobile parallax bugs */
  background-size: cover;
}

.banner .content {
  background-color: rgba(0, 0, 0, 0.8); /* dark tint over the image */
  padding: 200px 0; /* vertical spacing */
  width: 100%;
}

.banner .content h1,
.banner .breadcrumb > li {
  color: #fff !important;
}

/* Divider under heading */
.banner hr {
  width: 80px;
  margin: 32px auto 22px auto;
  border: 0;
  height: 5px;
  background: #6efa8f; /* your site’s green */
}

/* Breadcrumb */
.banner .breadcrumb {
  font-size: 14px;
  text-transform: uppercase;
  margin: 15px 0 0;
  background: transparent;
  justify-content: center;
}

.banner .breadcrumb > li {
  font-weight: 400;
  display: inline;
}

.banner .breadcrumb > li a {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.banner .breadcrumb > li a:hover {
  opacity: 0.9;
}

.banner .breadcrumb > li + li:before {
  content: " / ";
  color: #fff;
  padding: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner .content {
    padding: 120px 0; /* less vertical padding on mobile */
  }
  .banner .content h1 {
    font-size: 2rem;
  }
}
.about {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-intro h2.title-about {
    font-size: 36px;
    font-weight: 700;
    color: #006400;
}

.about-intro h4.subtitle {
    font-size: 22px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.green-divider {
    width: 80px;
    height: 3px;
    background-color: #006400;
    margin: 15px auto 30px;
    border: none;
    border-radius: 2px;
}

.intro-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.about-section {
    margin: 50px auto; /* centers block with auto left/right */
    max-width: 900px;  /* optional: limit width for readability */
    text-align: center; /* center-align text inside */
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
    margin-bottom: 50px;
    scroll-margin-top: 80px;
}

.about-alt {
    background-color: #e8f5e9;
    padding: 30px;
    border-radius: 8px;
}

.about-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #28a745;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.mantra {
    font-weight: 700;
    font-size: 20px;
    color: #2e7d32;
}

.elevator-pitch {
    font-style: italic;
    font-size: 18px;
    color: #006400;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section.visible {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 1;
     transform: translateY(0);
    transition: all 0.8s ease-out;
}
.about-section:nth-child(1) { transition-delay: 0.1s; }
.about-section:nth-child(2) { transition-delay: 0.2s; }
.about-section:nth-child(3) { transition-delay: 0.3s; }
.floating-nav {
    position: fixed;
    top: 50%;
    left: -80px; /* start off-screen */
    transform: translateY(-50%);
    background-color: rgba(0,100,0,0.7);
    padding: 15px 12px;
    border-radius: 10px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: left 0.4s ease, opacity 0.4s ease;
}

/* Scroll-based near section: barely visible */
/* Peek when near sections */
.floating-nav.near-section {
    opacity: 0.2;       /* barely visible */
    pointer-events: auto; /* allow hovering */
    left: 10px;
}

/* Fully visible on hover */
.floating-nav:hover {
    left: 20px;
    opacity: 1;
}

/* Mouse near or hover: fully visible */
.floating-nav.peek {
    left: 20px;
    opacity: 1;
    pointer-events: auto;
}

/* Fully visible on hover */
.floating-nav.peek:hover {
    left: 20px;
    opacity: 1;
}

/* Nav links */
.floating-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floating-nav ul li {
    margin: 10px 0;
}

.floating-nav ul li a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.floating-nav ul li a:hover,
.floating-nav ul li a.active {
    color: #ffeb3b;
    background: rgba(255, 255, 0, 0.1);
}
@media screen and (max-width: 768px) {
    .floating-nav {
        display: none;
    }
}
/* Responsive tweaks for mobile */
@media screen and (max-width: 768px) {
    .about {
        padding: 40px 20px; /* less padding on small screens */
    }

    .about-intro h2.title-about {
        font-size: 28px;  /* smaller headline */
    }

    .about-intro h4.subtitle {
        font-size: 18px;
    }

    .green-divider {
        width: 60px;
        margin-bottom: 20px;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .about-section {
        margin: 30px auto; /* smaller margin on mobile */
        padding: 20px;     /* optional: add padding for better spacing */
        max-width: 95%;    /* almost full width */
        text-align: center;
        transform: translateY(20px); /* smaller initial transform for fade-in */
    }

    .about-section h3 {
        font-size: 20px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.6;
    }

    .mantra {
        font-size: 18px;
    }

    .elevator-pitch {
        font-size: 16px;
    }
}
/* Brand Meaning section list styling */
/* Default: hide bullets, center text for PC */
.about-alt ul {
    list-style: none;       /* remove bullets */
    padding-left: 0;
    margin: 15px 0;
    text-align: center;     /* center content on PC */
}

.about-alt ul li {
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-left: 0;        /* no space for bullet on PC */
}

/* Target only the first two items for special font */
.about-alt ul li:first-child,
.about-alt ul li:nth-child(2) {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-style: italic;
    color: #2e7d32;
    line-height: 1.6;
}

/* Custom bullets for mobile */
@media screen and (max-width: 768px) {
    .about-alt ul {
        text-align: left;   /* left-aligned on mobile */
        padding-left: 20px; /* padding for bullets */
    }

    .about-alt ul li {
        padding-left: 25px; /* space for bullet */
        font-size: 14px;
        line-height: 1.5;
    }

    /* Small green circle bullet */
    .about-alt ul li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.55em;
        width: 6px;
        height: 6px;
        background-color: #2e7d32;
        border-radius: 50%;
    }

    /* Adjust first two items bullets */
    .about-alt ul li:first-child::before,
    .about-alt ul li:nth-child(2)::before {
        width: 6px;
        height: 6px;
        top: 0.55em;
    }
}
/* =============================
   CALL TO ACTION
============================= */
.custom-button {
  display: inline-block;
  background: #006400; /* Brand green */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px; /* pill shape */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 100, 0, 0.2);
}

.custom-button:hover {
  background: #004d00; /* darker green */
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 100, 0, 0.3);
}

.custom-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 100, 0, 0.2);
}
.call-to-action {
  position: relative;
  background: url('../img/cta-bg.jpg') no-repeat center center/cover; /* add your CTA background */
  padding: 100px 0;
  color: #fff;
  padding-bottom: 0;
}

.call-to-action .section-overlay {
  background: rgba(0, 0, 0, 0.75); /* dark tint so text stands out */
  padding: 80px 20px;
  border-radius: 8px;
}

.call-to-action .top-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.call-to-action .top-text h1 span {
  color: #28a745; /* emphasize "Request" */
}

.call-to-action .top-text h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: #ddd;
}

/* Content */
.call-to-action-content {
  text-align: center;
}

.call-to-action-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.call-to-action-content ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.call-to-action-content ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #28a745;
}

/* CTA button */
.call-to-action .custom-button {
  display: inline-block;
  padding: 14px 35px;
  background: #28a745;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.call-to-action .custom-button:hover {
  background: #218838;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .call-to-action {
    padding: 60px 0;
  }
  .call-to-action .top-text h1 {
    font-size: 2rem;
  }
  .call-to-action .top-text h4 {
    font-size: 1rem;
  }
}


