/* Apply styles only to the .company-info section */
.company-info {
  font-family: 'Poppins', sans-serif;
  font-weight: 300; /* Light weight */
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  line-height: 1.8;
  color: #222;
}

.company-info .section-content {
  margin-bottom: 32px;
}

.company-info .section-content p {
  font-size: 1.1rem;
}

/* Responsive Styles for .company-info */
@media screen and (max-width: 768px) {
  .company-info {
    padding: 30px 15px;
  }
  .company-info .section-content p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .company-info {
    padding: 30px 30px;
  }
  .company-info .section-content p {
    font-size: 1rem;
  }
}

/* AOS Animations for elements inside .company-info */
.company-info .aos-animate {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}







/* Scoped CSS for this section only, with 'mvc' prefix */
.mvc-section {
  font-family: 'Poppins', sans-serif;
  max-width: 100%; /* Ensure section doesn't exceed viewport width */
  margin: 5px auto; /* Reduced margin-top to 5px */
  padding: 40px 20px;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

.mvc-section .mvc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%; /* Ensure container doesn't exceed viewport width */
}

/* Base card styling scoped to .mvc-section */
.mvc-section .mvc-card {
  flex: 1 1 280px;
  max-width: 280px;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  border-left: 5px solid #2c3e50; /* Blue/dark blue left edge */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

/* Card 1 - Off white */
.mvc-section .mvc-card-vision {
  background-color: #f9f9f9; /* Off white */
}

/* Card 2 - Dirty off white */
.mvc-section .mvc-card-mission {
  background-color: #e6e6e6; /* Dirty off white */
}

/* Card 3 - Dirty to light blue off white */
.mvc-section .mvc-card-values {
  background-color: #d6e6f1; /* Dirty light blue off white */
}

.mvc-section .mvc-card-title {
  margin-top: 0;
  font-size: 1.25rem;
  color: #34495e;
}

.mvc-section .mvc-card-text {
  font-size: 1rem;
  line-height: 1.7;
}

.mvc-section .mvc-card-list {
  font-size: 1rem;
  padding-left: 20px;
  line-height: 1.7;
  margin: 0;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .mvc-section {
    padding: 20px 10px; /* Less padding on smaller screens */
  }

  .mvc-section .mvc-container {
    gap: 20px; /* Reduced gap between cards */
  }

  .mvc-section .mvc-card {
    flex: 1 1 100%; /* Cards take up full width on smaller screens */
    max-width: 100%; /* Ensure cards are full-width */
  }

  .mvc-section .mvc-card-title {
    font-size: 1.1rem; /* Slightly smaller titles */
  }

  .mvc-section .mvc-card-text,
  .mvc-section .mvc-card-list {
    font-size: 0.95rem; /* Adjust font size for better readability */
  }
}

/* Mobile Specific (below 480px) */
@media (max-width: 480px) {
  .mvc-section {
    padding: 25px 25px; /* Smaller padding for very small screens */
  }

  .mvc-section .mvc-card {
    padding: 20px 20px; /* Slightly smaller padding inside the card */
  }

  .mvc-section .mvc-card-title {
    font-size: 1.2rem; /* Smaller titles for mobile */
  }

  .mvc-section .mvc-card-text,
  .mvc-section .mvc-card-list {
    font-size: 1rem; /* Even smaller text on mobile */
  }
}





@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
@import url('https://unpkg.com/aos@2.3.1/dist/aos.css');

.abtcta-hero-section {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, rgba(220, 210, 190, 0.8), rgba(240, 230, 200, 0.8)), url('https://www.transparenttextures.com/patterns/asfalt.png');
  color: #333333;
  padding: 20px 20px;
  text-align: center;
  filter: brightness(1.2);
}

.abtcta-hero-section .abtcta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.abtcta-hero-section .abtcta-headline {
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: #2c3e50;
}

.abtcta-hero-section .abtcta-description {
  font-size: 1rem;
  margin: 0 0 15px;
  color: #34495e;
}

.abtcta-hero-section .abtcta-cta-button {
  display: inline-block;
  background-color: #3b82f6;
  color: #ffffff;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.abtcta-hero-section .abtcta-cta-button:hover {
  background-color: #2563eb;
}

/* Responsive adjustments scoped to this section only */
@media (max-width: 600px) {
  .abtcta-hero-section .abtcta-headline {
    font-size: 1.25rem;
  }

  .abtcta-hero-section .abtcta-description {
    font-size: 0.95rem;
  }

  .abtcta-hero-section .abtcta-cta-button {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

@media (max-width: 400px) {
  .abtcta-hero-section .abtcta-headline {
    font-size: 1.1rem;
  }

  .abtcta-hero-section .abtcta-description {
    font-size: 0.9rem;
  }

  .abtcta-hero-section .abtcta-cta-button {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}
