/* ===== Base Styles & Variables ===== */
:root {
  --primary-color: #ed0404;
  --secondary-color: #ed0404;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f9f9f9;
  --transition-speed: 0.3s;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --border-radius: 8px;
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed);
}

/* ===== Layout Components ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
}

h1 span {
  color: var(--secondary-color);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
  position: relative;
  margin-bottom: 1.5rem;
}


h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

strong {
  font-weight: 700;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 1rem;
  font-size: 0.875rem;
  text-align: center;
  background-color: #f1f1f1;
  color: #666;
  margin: 1rem auto;
  max-width: var(--container-width);
  border-radius: var(--border-radius);
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== About Section ===== */
.about-section {
  padding: 4rem 0;
  background-color: #fff;
}

.about-content {
  margin-top: 2rem;
}

/* ===== Lists ===== */
.services-list, .benefits-list, .industries-list {
  list-style: none;
  margin: 1.5rem 0;
}

.services-list li, .benefits-list li, .industries-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.services-list i, .benefits-list i, .industries-list i {
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* ===== Expertise Grid ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.expertise-item {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all var(--transition-speed);
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.expertise-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== Image Section ===== */
.about-image {
  position: relative;
}

.about-image img {
  width: 50%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.image-caption {
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
  color: #666;
}

/* ===== CTA Section ===== */
.cta-section {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.cta-button:hover {
  background: #247a3d;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Footer ===== */
footer {
  background-color: #f4f4f4;
  color: var(--text-dark);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.footer-section h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
}

.footer-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 1.25rem;
}

.social-icons a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  background-color: #292b35;
  color: #ccc;
  text-align: center;
  padding: 1.5rem 0;
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text {
  animation: fadeIn 1.2s ease-out;
}

/* ===== Media Queries ===== */
@media (max-width: 992px) {
  .about-section .container {
    flex-direction: column;
  }
  
  .about-text {
    margin-right: 0;
    margin-bottom: 3rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
}