/* Hill Flower - Exact Clone Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary: #063389;
  --primary-light: #6794f1;
  --secondary: #00adef;
  --dark: #232323;
  --body-color: #6f6f6f;
  --white: #ffffff;
  --bg-light: #f5f5f5;
  --border: #e5e5e5;
  --gradient: linear-gradient(135deg, #6794f1 0%, #063389 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-color);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: all .3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-50 { width: 50%; padding: 0 15px; }
.col-33 { width: 33.333%; padding: 0 15px; }
.col-25 { width: 25%; padding: 0 15px; }
.col-100 { width: 100%; padding: 0 15px; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  width: 100%;
}

.header-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #191a1d;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: relative;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ===================== SCROLLED HEADER (WHITE BACKGROUND) ===================== */
.site-header.scrolled .header-bar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.site-header.scrolled .main-nav .nav-item {
  color: #232323;
}

.site-header.scrolled .main-nav .nav-item:hover,
.site-header.scrolled .main-nav .nav-item.active {
  color: var(--primary);
}

.site-header.scrolled .search-btn,
.site-header.scrolled .mobile-toggle {
  color: #232323;
}

.site-header.scrolled .search-btn:hover,
.site-header.scrolled .mobile-toggle:hover {
  color: var(--primary);
}

.header-logo-box {
  background: #ffffff;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 50px 0 60px;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0 100%);
}

.header-logo-box .logo img {
  height: 52px;
  width: auto;
  display: block;
}

.header-nav-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
  height: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav .nav-item {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.main-nav .nav-item:hover,
.main-nav .nav-item.active {
  color: var(--secondary);
}

.main-nav .plus-icon {
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}

.dropdown-parent {
  position: relative;
}

.dropdown-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  padding: 10px 0;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 4px 4px;
  z-index: 100;
}

.dropdown-parent:hover > .dropdown-items {
  display: block;
}

.dropdown-items a {
  display: block;
  padding: 10px 20px;
  color: var(--dark) !important;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s ease;
}

.dropdown-items a:hover {
  color: var(--primary) !important;
  background: #f5f7fa;
  padding-left: 24px;
}

/* Nested (3rd level) flyout */
.dropdown-items .dropdown-parent { position: relative; }
.dropdown-items .dropdown-parent > a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.dropdown-items .dropdown-parent .chevron-icon { font-size: 14px; }
.dropdown-items .dropdown-parent > .dropdown-items {
  top: -10px;
  left: 100%;
  min-width: 300px;
}
@media (max-width: 1300px) {
  .dropdown-items .dropdown-parent > .dropdown-items { left: auto; right: 100%; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 30px;
}

.search-btn, .mobile-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover, .mobile-toggle:hover {
  color: var(--secondary);
}

/* ===================== HERO SLIDER ===================== */
.hero-slider { position: relative; overflow: hidden; }
.hero-slide {
  position: relative; height: 85vh; min-height: 600px;
  background-size: cover; background-position: center;
  display: none;
}
.hero-slide.active { display: block; }
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.hero-content {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  text-align: center; color: var(--white); z-index: 2;
  width: 90%; max-width: 850px;
}
.hero-content h1 {
  font-size: 48px; font-weight: 700; color: var(--white);
  margin-bottom: 20px; line-height: 1.2;
}
.hero-content p { font-size: 16px; margin-bottom: 30px; color: rgba(255,255,255,.85); }
.btn-slider {
  display: inline-block; padding: 14px 35px;
  background: var(--gradient); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
  border-radius: 3px; transition: all .3s ease;
}
.btn-slider:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(6,51,137,.3); }
.slider-nav {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.slider-dot {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.5);
  cursor: pointer; transition: all .3s;
}
.slider-dot.active { background: var(--white); }

/* ===================== HERO BOTTOM OVERLAY INFO ===================== */
.hero-bottom-info-section {
  position: relative;
  margin-top: -65px; /* Pulls it up over the slider */
  z-index: 100;
  padding-bottom: 20px;
}

