/* Company Page Specific Styles */

/* Page Background */
body {
  background-image: url("/images/other_pages_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 20%);
  z-index: -1;
}

/* Hero Section */
.hero {
  padding: 30px 0 20px;
  margin-top: 70px;
}

.hero-content {
  text-align: center;
}

.hero-content h2 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  margin-bottom: 1.5rem;
}

/* Company Overview */
.company-overview {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 0.5rem;
}


.company-services {
  background: rgb(255 255 255 / 95%);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
  backdrop-filter: blur(10px);
}


.services-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #e9ecef;
}


.services-icon {
  font-size: 2rem;
  margin-right: 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.services-header h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
}

.development-history {
  list-style: none;
  padding: 0;
  margin: 0;
}

.development-history li {
  background: #f8f9fa;
  padding: 0.6rem;
  margin-bottom: 0.4rem;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  font-size: 0.9rem;
  line-height: 1.4;
}

.development-history strong {
  color: #2c3e50;
}

.services-content h4 {
  color: #667eea;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-weight: 600;
}

.services-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  text-align: justify;
}

/* Company History */
.company-history {
  padding: 40px 0;
}

.history-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
}

.history-content img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
}

/* Footer */

/* Company Page Responsive */
@media (width <= 768px) {
  .company-overview {
    max-width: 100%;
    padding: 0 1rem;
  }
}
