:root {
  --green: #124c27;
  --gray: #606060;
  --offwhite: #f8f5f0;
}

body {
  background-color: var(--offwhite);
  color: var(--gray);
  font-family: 'Segoe UI', sans-serif;
}
/* LOGO */
.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}
/* NAVBAR SPACING FIX */
.navbar .container {
  padding-left: 0;
  padding-right: 30px;
}

.navbar-brand {
  margin-left: -20px; /* merged your 2 values */
}
.navbar {
  padding: 15px 0;
  min-height: 90px;
}

.brand-name {
  color: var(--green);
  font-weight: 700;
  font-size: 28px;
}

.hero {
  padding: 120px 0;
}
.hero h6 {
  color: var(--green);
  letter-spacing: 2px;
  font-weight: 600;
}

/* BUTTON FIX */
.btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  color: white;
  padding: 14px 35px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0e3a1f;
  border-color: #0e3a1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(18, 76, 39, 0.3);
}
/* NAVBAR LINKS HOVER */
.navbar-nav .nav-link {
  color: var(--gray); /* fixed: was --dark which doesn't exist */
  font-weight: 500;
  font-size: 16px;
  padding: 8px 15px;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--green);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}
/* HERO GRADIENT - LxBxH VERSION */
.hero {
  background: linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: white;
  padding: 100px 0;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.2;
}

.hero .lead {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* HERO BUTTON - WHITE TO MATCH GREEN BG */
.btn-hero {
  background-color: white;
  color: #124c27;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* HERO 3 IMAGES GRID - CRAFTERS HAVEN STYLE */
.hero-images {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 190px 190px;
  gap: 12px;
  height: 392px;
  max-width: 520px;
  margin-left: auto;
}

.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
  cursor: pointer;
  margin-left: 60px;
  filter: brightness(0.85) contrast(1.05);
}

.hero-images img:nth-child(1) { grid-row: span 2; height: 100%; }
.hero-images img:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-images img:nth-child(3) { grid-column: 2; grid-row: 2; }

.hero-images img:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  z-index: 2;
  filter: brightness(1) contrast(1.1);
}
.hero .container { padding-left: 30px; padding-right: 30px; }

/* TICKER BAR - LxBxH BRAND COLORS */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--offwhite);
  padding: 14px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 2px solid var(--green);
}

.ticker {
  display: flex;
  width: max-content;
  animation: scroll-left 22s linear infinite;
}

.ticker span {
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 35px;
  white-space: nowrap;
}

.ticker span::before {
  content: "♦ ";
  color: var(--gray);
  font-size: 14px;
  margin-right: 10px;
}

