/* ============================================
   NOLE AI - Custom Brand CSS
   Brand Colors: Emerald Green + Charcoal Dark
   ============================================ */

:root {
  --nole-green: #1E7D4F;
  --nole-green-dark: #155A38;
  --nole-green-light: #3AAD6E;
  --nole-green-pale: #E8F5EE;
  --nole-dark: #2B2D35;
  --nole-gray: #6c757d;
  --nole-light-bg: #F4FAF7;
  --nole-white: #ffffff;
}

/* ---- GLOBAL OVERRIDES ---- */
body {
  font-family: 'Poppins', sans-serif;
  color: #3a3a3a;
}

/* Override template primary color to Nole green */
.btn-primary, .btn-style {
  background: var(--nole-green) !important;
  border-color: var(--nole-green) !important;
  color: #fff !important;
}
.btn-primary:hover, .btn-style:hover {
  background: var(--nole-green-dark) !important;
  border-color: var(--nole-green-dark) !important;
}

.btn-outline, .btn-outline-style {
  border: 2px solid var(--nole-green) !important;
  color: var(--nole-green) !important;
  background: transparent !important;
}
.btn-outline:hover, .btn-outline-style:hover {
  background: var(--nole-green) !important;
  color: #fff !important;
}

/* ---- NAVBAR ---- */
#site-header {
  background: rgba(27, 27, 35, 0.97) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  padding: 0;
}
#site-header .navbar {
  padding: 10px 0;
}
.navbar-brand {
  padding: 4px 0;
  display: flex;
  align-items: center;
}
.navbar-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  /* NO padding — the logo PNG has its own natural whitespace margin.
     Extra CSS padding just shrinks the visible logo content further. */
  padding: 0;
  overflow: hidden;
  line-height: 1;
}
.navbar-logo-wrap img.site-logo {
  /* Display at full height of the navbar slot so the logo content is large */
  height: 54px;
  width: auto;
  display: block;
}
/* Footer logo pill */
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 14px;
  line-height: 1;
}
.footer-logo-wrap img {
  height: 50px;
  width: auto;
  display: block;
}
/* Hero logo card — no extra padding, logo PNG provides its own natural margin */
.hero-logo-card {
  display: inline-block;
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-logo-card img.hero-logo {
  max-width: 340px;
  width: 100%;
  display: block;
  animation: floatLogo 4s ease-in-out infinite;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding: 8px 14px !important;
}
.nav-link:hover, .nav-link.active-link {
  color: var(--nole-green-light) !important;
}
.navbar-nav .btn-book {
  background: var(--nole-green) !important;
  border-color: var(--nole-green) !important;
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s;
}
.navbar-nav .btn-book:hover {
  background: var(--nole-green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,125,79,0.4);
}

/* ---- HERO / BANNER ---- */
.banner {
  background: linear-gradient(135deg, #1a1e24 0%, #1e2d25 50%, #1a2820 100%) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,125,79,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.banner h1.title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.banner h1.title strong {
  color: var(--nole-green-light);
}
.banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
}
.banner-tagline {
  display: inline-block;
  background: rgba(30,125,79,0.2);
  border: 1px solid rgba(30,125,79,0.4);
  color: var(--nole-green-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-logo {
  max-width: 340px;
  filter: drop-shadow(0 10px 40px rgba(30,125,79,0.3));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ---- INNER BANNER (subpages) ---- */
.inner-banner {
  background: linear-gradient(135deg, #1a1e24 0%, #1e2d25 100%) !important;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-title-block {
  text-align: center;
  padding: 80px 0 30px;
}
.page-title-block h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-title-block p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}
.breadcrumb {
  background: #f4faf7;
  border-bottom: 1px solid #e0ede7;
}
.breadcrumb-item a {
  color: var(--nole-green);
}
.breadcrumb-item.active {
  color: var(--nole-gray);
}

/* ---- SECTION TITLES ---- */
.section-title {
  color: var(--nole-dark);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--nole-green), var(--nole-green-light));
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--nole-gray);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---- ABOUT SECTION (homepage) ---- */
.w3l-about {
  padding: 80px 0;
  background: #fff;
}
.w3l-about .info .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--nole-dark);
}
.w3l-about .info h6 {
  color: var(--nole-green-dark);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---- SERVICES GRID ---- */
#services {
  padding: 80px 0;
  background: var(--nole-light-bg);
}
.box-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 30px;
  border: 1px solid #e8f0ec;
  transition: all 0.3s ease;
  height: 100%;
}
.box-wrap:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30,125,79,0.12);
  border-color: var(--nole-green-light);
}
.box-wrap .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--nole-green), var(--nole-green-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.box-wrap .icon span {
  color: #fff !important;
  font-size: 1.5rem;
}
.box-wrap h4 a {
  color: var(--nole-dark);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.box-wrap h4 a:hover {
  color: var(--nole-green);
}
.box-wrap p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ---- STATS SECTION ---- */
.stats {
  background: linear-gradient(135deg, var(--nole-green-dark) 0%, var(--nole-green) 100%) !important;
  padding: 70px 0;
}
.stats .left-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.stats .white {
  color: rgba(255,255,255,0.8);
}
.stats .counter {
  text-align: center;
  padding: 20px;
}
.stats .counter .icon span {
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
}
.stats .counter .value {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 4px;
}
.stats .counter .title {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 80px 0;
  background: #fff;
}
.testimonials.dark-bg {
  background: var(--nole-light-bg);
}
.customers_grid {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid #e8f0ec;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.customers_grid:hover {
  box-shadow: 0 8px 30px rgba(30,125,79,0.1);
}
.custo-img-res {
  margin-bottom: 16px;
}
.custo-img-res img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--nole-green-pale);
}
.ratings span {
  color: #f4b429;
  font-size: 1rem;
}
.customers_grid p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.customers_grid h5 {
  color: var(--nole-dark);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
.customers_grid .client-role {
  color: var(--nole-green);
  font-size: 0.85rem;
}
.quote-icon {
  font-size: 2rem;
  color: var(--nole-green-pale);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, #1a1e24 0%, #1e2d25 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.btn-cta {
  display: inline-block;
  background: var(--nole-green);
  color: #fff !important;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--nole-green);
  box-shadow: 0 6px 20px rgba(30,125,79,0.35);
}
.btn-cta:hover {
  background: var(--nole-green-dark);
  border-color: var(--nole-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(30,125,79,0.45);
  text-decoration: none;
  color: #fff;
}
.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: #fff !important;
  padding: 13px 36px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 16px;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  text-decoration: none;
  color: #fff;
}

/* ---- TEAM SECTION ---- */
.team-section {
  padding: 80px 0;
  background: #fff;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8f0ec;
  transition: all 0.3s;
  margin-bottom: 30px;
  text-align: center;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30,125,79,0.12);
}
.team-card .team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
}
.team-card .team-info {
  padding: 24px 20px;
}
.team-card h5 {
  color: var(--nole-dark);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.team-card .team-role {
  color: var(--nole-green);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--nole-green-pale);
  color: var(--nole-green) !important;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin: 0 4px;
  transition: all 0.2s;
  text-decoration: none;
}
.team-social a:hover {
  background: var(--nole-green);
  color: #fff !important;
}

