/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home Section */
#home {
  padding: 120px 20px;
  background: #000000;
}

#home > div {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

#home > div > div:first-child {
  flex: 1 1 500px;
  padding: 20px;
  min-width: 280px;
}

#home .fade-up.leading-text {
  color: #28a745;
  font-weight: 600;
  font-size: 18px;
  animation-delay: 0.2s;
}

#home h2.fade-up {
  font-size: 32px;
  font-weight: 700;
  margin: 15px 0 10px;
  line-height: 1.2;
  animation-delay: 0.4s;
}

#home h1.fade-up {
  font-size: 42px;
  font-weight: 700;
  color: #28a745;
  margin: 0 0 30px;
  line-height: 1.2;
  animation-delay: 0.6s;
}

#home p.fade-up.intro-text {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.5;
  animation-delay: 1s;
}

#home .fade-up.app-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation-delay: 1.2s;
}

#home .fade-up.app-buttons img {
  height: 55px;
}

#home > div > div:last-child {
  flex: 1 1 400px;
  text-align: center;
  padding: 20px;
  min-width: 280px;
  animation-delay: 1.4s;
}

#home > div > div:last-child img {
  max-width: 100%;
  height: 550px;
}

/* Responsive Padding and Text Sizes */
@media (max-width: 1200px) {
  #home {
    padding: 100px 20px;
  }
}

@media (max-width: 1024px) {
  #home {
    padding: 90px 20px;
  }
  #home h2 {
    font-size: 28px;
  }
  #home h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  #home p:first-of-type {
    font-size: 16px;
    margin-bottom: 12px;
  }
  #home p:last-of-type {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  #home {
    padding: 70px 15px;
  }
  #home div[style*="display:flex"] {
    flex-direction: column;
    text-align: center;
  }
  #home h2 {
    font-size: 24px;
  }
  #home h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  #home p:first-of-type {
    font-size: 15px;
    margin-bottom: 10px;
  }
  #home p:last-of-type {
    font-size: 14px;
  }
  #home .flex-wrap a img {
    height: 50px;
  }
}

@media (max-width: 480px) {
  #home {
    padding: 60px 10px;
  }
  #home h2 {
    font-size: 20px;
  }
  #home h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  #home p:first-of-type {
    font-size: 14px;
    margin-bottom: 8px;
  }
  #home p:last-of-type {
    font-size: 13px;
  }
  #home .flex-wrap a img {
    height: 45px;
  }
}



/* ===== Slider Animation ===== */
.clients-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll-logos 30s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== Each Client Logo ===== */
.client {
  flex: 0 0 auto;
  width: 140px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .trusted-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
  .clients-track {
    gap: 60px;
    animation-duration: 25s;
  }
}