.hero-bottom-info-box {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.hero-contact-bar {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #ffffff;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.hero-contact-item i {
  color: #ffffff;
  font-size: 15px;
}

.hero-contact-item span {
  font-weight: 500;
}

.hero-contact-link a {
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.hero-contact-link a:hover {
  opacity: 0.85;
}

.hero-features-box {
  background: #ffffff;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.hero-feature-column h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1b1e;
  margin: 0 0 10px 0;
  font-family: 'Poppins', sans-serif;
}

.hero-feature-column p {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .hero-bottom-info-section {
    margin-top: 0;
    padding-top: 30px;
  }
  .hero-features-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  .hero-contact-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================== ABOUT SECTION ===================== */
.about-section { padding: 80px 0; }
.about-section .row { align-items: center; }
.sub-title {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--primary); margin-bottom: 10px; text-transform: uppercase;
}
.sub-title::before { content: ''; width: 30px; height: 2px; background: var(--primary); }
.about-section h2 { font-size: 36px; margin-bottom: 20px; line-height: 1.3; }
.about-section p { margin-bottom: 15px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.check-list li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--dark); }
.check-list li::before { content: '»'; color: var(--primary); font-weight: 700; }
.about-sep { width: 100%; height: 1px; background: var(--border); margin: 25px 0; }
.signature { display: flex; align-items: center; gap: 15px; }
.signature img { width: 80px; }
.signature h4 { font-size: 16px; font-weight: 700; margin: 0; }
.signature span { font-size: 12px; color: var(--body-color); text-transform: uppercase; letter-spacing: 1px; }
.about-image { position: relative; }
.about-image img { border-radius: 5px; width: 100%; }
.experience-badge {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  background: var(--primary); color: var(--white);
  padding: 20px 15px; writing-mode: vertical-lr; text-orientation: mixed;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px;
  border-radius: 0 5px 5px 0;
}
.dot-pattern {
  position: absolute; top: -20px; left: -20px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
  background-size: 12px 12px; z-index: -1; opacity: .3;
}

/* ===================== MISSION/VISION SECTION ===================== */
.mv-section {
  padding: 90px 0;
  background: linear-gradient(rgba(10, 14, 20, 0.92), rgba(10, 14, 20, 0.92)), url('https://hill-flower.org/wp-content/uploads/2024/11/Untitled-design-5.jpg') center/cover;
  color: var(--white);
}
.mv-section .sub-title { color: rgba(255,255,255,.9); justify-content: center; }
.mv-section .sub-title::before { background: rgba(255,255,255,.6); }
.mv-section h2 { color: var(--white); text-align: center; font-size: 36px; margin-bottom: 50px; font-family: 'Poppins', sans-serif; font-weight: 700; }
.mv-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.mv-grid-left {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mv-box {
  background: transparent;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 30px 15px;
  text-align: center;
  transition: all .3s;
  position: relative;
}
.mv-box i { font-size: 38px; color: #4d5c6d; margin-bottom: 12px; display: block; }
.mv-box h4 { color: #8a99a8; font-size: 13px; font-weight: 600; margin: 0; text-transform: capitalize; }

/* Active Center Box styling */
.mv-box.active {
  border: 1px solid #1e56b8;
  background: rgba(30, 86, 184, 0.06);
  box-shadow: 0 0 20px rgba(30, 86, 184, 0.25);
  z-index: 5;
}
.mv-box.active i {
  color: #3b82f6;
}
.mv-box.active h4 {
  color: #ffffff;
  font-weight: 700;
}

.mv-text p { color: #a0aec0; margin-bottom: 25px; font-size: 15px; line-height: 1.65; }
.tabs-nav {
  display: flex;
  gap: 35px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tab-btn {
  padding: 12px 0;
  background: transparent;
  color: #718096;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  position: relative;
}
.tab-btn:hover {
  color: #ffffff;
}
.tab-btn.active {
  color: #ffffff;
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3b82f6;
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { color: #cbd5e0; font-size: 14.5px; line-height: 1.6; }

/* ===================== COUNTERS ===================== */
.counters-section { padding: 60px 0; }
.counter-item { text-align: center; }
.counter-item i { font-size: 40px; color: var(--primary); margin-bottom: 10px; display: block; }
.counter-number { font-family: 'Poppins', sans-serif; font-size: 42px; font-weight: 700; color: var(--dark); }
.counter-number .suffix { font-size: 24px; }
.counter-label { font-size: 14px; color: var(--body-color); margin-top: 5px; }

/* ===================== PROGRESS / CHART SECTION ===================== */
.chart-section { padding: 80px 0; background: var(--white); }
.chart-section .sub-title { color: var(--primary); }
.chart-section h2 { font-size: 36px; margin-bottom: 15px; }
.chart-section p { margin-bottom: 20px; }
.btn-gradient {
  display: inline-block; padding: 12px 30px;
  background: var(--gradient); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  border-radius: 30px; transition: all .3s;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(6,51,137,.3); }
.chart-canvas { width: 100%; max-height: 400px; }

/* ===================== VIDEO SECTION ===================== */
.video-section {
  padding: 120px 0; text-align: center;
  background: linear-gradient(rgba(6,51,137,.85), rgba(6,51,137,.85)),
    url('https://hill-flower.org/wp-content/uploads/2024/11/Untitled-design-6.jpg') center/cover fixed;
  color: var(--white);
}
.video-section .sub-title { color: rgba(255,255,255,.9); justify-content: center; }
.video-section .sub-title::before { background: rgba(255,255,255,.6); }
.video-section h2 { color: var(--white); font-size: 36px; margin-bottom: 30px; }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 24px;
  box-shadow: 0 0 0 15px rgba(255,255,255,.2);
  transition: all .3s; cursor: pointer;
}
.play-btn:hover { transform: scale(1.1); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
  position: relative;
  padding: 90px 0 110px;
  background: #ffffff;
  color: var(--dark, #111);
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(60deg, rgba(6,51,137,.06) 0, rgba(6,51,137,.06) 1px, transparent 1px, transparent 70px),
    repeating-linear-gradient(-60deg, rgba(6,51,137,.06) 0, rgba(6,51,137,.06) 1px, transparent 1px, transparent 70px),
    repeating-linear-gradient(0deg, rgba(6,51,137,.06) 0, rgba(6,51,137,.06) 1px, transparent 1px, transparent 70px);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 70%);
  mask-image: linear-gradient(to right, #000 0%, #000 35%, transparent 70%);
  pointer-events: none;
}
.testimonials-section .container { position: relative; z-index: 1; }
.testimonials-section .sub-title { color: var(--primary); }
.testimonials-section .sub-title::before { background: var(--primary); }
.testimonials-section h2 { color: #111111; margin-bottom: 30px; font-size: 36px; }
.testimonials-section > .container > .row p { color: #666666 !important; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; }
.testimonial-item { position: relative; text-align: center; }
.testimonial-card {
  background: #ffffff;
  padding: 35px 30px 30px; border-radius: 8px; position: relative;
  text-align: left;
  box-shadow: 0 15px 40px rgba(17,24,39,.08);
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 8px; left: 22px;
  font-size: 64px; font-family: Georgia, serif; font-weight: 700;
  color: #dde2ea; line-height: 1;
}
.testimonial-card .quote { position: relative; z-index: 1; font-size: 14.5px; color: #555555; margin: 20px 0 0; line-height: 1.8; }
.testimonial-avatar {
  width: 80px; height: 80px; margin: -40px auto 15px; position: relative; z-index: 2;
}
.testimonial-avatar img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 5px solid #ffffff; box-shadow: 0 5px 15px rgba(0,0,0,.12);
}
.testimonial-meta { text-align: center; }
.testimonial-meta h4 { color: #111111; font-size: 18px; margin: 0 0 4px; font-family: 'Poppins', sans-serif; font-weight: 700; }
.testimonial-meta span { font-size: 13.5px; color: #777777; }

/* ===================== CONTACT SECTION ===================== */
.contact-section { display: flex; }
.contact-info {
  width: 50%; padding: 80px 60px;
  background: linear-gradient(rgba(6,51,137,.92), rgba(6,51,137,.92)),
    url('https://hill-flower.org/wp-content/uploads/2024/11/Untitled-design-5.jpg') center/cover;
  color: var(--white);
}
.contact-info .sub-title { color: rgba(255,255,255,.9); }
.contact-info .sub-title::before { background: rgba(255,255,255,.5); }
.contact-info h2 { color: var(--white); font-size: 32px; margin-bottom: 30px; }
.contact-box { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-box-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); font-size: 20px; flex-shrink: 0;
}
.contact-box h4 { color: var(--white); font-size: 16px; margin-bottom: 3px; }
.contact-box p { color: rgba(255,255,255,.8); margin: 0; font-size: 14px; }
.contact-map { width: 50%; }
.contact-map iframe { width: 100%; height: 100%; min-height: 500px; border: none; }

/* ===================== TEAM SECTION ===================== */
.team-section { padding: 80px 0; background: var(--bg-light); }
.team-section .sub-title { color: var(--primary); }
.team-section h2 { font-size: 36px; margin-bottom: 10px; }
.team-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.team-header-right p { max-width: 400px; }
.team-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0;
}
.team-carousel-wrapper .team-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.team-carousel-wrapper .team-card {
  flex: 0 0 calc(25% - 22.5px);
  min-width: calc(25% - 22.5px);
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,.04);
  transition: all .3s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.team-card-img { position: relative; overflow: hidden; }
.team-card-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card-body { padding: 20px 15px; }
.team-card h4 { font-size: 15px; margin-bottom: 3px; font-weight: 700; color: #1a1b1e; }
.team-card span { font-size: 13px; color: var(--primary); font-weight: 600; }

@media (max-width: 991px) {
  .team-carousel-wrapper .team-card {
    flex: 0 0 calc(50% - 15px) !important;
    min-width: calc(50% - 15px) !important;
  }
}
@media (max-width: 576px) {
  .team-carousel-wrapper .team-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
  }
}

/* ===================== BLOG / EVENTS ===================== */
.blog-section { padding: 80px 0; }
.blog-section h2 { font-size: 36px; text-align: center; margin-bottom: 10px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.blog-card { border-radius: 5px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); background: var(--white); transition: all .3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.blog-card-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.blog-card-date {
  position: absolute; top: 15px; left: 15px;
  background: var(--primary); color: var(--white);
  padding: 5px 15px; font-size: 13px; font-weight: 600;
}
.blog-card-body { padding: 25px; }
.blog-card h4 { font-size: 18px; margin-bottom: 10px; }
.blog-card h4 a:hover { color: var(--primary); }
.blog-card p { font-size: 14px; margin-bottom: 15px; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: 14px; }
.ongoing-grid { grid-template-columns: repeat(4, 1fr); }
.ongoing-grid .blog-card-img { height: 180px; background-color: #eef1f6; background-size: contain; background-repeat: no-repeat; }
@media (max-width: 991px) { .ongoing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ongoing-grid { grid-template-columns: 1fr; } }

/* ===================== CTA BAND ===================== */
.cta-band-section {
  padding: 50px 0; text-align: center; background: var(--gradient);
}
.cta-band-section h2 { color: var(--white); font-size: 28px; margin-bottom: 20px; }
.cta-band-section .btn-gradient { background: var(--white); color: var(--primary); }
.cta-band-section .btn-gradient:hover { box-shadow: 0 8px 25px rgba(0,0,0,.2); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo img { height: 50px; margin-bottom: 15px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; transition: all .3s;
}
.footer-social a:hover { background: var(--primary); }
.footer-heading { color: var(--white); font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-light); }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 14px; display: flex; align-items: center; gap: 5px; }
.footer-links a::before { content: '›'; }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--primary-light); margin-top: 3px; }
.footer-contact-item span { font-size: 14px; }
.footer-newsletter input {
  width: 100%; padding: 10px 15px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: var(--white);
  margin-bottom: 10px; font-size: 14px; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter button {
  padding: 10px 25px; background: var(--gradient);
  color: var(--white); border: none; font-weight: 600; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0; text-align: center; font-size: 14px;
}

/* ===================== BREADCRUMB PAGE TITLE ===================== */
.page-title-section {
  padding: 100px 0 60px;
  background: linear-gradient(rgba(6,51,137,.85), rgba(6,51,137,.85)),
    url('https://hill-flower.org/wp-content/uploads/2024/11/Untitled-design-5.jpg') center/cover;
  color: var(--white); text-align: center;
}
.page-title-section h1 { color: var(--white); font-size: 42px; margin-bottom: 10px; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; font-size: 14px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--primary-light); }

/* FORM STYLES (CONTACT PAGE) */
.form-section { padding: 80px 0; }
.form-card { background: var(--white); padding: 40px; border-radius: 5px; box-shadow: 0 5px 20px rgba(0,0,0,.08); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 14px; color: var(--dark); margin-bottom: 5px; font-family: 'Poppins', sans-serif; }
.form-control {
  width: 100%; padding: 12px 15px; border: 1px solid var(--border);
  font-size: 14px; color: var(--dark); outline: none; transition: border .3s;
  font-family: 'Roboto', sans-serif;
}
.form-control:focus { border-color: var(--primary); }
textarea.form-control { min-height: 130px; resize: vertical; }
.btn-submit {
  padding: 12px 35px; background: var(--gradient); color: var(--white);
  border: none; font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 15px; cursor: pointer; border-radius: 3px; transition: all .3s;
}
.btn-submit:hover { box-shadow: 0 8px 25px rgba(6,51,137,.3); }
.alert { padding: 15px; margin-bottom: 20px; border-radius: 3px; display: none; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* SERVICES PAGE */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 80px 0; }
.service-detail { padding: 40px; background: var(--white); border-radius: 5px; box-shadow: 0 2px 15px rgba(0,0,0,.05); }
.service-detail h3 { font-size: 24px; margin-bottom: 15px; }
.service-detail ul { margin-top: 15px; }
.service-detail ul li { padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.service-detail ul li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* PROJECTS PAGE */
.projects-filter { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px; border: 2px solid var(--border); background: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  cursor: pointer; transition: all .3s; border-radius: 3px; color: var(--dark);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* SCROLL TO TOP */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; border: none;
  opacity: 0; visibility: hidden; transition: all .3s;
  box-shadow: 0 4px 15px rgba(6,51,137,.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }

/* MOBILE DRAWER */
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1000; opacity: 0; visibility: hidden; transition: all .3s;
}
.mobile-drawer-overlay.active { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed; top: 0; right: -350px; width: 320px; height: 100vh;
  background: var(--white); z-index: 1001; padding: 25px;
  overflow-y: auto; transition: right .3s;
}
.mobile-drawer.active { right: 0; }
.mobile-drawer .close-btn {
  position: absolute; top: 15px; right: 15px;
  background: none; border: none; font-size: 28px; cursor: pointer; color: var(--dark);
}
.mobile-drawer .mobile-nav { margin-top: 50px; }
.mobile-drawer .mobile-nav a {
  display: block; padding: 12px 0; font-size: 16px; font-weight: 600;
  color: var(--dark); border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
}
.mobile-drawer .mobile-nav a.active { color: var(--primary); }

.mobile-nav-parent { border-bottom: 1px solid var(--border); }
.mobile-nav-toggle { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-toggle a { flex: 1; border-bottom: none !important; }
.mobile-submenu-toggle {
  background: none; border: none; padding: 12px 8px; margin-left: 10px;
  cursor: pointer; color: var(--dark); font-size: 13px;
  transition: transform .3s;
}
.mobile-submenu-toggle.open { transform: rotate(180deg); color: var(--primary); }
.mobile-submenu {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.mobile-submenu.open { max-height: 900px; }
.mobile-submenu a {
  display: block; padding: 10px 0 10px 20px; font-size: 14px; font-weight: 500;
  color: #555; border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
}
.mobile-submenu a:last-child { border-bottom: none; }
.mobile-submenu a.active { color: var(--primary); }
.mobile-submenu .mobile-nav-parent { border-bottom: none; }
.mobile-submenu .mobile-submenu a { padding-left: 35px; font-size: 13px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .main-nav, .header-icons { display: none; }
  .mobile-toggle { display: block; }
  .col-50, .col-33, .col-25 { width: 100%; }
  .hero-content h1 { font-size: 32px; }
  .hero-slide { min-height: 450px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-grid-left { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-section { flex-direction: column; }
  .contact-info, .contact-map { width: 100%; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-header { flex-direction: column; gap: 15px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .check-list { grid-template-columns: 1fr; }
  .mv-grid-left { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
}

/* Font Awesome CDN fallback glyphs */
.fa-phone-alt::before { content: '📞'; }
.fa-envelope::before { content: '📧'; }
.fa-map-marker-alt::before { content: '📍'; }
.fa-angle-double-right::before { content: '»'; }
.fa-play::before { content: '▶'; }
.fa-arrow-up::before { content: '↑'; }
.fa-chevron-up::before { content: '↑'; }
.fa-facebook-f::before { content: 'f'; }
.fa-twitter::before { content: '𝕏'; }
.fa-linkedin-in::before { content: 'in'; }
.fa-youtube::before { content: '▶'; }

/* ===================== TEAM PAGE CUSTOM STYLING ===================== */
.team-page-section {
  background: #eef2f6;
  padding: 70px 0 80px;
}

.team-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.team-heading-left {
  max-width: 550px;
}

.team-heading-left .sub-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.team-heading-left .sub-accent-bar {
  width: 35px;
  height: 3px;
  background: #063389;
  display: inline-block;
}

.team-heading-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1b1e;
  line-height: 1.35;
}

.team-heading-right {
  max-width: 450px;
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.team-grid-custom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 25px;
  margin-bottom: 60px;
}

.team-card-custom {
  position: relative;
  margin-bottom: 25px;
}

.team-card-img-box {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  background: #d5d8dc;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.team-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.team-card-custom:hover .team-card-img-box img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.team-card-badge {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  background: #ffffff;
  padding: 12px 8px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  z-index: 2;
}

.team-card-badge h4 {
  font-size: 12px;
  font-weight: 700;
  color: #1a1b1e;
  margin: 0 0 3px 0;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
}

.team-card-badge span {
  font-size: 10px;
  font-weight: 600;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
  line-height: 1.2;
}

/* Partners Row */
.team-partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 40px;
}

.team-partner-box {
  background: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}

.team-partner-box img {
  max-height: 36px;
  width: auto;
}

@media (max-width: 991px) {
  .team-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid-custom {
    grid-template-columns: 1fr;
  }
  .team-partners-row {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* ===================== SERVICES / WHAT WE DO PAGE STYLING ===================== */
.services-page-section {
  padding: 80px 0 90px;
  background: #ffffff;
}

.services-heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.services-heading-left {
  max-width: 550px;
}

.services-heading-left .services-sub-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #666;
  font-size: 13px;
  font-weight: 500;
}

.services-heading-left .services-sub-bar {
  width: 35px;
  height: 3px;
  background: #063389;
  display: inline-block;
}

.services-heading-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1b1e;
  line-height: 1.35;
  font-family: 'Poppins', sans-serif;
}

.services-heading-right {
  max-width: 450px;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
  padding-top: 15px;
}

.services-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 30px;
  margin-bottom: 70px;
}

.service-card-custom {
  background: #ffffff;
  border-top: 3px solid #063389;
  padding: 45px 30px 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(6,51,137,0.12);
}

.service-card-icon {
  font-size: 48px;
  color: #063389;
  margin-bottom: 22px;
  display: inline-block;
}

.service-card-custom h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1b1e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
}

.service-accent-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.service-accent-lines span {
  height: 2px;
  background: #063389;
  display: inline-block;
}

.service-accent-lines span:first-child { width: 22px; }
.service-accent-lines span:last-child { width: 10px; }

.service-card-custom p {
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
  margin: 0;
}

.service-card-watermark {
  position: absolute;
  bottom: -15px;
  right: -15px;
  font-size: 90px;
  color: rgba(6, 51, 137, 0.05);
  pointer-events: none;
}

.services-partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  padding-top: 20px;
}

.services-partner-box {
  background: #fbfbfb;
  padding: 14px 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.services-partner-box img {
  max-height: 38px;
  width: auto;
}

@media (max-width: 991px) {
  .services-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-heading-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .services-grid-custom {
    grid-template-columns: 1fr;
  }
  .services-partners-row {
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* ===================== BENEFICIARIES PAGE STYLING ===================== */
.beneficiaries-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.beneficiary-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

.beneficiary-header-left {
  display: flex;
  gap: 20px;
  max-width: 600px;
}

.testimonial-vertical-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-vertical-tag .v-line {
  width: 2px;
  height: 35px;
  background: #063389;
}

.testimonial-vertical-tag .v-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
}

.beneficiary-header-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  line-height: 1.3;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.beneficiary-header-right p {
  max-width: 420px;
  font-size: 14.5px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.beneficiaries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
  margin-bottom: 90px;
}

.beneficiary-card {
  position: relative;
}

.beneficiary-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.beneficiary-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.beneficiary-meta h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 4px 0;
  font-family: 'Poppins', sans-serif;
}

.beneficiary-meta span {
  font-size: 13px;
  color: #777777;
}

.quote-icon {
  position: absolute;
  top: 70px;
  left: 35px;
  z-index: 10;
  font-size: 32px;
  color: #6b9bf2 !important;
}

.beneficiary-dark-box {
  background: #121417 !important;
  color: #ffffff !important;
  padding: 40px 35px 30px 35px !important;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  margin-top: 15px;
}

.beneficiary-dark-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.92) !important;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars i {
  color: #ffb400 !important;
  font-size: 14px;
}

.beneficiary-partners-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 40px;
  border-top: 1px solid #f0f0f0;
}

.partner-logo-box img {
  max-height: 45px;
  width: auto;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-logo-box img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 991px) {
  .beneficiary-header-row {
    flex-direction: column;
    gap: 20px;
  }
  .beneficiaries-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===================== GLOBAL SCROLL TRANSITION EFFECTS ===================== */
.scroll-reveal {
  opacity: 0 !important;
  transform: translateY(35px) !important;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: opacity, transform;
}

/* ===================== CERTIFICATES PAGE STYLING ===================== */
.certificates-section {
  padding: 80px 0 100px;
  background: #ffffff;
}

.certificates-section h2 { font-size: 36px; margin-bottom: 30px; line-height: 1.3; }

.cert-downloads-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-download {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--gradient); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  border-radius: 30px; transition: all .3s;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(6,51,137,.3); }

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.certificate-card { display: block; text-decoration: none; }

.certificate-thumb {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  aspect-ratio: 1 / 1;
}

.certificate-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}

.certificate-card:hover .certificate-thumb img { transform: scale(1.06); }

.certificate-card h4 {
  font-size: 15px; font-weight: 600; color: #111111;
  font-family: 'Poppins', sans-serif; text-align: center; margin: 0;
}

@media (max-width: 991px) {
  .certificates-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .certificates-grid { grid-template-columns: 1fr; }
  .cert-downloads-row { flex-direction: column; }
}

.scroll-reveal.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===================== CASE STUDY (PROJECT DETAIL) PAGE ===================== */
.case-study-section { padding: 80px 0 100px; }
.case-study-image { border-radius: 8px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,.08); }
.case-study-image img { width: 100%; display: block; }
.case-study-section h2 { font-size: 30px; margin-bottom: 20px; line-height: 1.3; }
.case-study-meta { margin-bottom: 25px; }
.case-study-meta h4 {
  font-size: 15px; font-weight: 700; color: var(--primary);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px;
  font-family: 'Poppins', sans-serif;
}
.case-study-meta p { font-size: 14.5px; color: #555555; line-height: 1.8; margin-bottom: 10px; }
.case-study-meta ul { margin: 0 0 10px; padding-left: 20px; }
.case-study-meta ul li { font-size: 14.5px; color: #555555; line-height: 1.8; margin-bottom: 8px; }
@media (max-width: 991px) {
  .case-study-image { margin-bottom: 30px; }
}
