* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
}

/* REQUIRED PARAGRAPH STYLE */
p {
  font-family: Poppins, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: #666;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h2 {
  color: #005aa0;
  margin-bottom: 12px;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-left: 16px;
  margin-bottom: 18px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #0f5d2f, #1fa463);
  transform: translateY(-50%);
  border-radius: 4px;
}

.section-title span {
  color: #0f5d2f;
}

/* HEADER */
.site-header {
	background: linear-gradient(to top, #f9efe499 0%, #fff 80%);
	padding: 12px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 44px;
}

.call-btn {
  background: #005aa0;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

/* SECTIONS */
section {
  padding: 55px 0;
  text-align: center;
}

.about {
    background: linear-gradient(to top, #f5f5f5, #ffffff);
}
.brand {
    background: linear-gradient(
        to top,
        #f1f1f1 0%,
        #ffffff 70%
    );
}

.brand .highlight {
  font-size: 20px;
  font-weight: 600;
  color: #d4af37;
  margin-top: 20px;
}


.website-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 40px;
  color: #005aa0;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15,93,47,.35);
  transition: all .3s ease;
}

.website-link a i {
  font-size: 16px;
}

.website-link a:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(15,93,47,.45);
}


.glonuts-badge {
  background: #005aa0;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

/* CLIENT SLIDER */
.clients {
  background: #f8f8f8;
}

.client-slider div {
  padding: 15px;
}

.client-slider img {
  max-height: 60px;
  margin: auto;
  filter: grayscale(100%);
  transition: 0.3s;
}

.client-slider img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

.slick-prev:before,
.slick-next:before {
  color: #005aa0;
}


.address-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.address-grid  p{
		font-weight: 400;
		font-size: 18px;
		line-height: 36px;
  }

.address-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.address-card h3 {
  color: #005aa0;
  margin-bottom: 10px;
}

.address-card i {
  color: #005aa0;
  margin-right: 8px;
}


.address-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.address-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.address-list .icon {
  width: 42px;
  height: 42px;
  background: rgba(15,93,47,.1);
  color: #0f5d2f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.address-list strong {
  font-size: 14px;
  color: #0f5d2f;
  display: block;
  margin-bottom: 2px;
}

.address-list p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #666;
}

/* Card title improvement */
.address-card h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(15,93,47,.15);
}


/* FOOTER */
.footer {
	    background: #f8f8f8;
  padding: 15px;
  text-align: center;
  font-size: 13px;
}

/* WHATSAPP */
.whatsapp-float {
	text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
  z-index: 999;
}

/* DESKTOP */
@media (min-width: 768px) {
  .address-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.client-slider .slick-slide {
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.client-slider img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