@media (max-width: 768px) {
  .clients-track {
    gap: 40px;
    animation-duration: 20s;
  }
  .client {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .trusted-by-section {
    padding: 60px 10px;
    margin: 40px auto;
  }
  .clients-track {
    gap: 30px;
    animation-duration: 18s;
  }
  .client {
    width: 80px;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  section div[style*="max-width:50%"] {
    max-width: 100% !important;
    text-align: left !important;
  }
  section h3 {
    font-size: 20px !important;
  }
  section p {
    font-size: 15px !important;
  }
  section div[style*="position:absolute; left:50%"] {
    left: 10% !important;
    transform: translateY(-50%) !important;
  }
}

/* Business Models Section Styles */
.business-models-section {
  position: relative;
  padding: 80px 20px;
  background: #000000;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}

.business-models-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.business-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 0;
}

/* Inner glow effect for headings */
.heading-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 0;
}

.business-model-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: linear-gradient(135deg, #000000 0%, #0f2f1a 100%);
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.business-model-card:hover .heading-glow {
  opacity: 1;
}

.business-model-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(46, 204, 113, 0.8) !important;
  background: linear-gradient(135deg, #0a1a0a 0%, #1a4a2a 100%) !important;
  box-shadow: 0 12px 32px rgba(46, 204, 113, 0.4), 0 0 24px rgba(46, 204, 113, 0.3) !important;
}

.business-model-card h3 {
  color: #2ecc71;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.2;
}

.business-model-card h3 .scrap-marketing-title {
  font-size: 25px;
  line-height: 1.3;
}

.business-model-card h3 .scrap-marketing-title span {
  display: block;
}

.business-model-card:hover h3 {
  color: #4ade80 !important;
  text-shadow: 0 0 12px rgba(46, 204, 113, 0.4) !important;
}

.business-model-card:focus {
  outline: 2px solid rgba(40, 167, 69, 0.5);
  outline-offset: 2px;
  border-radius: 16px;
}

.business-model-card:active {
  transform: translateY(-2px) !important;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 992px) {
  .business-models-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  
  .business-model-card {
    min-height: 110px !important;
  }
  
  .business-model-card h3 {
    font-size: 28px !important;
  }
}

@media (max-width: 768px) {
  .business-models-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  .business-models-section {
    padding: 60px 20px !important;
  }
  
  .business-model-card {
    padding: 28px 24px !important;
    min-height: 100px !important;
  }
  
  .business-model-card h3 {
    font-size: 26px !important;
    letter-spacing: 0.3px !important;
  }
  
  .business-model-card p {
    font-size: 15px !important;
  }
}

/* Commitment Section */
.commitment-section {
  padding: 60px 20px;
  background: #000000;
  font-family: Arial, sans-serif;
}

.commitment-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #ffffff;
}

.commitment-section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.commitment-card {
  flex: 1 1 45%;
  background: linear-gradient(135deg, #1a1a1a, #0d2a0d);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.commitment-card h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 15px;
}

.commitment-card .card-content-visible p,
.commitment-card .card-content-hidden p {
  color: #ffffff;
  line-height: 1.7;
  font-size: 16px;
}

.card-content-hidden {
  display: none;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  opacity: 0;
  max-height: 0;
}

.card-content-hidden.expanded {
  opacity: 1;
}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: #28a745 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.read-more-btn:hover {
  color: #4BC441 !important;
  text-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
  text-decoration: underline;
}

.read-more-btn:focus {
  outline: 2px solid rgba(40, 167, 69, 0.5);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Contact Section Styling */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #185320;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  height: fit-content;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #185320;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #28a745;
  border-radius: 2px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #185320;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.1);
  background: #28a745;
}

.contact-details h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  line-height: 1.5;
}

.contact-details a {
  color: #185320;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.contact-details a:hover {
  color: #28a745;
}

.contact-form-container {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.contact-form-container h3 {
  font-size: 1.8rem;
  color: #185320;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
}

.contact-form-container h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #28a745;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #ffffff;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
  background: #0d0d0d;
  color: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
  background: #1a1a1a;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #185320;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-btn:hover {
  background: #28a745;
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info, .contact-form-container {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-info h3, .contact-form-container h3 {
    font-size: 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .contact-info, .contact-form-container {
    padding: 25px 20px;
  }
  
  .contact-header h2 {
    font-size: 1.8rem;
  }
}

/* Contact Cards Section Styling */
.contact-cards-section {
  padding: 60px 20px;
  background: #000000;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.contact-cards-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-card-white {
  flex: 1;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-card-green {
  flex: 1;
  background: #185320;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: rgb(86, 76, 76);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.contact-card-green {
  display: flex;
  gap: 2rem;
  background-color: #0d2a0d;
  padding: 25px;
  border-radius: 12px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.service-tag {
  background: #0d2a0d;
  color: #28a745;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-subtitle a {
  color: #ffffff;
}

.operating-hours {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f7fbf7;
  min-width: 120px;
  text-align: center;
  margin-bottom: 20px;
}

.stat-item i {
  font-size: 36px;
  margin-bottom: 10px;
  color: #eff2ef;
  transition: transform 0.3s ease, color 0.3s ease;
}

.stat-item:hover i {
  transform: scale(1.2);
  color: #deded5;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #d5d7d5;
  margin-top: 5px;
  opacity: 0.9;
  line-height: 1.2;
}

/* Responsive Design for Contact Cards */
@media (max-width: 768px) {
  .contact-cards-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-card-white,
  .contact-card-green {
    padding: 30px 25px;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .service-tags {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-cards-section {
    padding: 40px 15px;
  }
  
  .contact-card-white,
  .contact-card-green {
    padding: 25px 20px;
  }
  
  .contact-title {
    font-size: 1.4rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .service-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}