.ticker span:nth-child(2n) { color: var(--gray); }
.ticker-wrap:hover .ticker { animation-play-state: paused; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================= OUR SERVICES SECTION HOMEPAGE ================= */
.portfolio { background-color: #F5F5F5; padding: 50px 0; }
.portfolio h2 { color: #124C27; font-weight: 700; font-size: 2.5rem; margin-bottom: 10px; }
.portfolio p { color: #606060; font-size: 1.1rem; }
.portfolio-link { text-decoration: none; display: block; }
.portfolio-card { height: 340px; border-radius: 16px; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); filter: brightness(0.75) contrast(0.9); }
.portfolio-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 25px 50px rgba(18,76,39,0.18); filter: brightness(1) contrast(1); }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 25px 20px; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%); transition: all 0.3s ease; }
.portfolio-card:hover .portfolio-overlay { padding-bottom: 30px; }
.portfolio-overlay h5 { font-size: 1.4rem; font-weight: 700; margin: 0; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.portfolio-caption { padding: 18px 8px 0 8px; text-align: left; }
.portfolio-caption h6 { color: #124C27; font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.portfolio-caption p { color: #606060; font-size: 14px; line-height: 1.5; margin: 0; }

/* Mobile */
@media (max-width: 768px) {
  .portfolio { padding: 60px 0; }
  .portfolio-card { height: 280px; }
}
.section-logo { max-width: 120px; height: auto; margin-bottom: 0px; opacity: 0.95; transition: all 0.3s ease; }
.section-logo:hover { opacity: 1; transform: scale(1.05); }

/* ================= STATS SECTION ================= */
.stats { background-color: #FFFFFF; padding: 60px 0; border-bottom: 1px solid #EEEEEE; }
.stat-item { padding: 0 15px; border-right: 1px solid #E0E0E0; }
.stats .col-lg-3:last-child .stat-item { border-right: none; }
.stat-item h3 { font-size: 3.5rem; font-weight: 800; color: #124C27; margin-bottom: 10px; line-height: 1; }
.stat-item h3 span { color: #606060; }
.stat-item p { color: #606060; font-size: 15px; font-weight: 500; margin: 0; }
@media (max-width: 992px) { .stat-item { border-right: none; } }

/* ================= OUR VISION & MISSION SECTION ================= */
.vision { background: linear-gradient(135deg, #0D3A1E 0%, #124C27 50%, #0D3A1E 100%); overflow: hidden; }
.vision .row { align-items: stretch; }
.vision-image-wrapper { position: relative; height: 100%; clip-path: polygon(0 0, 94% 0, 100% 100%, 0% 100%); }
.vision-image-wrapper img { width: 100%; height: auto; object-fit: contain; object-position: center; display: block; }
.vision-text { padding: 50px 50px 50px 90px; background: transparent; color: #FFFFFF; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.vision-text h6 { color: #D1D5DB; font-size: 14px; font-weight: 700; letter-spacing: 2.5px; margin-bottom: 15px; opacity: 0.9; }
.vision-text h2 { font-size: 1.8rem; font-weight: 700; line-height: 1.4; color: #FFFFFF; margin-bottom: 0; }
.vision-text h2 span { color: #B0BEC5; font-weight: 800; }
.mt-5 { margin-top: 3rem !important; }
@media (max-width: 992px) { .vision-image-wrapper { clip-path: none; } .vision-text { padding: 40px 30px; } .vision-text h2 { font-size: 1.5rem; } }

/* ================= OUR PORTFOLIO SECTION ================= */
.portfolio { background: #F8F9FA; padding: 80px 0; }
.portfolio-title { color: #0D3A1E; font-size: 2.2rem; font-weight: 700; margin: 0; }
.portfolio-title span { color: #124C27; }
.view-more { color: #0D3A1E; font-weight: 600; text-decoration: none; font-size: 1rem; transition: all 0.3s ease; }
.view-more:hover { color: #124C27; transform: translateX(5px); }
.portfolio-card { text-align: center; transition: all 0.3s ease; }
.portfolio-card:hover { transform: translateY(-8px); }
.portfolio-img { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.08); margin-bottom: 15px; transition: all 0.3s ease; }
.portfolio-card:hover .portfolio-img { box-shadow: 0 10px 30px rgba(13, 58, 30, 0.15); }
.portfolio-img img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.4s ease; filter: brightness(1.19) contrast(1.05); }
.portfolio-card:hover .portfolio-img img { transform: scale(1.0); }
.portfolio-card h4 { color: #0D3A1E; font-size: 1.1rem; font-weight: 600; margin: 0; }
@media (max-width: 992px) { .portfolio-img img { height: 200px; } }

/* ================= WORK WITH US SECTION ================= */
.work-with-us { background: #0D3A1E; overflow: hidden; max-height: 520px; }
.work-text { padding: 50px 50px 50px 70px; color: #FFFFFF; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.work-text h6 { color: #B0BEC5; font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 15px; text-transform: uppercase; }
.work-text h2 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 15px; color: #FFFFFF; }
.work-text h2 span { color: #B0BEC5; }
.work-text p { font-size: 0.95rem; line-height: 1.6; color: #D1D5DB; margin-bottom: 20px; }
.reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 25px; margin-bottom: 25px; }
.reason { display: flex; align-items: center; gap: 10px; color: #FFFFFF; font-size: 0.9rem; font-weight: 500; }
.reason span { color: #B0BEC5; font-weight: 800; font-size: 1.1rem; }
.btn-work { background: #B0BEC5; color: #0D3A1E; padding: 12px 32px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; display: inline-block; width: fit-content; transition: all 0.3s ease; }
.btn-work:hover { background: #FFFFFF; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(176, 190, 197, 0.3); }
.work-image { height: 520px; }
.work-image img { width: 100%; height: 520px; object-fit: cover; display: block; }

/* Mobile */
@media (max-width: 992px) {
  .work-with-us { max-height: unset; }
  .work-text { padding: 40px 25px; text-align: center; }
  .work-text h2 { font-size: 1.8rem; }
  .reasons-grid { grid-template-columns: 1fr; }
  .reason { justify-content: center; }
  .btn-work { margin: 0 auto; }
  .work-image { height: auto; }
  .work-image img { height: 300px; }
}
@media (max-width: 576px) { .work-text h2 { font-size: 1.5rem; } .work-text p { font-size: 0.9rem; } }

/* ================= FOOTER SECTION ================= */
.footer { background: #0A1F12; color: #FFFFFF; padding: 60px 0 20px 0; }
.footer-logo { width: 180px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-desc { color: #B0BEC5; font-size: 0.9rem; line-height: 1.6; }
.footer h5 { color: #B0BEC5; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; color: #D1D5DB; font-size: 0.95rem; }
.footer ul li a { color: #D1D5DB; text-decoration: none; transition: all 0.3s ease; }
.footer ul li a:hover { color: #B0BEC5; padding-left: 5px; }
.socials a { display: block; color: #D1D5DB; text-decoration: none; margin-bottom: 12px; transition: all 0.3s ease; }
.socials a:hover { color: #B0BEC5; padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 40px; padding-top: 20px; text-align: center; }
.footer-bottom p { color: #B0BEC5; font-size: 0.85rem; margin: 0; }
@media (max-width: 768px) { .footer { padding: 40px 0 20px 0; } }

/* ================= MOBILE FIX FOR HERO SECTION ================= */
@media (max-width: 992px) {
  .hero-section, #home, .banner { text-align: center; padding: 60px 20px; }
  .hero-section h1, .banner h1 { font-size: 2.2rem; line-height: 1.2; }
  .hero-section p, .banner p { font-size: 1rem; margin-bottom: 25px; }
  .hero-section .btn, .banner .btn { display: inline-block; width: fit-content; margin: 0 auto; }
  .hero-images, .portfolio-grid { margin-top: 30px; }
  .hero-images img { width: 100%; height: auto; margin-bottom: 15px; border-radius: 10px; margin-left: 0; }
}
@media (max-width: 576px) { .hero-section h1, .banner h1 { font-size: 1.8rem; } }

/* ========== SERVICES HERO WITH BULLETS ========== */
.services-hero {
  background:linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: white;
  padding: 90px 20px;
  text-align: center;
}
.services-hero .hero-content-center { max-width: 900px; margin: 0 auto; }
.services-hero .sub-head { font-size: 0.85rem; letter-spacing: 2px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.services-hero h1 { font-size: 2.6rem; font-weight: 700; margin-bottom: 15px; }
.services-hero .sub-text { font-size: 1.5rem; color: rgba(255,255,255,0.9); margin-bottom: 35px; max-width: 650px; margin-left: auto; margin-right: auto; }

/* HERO LOGO */
.hero-logo { width: 160px; height: auto; margin: 0 auto 10px auto; display: block; filter: brightness(0) invert(1); margin-top: -50px; }


/* ===== FINAL SERVICES CARDS - CLEAN 2 PER ROW ===== */
.services-grid { background: #f5f5f5; padding: 70px 0; }
.service-card {
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(18, 76, 39, 0.2); }
.service-big-img { width: 42%; height: 220px; border-radius: 12px; object-fit: cover; }
.service-content { width: 58%; }
.service-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; text-decoration: underline; color: #fff; }
.service-content ul { list-style: none; padding: 0; margin: 0 0 15px 0; }
.service-content ul li { font-size: 15px; margin-bottom: 8px; padding-left: 22px; position: relative; color: #fff; }
.service-content ul li:before { content: "✓"; position: absolute; left: 0; color: #a8e6a8; font-weight: bold; }
.service-small-imgs img { height: 75px; width: 100%; border-radius: 8px; object-fit: cover; }
.service-btn-wrap { text-align: center; margin-top: 50px; }
.service-btn { background: transparent; color: var(--green); border: 2px solid var(--green); padding: 14px 34px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-block; transition: all 0.3s ease; }
.service-btn:hover { background: var(--green); color: #fff; }

@media(max-width: 992px){
  .service-card { flex-direction: column; }
  .service-big-img, .service-content { width: 100%; }
  .service-big-img { height: 200px; }
}

/* ===== OUR WORKS HERO + GALLERY ===== */
.works-hero { background: linear-gradient(135deg, #124c27 5%, #2d7a46 95%); padding: 120px 40px 100px; color: #fff; position: relative; overflow: hidden; }
.works-hero-content { max-width: 1150px; margin: 0 auto; position: relative; z-index: 1; }
.works-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 3px; color: var(--gray); margin-bottom: 20px; text-transform: uppercase; }
.works-hero-content h1 { font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; color: #fff; }
.works-hero-content h1 span { color: var(--gray); }
.works-subtext { font-size: 26px; line-height: 1.8; color: rgba(255,255,255,0.85); max-width: 650px; }
.works-gallery { background: #fff; }
.work-item { background: #f1f1f1; border-radius: 12px; }
.work-item img { height: 280px; object-fit: cover; display: block; }
@media (max-width: 992px) { .work-item img { height: 240px; } }
@media (max-width: 576px) { .work-item img { height: 200px; } }
/* ===== SERVICES 1 PER ROW - HERO STYLE ===== */
.services-grid {
  background: #f5f5f5;
  padding: 70px 0;
}

.service-card {
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 30px;
}

.service-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  text-decoration: underline;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-card ul li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.service-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a8e6a8;
  font-weight: bold;
}

.service-big {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.service-small {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

.service-btn {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: -20px;
}
.service-btn:hover { background: var(--green); color: #fff; }
/* ===== DESKTOP IMAGE HEIGHT FIX ===== */
@media(min-width: 992px){
  .services-grid .service-item{
    padding: 3rem !important; /* more breathing space like Crafters Haven */
  }
  
  /* Big image top right */
  .services-grid .service-item .col-12 img{
    height: 280px !important; /* was 220px */
  }
  
  /* 2 small images bottom right */
  .services-grid .service-item .col-6 img{
    height: 200px !important; /* was 160px */
  }
  
  /* Make text bigger to match */
  .services-grid .service-item h3{
    font-size: 2.5rem; /* bigger title */
  }
  .services-grid .service-item p,
  .services-grid .service-item li{
    font-size: 1.1rem; /* bigger text */
  }
}
/* ===== SERVICES FINAL POLISH ===== */
.services-grid .service-item{ 
  transition: all .4s ease; 
}
.services-grid .service-item:hover{ 
  transform: translateY(-8px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image hover tilt effect */
.services-grid .service-item img{
  transition: all .4s ease;
  cursor: pointer;
}
.services-grid .service-item img:hover{
  transform: scale(1.03) rotateZ(1deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* DESKTOP ONLY FIXES */
@media(min-width: 992px){
  .services-grid .service-item{
    padding: 3.5rem !important; /* more space inside card */
  }
  
  /* BIGGER TEXTS FOR PC */
  .services-grid .service-item h3{
    font-size: 2.8rem !important; /* was too small */
    font-weight: 700;
    margin-bottom: 1.2rem;
  }
  .services-grid .service-item p{
    font-size: 1.2rem !important; /* description */
    line-height: 1.7;
    margin-bottom: 1.5rem !important;
  }
  .services-grid .service-item li{
    font-size: 1.15rem !important; /* list items */
    margin-bottom: 0.8rem !important;
  }
  
  /* TALLER IMAGES */
  .services-grid .service-item .col-12 img{
    height: 290px !important;
  }
  .services-grid .service-item .col-6 img{
    height: 210px !important;
  }
}

/* REDUCE SPACE BEFORE FOOTER */
footer{
  padding-top: 2rem !important; /* was probably 5rem */
  padding-bottom: 2rem !important;
}
.services-grid{
  padding-bottom: 2rem !important; /* reduce gap before footer */
}
/* ===== SERVICES FINAL v2 ===== */
.services-grid .service-item{ 
  transition: all .4s ease; 
}
.services-grid .service-item:hover{ 
  transform: translateY(-8px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Image hover tilt effect */
.services-grid .service-item img{
  transition: all .4s ease;
  cursor: pointer;
}
.services-grid .service-item img:hover{
  transform: scale(1.03) rotateZ(1deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* DESKTOP ONLY - MAKE TEXT MATCH IMAGE HEIGHT */
@media(min-width: 992px){
  .services-grid .service-item{
    padding: 3.5rem !important;
  }
  
  /* HEADING WITH UNDERLINE */
  .services-grid .service-item h3{
    font-size: 3rem !important; /* BIGGER */
    font-weight: 800;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px; /* space between text and line */
    padding-bottom: -10px;
  }
  
  /* BIGGER TEXTS TO MATCH IMAGE HEIGHT */
  .services-grid .service-item p{
    font-size: 1.35rem !important; /* almost as big as grid */
    line-height: 1.8;
    margin-bottom: 2rem !important;
  }
  .services-grid .service-item li{
    font-size: 1.25rem !important; /* list items big */
    margin-bottom: 1rem !important;
    font-weight: 500;
  }
  
  /* TALLER IMAGES */
  .services-grid .service-item .col-12 img{
    height: 300px !important; /* match text height */
  }
  .services-grid .service-item .col-6 img{
    height: 220px !important;
  }
}

/* REDUCE SPACE BEFORE FOOTER */
footer{
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.services-grid{
  padding-bottom: 2rem !important;
}
/* ===== REDUCE SPACING GAPS ===== */
.services-grid{
  padding-bottom: 0.5rem !important; /* was 2rem. Cut it down */
}

.services-grid .service-item:last-child{
  margin-bottom: 1.5rem !important; /* was mb-5. Make last card tighter */
}

/* The View More button container */
.services-grid .text-center{
  margin-top: 1rem !important; /* was mt-4. Pull it up */
  margin-bottom: 1.5rem !important; /* space before footer */
}

footer{
  margin-top: 0 !important;
  padding-top: 2rem !important; /* keep footer tight */
}
/* ===== BUTTON + FOOTER SPACING FIX ===== */
.services-grid{
  padding-bottom: 1rem !important; /* small space after last card */
  margin-bottom: 15px;
}

.services-grid .service-item:last-child{
  margin-bottom: 2rem !important; /* space before button */
}

/* The View More button container */
.services-grid .text-center{
  margin-top: 1rem !important;
  margin-bottom: 3.5rem !important; /* THIS IS THE KEY - space before footer */
}

/* Give footer some top padding so it doesn't feel stuck */
footer{
  margin-top: 0 !important;
  padding-top: 3rem !important; 
  padding-bottom: 2.5rem !important;
}
/* ===== HERO BUTTON - "SEE FULL DETAILS" ===== */
.btn-hero{
  display: inline-block;
  background: #ffffff;
  color: #0a4d2b !important; /* your brand green */
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 4px; /* pill shape */
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid #ffffff;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-hero:hover{
  background: transparent;
  color: #ffffff !important;
  border: 2px solid #ffffff;
  transform: translateY(-4px); /* lift effect */
  box-shadow: 0 10px 30px rgba(255,255,255,0.25);
}

/* Make the arrow animate on hover */
.btn-hero:hover{
  padding-right: 40px;
}
.btn-hero::after{
  content: "↓";
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}
.btn-hero:hover::after{
  transform: translateY(3px); /* arrow moves down */
}
/* ===== LOGO FIXES ===== */
/* NAVBAR LOGO */
.navbar .logo{
  height: 55px !important; /* make it bigger */
  width: auto;
}

/* HERO CENTER LOGO - THE ONE THAT'S FADING */
.services-hero img{
  height: 100px !important; /* bigger */
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3)) !important; /* white + shadow so it pops */
  margin-bottom: 5px !important;
  opacity: 1 !important; /* make sure it's not faded */
}
/* ===== ABOUT PAGE FINAL ===== */
.about-hero{
  background: linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: #fff;
  padding: 120px 20px;
  text-align: center;
}
.about-eyebrow{
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}
.about-hero h1{
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-hero h1 span{ color: #a8e6a8; }
.about-subtext{
  font-size: 1.3rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
}

/* STORY */
.about-story{ padding: 100px 0; background: #fff; }
.about-story h6{ color: var(--green); font-weight: 700; letter-spacing: 2px; }
.about-story h2{ color: #0D3A1E; font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.about-story p{ font-size: 1.1rem; line-height: 1.8; margin-bottom: 15px; }

/* COMMITMENT */
.commitment{ padding: 100px 0; background: #f8f5f0; }
.commitment h2{ color: #0D3A1E; font-size: 2.5rem; font-weight: 800; }
.commitment-sub{ font-size: 1.2rem; color: var(--gray); }
.commit-card{
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  border-top: 4px solid var(--green);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  height: 100%;
}
.commit-card h4{ color: var(--green); font-weight: 800; margin-bottom: 15px; }

/* CEO */
.ceo-section{ padding: 100px 0; background: #fff; }
.ceo-section h6{ color: var(--green); font-weight: 700; letter-spacing: 2px; }
.ceo-section h2{ color: #0D3A1E; font-size: 2.5rem; font-weight: 800; }
.ceo-title{ color: var(--gray); font-size: 1.1rem; font-weight: 600; margin-bottom: 20px; }
.ceo-quote{
  border-left: 4px solid var(--green);
  padding: 20px 25px;
  background: #f8f5f0;
  border-radius: 8px;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  color: #0D3A1E;
  margin-top: 20px;
}

/* VISION PROMISE */
.vision-promise{ padding: 100px 0; background: linear-gradient(135deg, #0D3A1E 0%, #124C27 100%); }
.vp-card{
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  height: 100%;
}
.vp-card h3{ font-weight: 800; margin-bottom: 20px; }
.vp-card.promise ul{ list-style: none; padding: 0; }
.vp-card.promise li{ font-size: 1.1rem; margin-bottom: 12px; }

/* MORE THAN */
.more-than{ padding: 100px 20px; background: #fff; text-align: center; }
.more-than h2{ color: #0D3A1E; font-size: 2.8rem; font-weight: 800; }
.more-than .lead{ font-size: 1.3rem; color: var(--green); font-weight: 600; }
.final-statement{
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  margin-top: 30px;
}

/* CTA */
.about-cta{
  padding: 100px 20px;
  background: linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: #fff;
  text-align: center;
}
.about-cta h2{ font-size: 2.5rem; font-weight: 800; margin-bottom: 15px; }
.btn-cta{
  display: inline-block;
  background: #fff;
  color: var(--green);
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
}
.btn-cta:hover{ transform: translateY(-4px); box-shadow: 0 10px 30px rgba(255,255,255,0.2); }

@media(max-width: 992px){
  .about-hero h1{ font-size: 2.2rem; }
  .about-story, .commitment, .ceo-section, .vision-promise, .more-than{ padding: 60px 0; }
}
/* ===== ABOUT HERO FIXES ===== */
.about-hero{
  background: linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

/* LOGO IN HERO */
.hero-logo-about{
  height: 90px !important;
  width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* makes logo white if yours is green */
  display: inline-block;
 ;
}

/* BIGGER SMALL TEXTS */
.about-eyebrow{
  font-size: 30px !important; /* was 14px */
  letter-spacing: 4px;
  font-weight: 850;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-hero h1{
  font-size: 3.5rem !important; /* was 3.2rem */
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-hero h1 span{ color: #a8e6a8; }

.about-subtext{
  font-size: 1.6rem !important; /* was 1.2rem */
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 500;
}

/* MAKE OTHER SMALL TEXTS BIGGER TOO */
.commitment-sub{ font-size: 1.3rem !important; }
.ceo-title{ font-size: 1.2rem !important; }
.about-story p{ font-size: 1.15rem !important; line-height: 1.9; }

/* MOBILE */
@media(max-width: 992px){
  .about-hero h1{ font-size: 2.4rem !important; }
  .hero-logo-about{ height: 70px !important; }
  .about-subtext{ font-size: 1.2rem !important; }
}
/* ===== CONTACT PAGE ===== */
.contact-hero{
  background: linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.hero-logo-contact{
  height: 90px;
  width: auto;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}
.contact-eyebrow{
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.contact-hero h1{
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-hero h1 span{ color: #a8e6a8; }
.contact-subtext{
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* MAIN SECTION */
.contact-main{ padding: 100px 0; background: #f8f5f0; }

/* FORM BOX */
.contact-form-box{
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form-box h2{ color: #0D3A1E; font-weight: 800; margin-bottom: 30px; }
.form-label{ font-weight: 700; color: #0D3A1E; margin-bottom: 8px; }
.form-control, .form-select{
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus{
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(18, 76, 39, 0.1);
}
.btn-contact{
  background: var(--green);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  width: 100%;
  transition: all 0.3s ease;
}
.btn-contact:hover{
  background: #0e3a1f;
  transform: translateY(-3px);
}

/* INFO BOX */
.contact-info-box{
  background: var(--green);
  color: #fff;
  padding: 50px;
  border-radius: 16px;
  height: 100%;
}
.contact-info-box h3{ font-weight: 800; margin-bottom: 30px; }
.info-item{ margin-bottom: 35px; }
.info-item h4{ font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.info-item p{ opacity: 0.9; margin-bottom: 0; }

.btn-whatsapp{
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover{ background: #1ebe5d; transform: translateY(-2px); }

/* MAP */
.contact-map{ line-height: 0; }

@media(max-width: 992px){
  .contact-hero h1{ font-size: 2.2rem; }
  .contact-form-box, .contact-info-box{ padding: 30px; }
}
/* ===== CONTACT INFO BOX - MATURE VERSION ===== */
.contact-info-box{
  background: #0D3A1E;
  color: #fff;
  padding: 50px;
  border-radius: 16px;
  height: 100%;
  padding-bottom: -50px;
}
.contact-info-box h3{ 
  font-weight: 800; 
  font-size: 1.8rem;
  margin-bottom: 40px;
  letter-spacing: -0.5px;
}

.info-item{ 
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}
.info-item:last-child{ margin-bottom: 0; }

.info-icon{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8e6a8;
}
.info-icon svg{ width: 20px; height: 20px; }

.info-item h4{ 
  font-size: 1.1rem; 
  font-weight: 700; 
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.info-item p{ 
  opacity: 0.85; 
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.btn-whatsapp{
  display: inline-block;
  background: transparent;
  color: #a8e6a8;
  border: 1.5px solid #a8e6a8;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 12px;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover{ 
  background: #a8e6a8; 
  color: #0D3A1E;
  transform: translateY(-2px);
}

@media(max-width: 992px){
  .contact-info-box{ padding: 30px; }
}
/* ===== MATURED HERO ===== */
.hero-matured{
  background: linear-gradient(135deg, #124c27 0%, #2d7a46 100%);
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.hero-logo{
  height: 150px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  width: auto;
}
.hero-eyebrow{
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: #a8e6a8;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.hero-matured h1{
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-matured h1 span{
  color: #a8e6a8;
}
.hero-subtext{
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}
.hero-buttons{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline {
  background-color: white;
  color: #124c27;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 10px;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* MOBILE */
@media(max-width: 768px){
  .hero-matured h1{ font-size: 2.2rem; }
  .hero-matured{ padding: 80px 0; }
}
/* ===== TRAINING SECTION ===== */
.training-section{
  padding: 100px 0;
  background: #f8f9fa;
}
.training-section h6{
  color: #0D3A1E;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.training-section h2{
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0D3A1E;
}
.training-section h2 span{ color: #124c27; }
.training-list{
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.training-list li{
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #333;
}
.conc{
  width: auto;
  height: 150px;

}
.footer-links a {
  color: #FFFFFF; /* white */
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #0D3A1E; /* your green brand color */
  text-decoration: underline;
}
/* FIX TIKTOK LINK COLOR TO MATCH FOOTER */
.footer-links a,
.footer ul li a,
.socials a {
  color: #D1D5DB !important; /* same as other footer links */
  text-decoration: none !important;
}

.footer-links a:hover,
.footer ul li a:hover,
.socials a:hover {
  color: #B0BEC5 !important; /* lighter on hover */
  padding-left: 5px;
  text-decoration: none !important;
}
/* ===== FONT UPGRADE: CABINET GROTESK ===== */
body {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 400;
  letter-spacing: -0.2px; /* makes it tighter and more premium */
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700; /* bold headings */
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.btn-primary, .btn-contact, .btn-work, .btn-cta, .service-btn {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero h1, .about-hero h1, .contact-hero h1, .works-hero-content h1 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800; /* extra bold for hero */
}

.footer h5 {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.footer-desc, .footer ul li {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 400;
}
/* STOP HORIZONTAL SCROLL ON MOBILE */
html, body {
  overflow-x: hidden;
  width: 100%;
}
.container, .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
img {
  max-width: 100%;
  height: auto;
}
/* MOBILE NAVBAR FIX */
@media (max-width: 768px) {
  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .navbar-brand img {
    max-height: 35px; /* smaller logo */
    width: auto;
  }
  .navbar-brand span {
    font-size: 16px; /* smaller text */
  }
  .navbar {
    padding: 10px 15px;
  }
}
/* TICKER FIX - FORCE BRAND GREEN */
.ticker span, 
.ticker span::before {
  color: var(--green) !important;
}

.ticker span:nth-child(2n),
.ticker span:nth-child(2n)::before {
  color: var(--gray) !important;
}
/* NUCLEAR TICKER FIX */
.ticker-wrap .ticker span {
  color: #124c27 !important;
}
.ticker-wrap .ticker span::before {
  content: "♦ " !important;
  color: #124c27 !important;
  font-family: Arial, sans-serif !important; /* stops emoji */
}
.ticker-wrap .ticker span:nth-child(2n) {
  color: #606060 !important;
}
.ticker-wrap .ticker span:nth-child(2n)::before {
  color: #606060 !important;
}

/* NAVBAR LOGO FIX - FORCE SMALL ON MOBILE */
@media (max-width: 992px) {
  .navbar .logo,
  .navbar-brand img {
    height: 32px !important;
    width: auto !important;
    max-width: 120px !important;
  }
  .navbar-brand {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  .navbar {
    padding: 8px 15px !important;
    min-height: 60px !important;
  }
}
/* TICKER PHONE FIX - NO MORE RED DIAMONDS */
.ticker-wrap .ticker span {
  color: #124c27 !important;
  padding: 0 35px 0 25px !important;
  position: relative !important;
}

/* Replace ♦ with a CSS diamond so phones can't turn it red */
.ticker-wrap .ticker span::before {
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  top: 50% !important;
  width: 8px !important;
  height: 8px !important;
  background-color: #124c27 !important;
  transform: translateY(-50%) rotate(45deg) !important;
}

/* Every 2nd item gray */
.ticker-wrap .ticker span:nth-child(2n) {
  color: #606060 !important;
}
.ticker-wrap .ticker span:nth-child(2n)::before {
  background-color: #606060 !important;
}
/* STOP IPHONE FROM MAKING PHONE NUMBERS BLUE */
a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
}
a[href^="tel"]:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* Extra fix for Safari iOS */
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}
/* CONTACT INFO LINKS */
.contact-info-box a {
    color: #ffffff; /* makes email and phone white */
    text-decoration: none;
    transition: 0.3s;
}