/* ---- PROJECTS PAGE ---- */
.projects-section {
  padding: 80px 0;
  background: var(--nole-light-bg);
}
.project-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8f0ec;
  transition: all 0.3s;
  margin-bottom: 30px;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30,125,79,0.12);
}
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.project-card .project-info {
  padding: 24px;
}
.project-card h5 {
  color: var(--nole-dark);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.project-card p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.project-tag {
  display: inline-block;
  background: var(--nole-green-pale);
  color: var(--nole-green-dark);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 500;
  margin: 2px 3px 2px 0;
}

/* ---- LEAD GEN SECTION ---- */
.leadgen-section {
  padding: 80px 0;
  background: #fff;
}
.leadgen-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}
.leadgen-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--nole-green), var(--nole-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 18px;
}
.leadgen-icon span {
  color: #fff;
  font-size: 1.2rem;
}
.leadgen-feature h6 {
  color: var(--nole-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.leadgen-feature p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- SERVICES PAGE ---- */
.service-detail-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 30px;
  border: 1px solid #e8f0ec;
  margin-bottom: 30px;
  transition: all 0.3s;
  height: 100%;
}
.service-detail-card:hover {
  box-shadow: 0 12px 36px rgba(30,125,79,0.1);
  border-color: var(--nole-green-light);
  transform: translateY(-4px);
}
.service-icon-lg {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--nole-green-dark), var(--nole-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-lg span {
  color: #fff;
  font-size: 1.8rem;
}
.service-detail-card h4 {
  color: var(--nole-dark);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.service-detail-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail-card ul li {
  color: #555;
  font-size: 0.9rem;
  padding: 4px 0;
}
.service-detail-card ul li::before {
  content: '✓';
  color: var(--nole-green);
  font-weight: 700;
  margin-right: 8px;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 80px 0;
  background: #fff;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 8px;
  border: 1.5px solid #d8e8e0;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--nole-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30,125,79,0.1);
}
.contact-form textarea {
  height: 140px;
  resize: vertical;
}
.contact-info-card {
  background: var(--nole-light-bg);
  border-radius: 14px;
  padding: 32px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--nole-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 16px;
}
.contact-info-icon span {
  color: #fff;
  font-size: 1.1rem;
}
.contact-info-item h6 {
  color: var(--nole-dark);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-info-item p {
  color: #666;
  font-size: 0.92rem;
  margin: 0;
}

/* ---- FOOTER ---- */
#site-footer {
  background: var(--nole-dark);
}
#site-footer .top-footer {
  background: #1e2128;
  padding: 60px 0 40px;
}
#site-footer .bottom-footer {
  background: #16181f;
  padding: 18px 0;
}
.footer-logo img {
  height: 36px;
}
.footer-logo {
  margin-bottom: 14px;
}
#site-footer p.copyright {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  margin: 0;
}
#site-footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-title {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-list li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-list li a:hover {
  color: var(--nole-green-light);
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form .input-rounded {
  flex: 1;
  padding: 10px 16px;
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
.newsletter-form .input-rounded::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-form .input-rounded:focus {
  outline: none;
  border-color: var(--nole-green);
}
.social-item {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7) !important;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-item:hover {
  background: var(--nole-green);
  color: #fff !important;
}

/* ---- SCROLL TO TOP ---- */
#movetop {
  background: var(--nole-green) !important;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(30,125,79,0.35);
}

/* ---- PROCESS STEPS ---- */
.process-section {
  padding: 80px 0;
  background: var(--nole-light-bg);
}
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nole-green-dark), var(--nole-green));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.process-step h5 {
  color: var(--nole-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.process-step p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- ABOUT PAGE - COMPANY VALUES ---- */
.values-section {
  padding: 80px 0;
  background: #fff;
}
.value-item {
  padding: 28px;
  border-left: 3px solid var(--nole-green);
  background: var(--nole-light-bg);
  border-radius: 0 10px 10px 0;
  margin-bottom: 24px;
}
.value-item h5 {
  color: var(--nole-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.value-item p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- TECH STACK BADGES ---- */
.tech-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--nole-green-pale);
  color: var(--nole-green-dark);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  margin: 4px;
  border: 1px solid rgba(30,125,79,0.2);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .banner h1.title { font-size: 2.2rem; }
  .hero-logo { max-width: 260px; }
  .section-title { font-size: 1.7rem; }
}
@media (max-width: 767px) {
  .banner h1.title { font-size: 1.9rem; }
  .banner { padding-top: 90px; }
  .cta-section h2 { font-size: 1.7rem; }
  .newsletter-form { flex-direction: column; }
  .btn-cta-outline { margin-left: 0; margin-top: 12px; }
}
