/* Industries Page Styles */

/* Hero Section */
.industries-hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 20px 80px;
  overflow: hidden;
}

.industries-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/bg4.jpg') center/cover;
  opacity: 0.1;
  z-index: 0;
}

.industries-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.industries-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  margin: 0 auto;
}

.industries-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight-text {
  color: #f1c40f;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Industry Stats Section */
.industry-stats {
  background: #f8f9fa;
  padding: 60px 20px;
}

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

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h2 {
  font-size: 3rem;
  color: #667eea;
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

/* Main Industries Section */
.industries-main {
  padding: 80px 20px;
  background: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #1a1a2e;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.industry-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
}

.industry-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.industry-card h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 15px;
  font-weight: 700;
}

.industry-card > p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.industry-services {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.industry-services li {
  padding: 8px 0;
  color: #555;
  font-size: 0.9rem;
  position: relative;
  padding-left: 25px;
}

.industry-services li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 1.1rem;
}

.industry-cta {
  display: inline-block;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.industry-cta:hover {
  color: #764ba2;
  transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-industries {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  color: white;
}

.why-choose-industries h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.why-choose-industries .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.choose-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.choose-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.choose-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.choose-card p {
  line-height: 1.7;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies {
  padding: 80px 20px;
  background: #f8f9fa;
}

.case-studies h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a1a2e;
  font-weight: 700;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.case-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.case-content {
  padding: 25px;
}

.case-industry {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.case-content h3 {
  font-size: 1.3rem;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-weight: 700;
}

.case-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.case-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.case-stats span {
  background: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #667eea;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.cta-button.secondary {
  background: white;
  color: #667eea;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

/* Footer - Matching index.html style */
.footer {
    background-color: #f8f9fa;
    padding: 60px 20px 0;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ddd;
}

/* Column 1: Brand Info */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2C3E9E;
    margin: 0;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.social-icon:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-company-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2C3E9E;
}

.footer-company-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #333;
}

.footer-company-info p {
    font-size: 0.85rem;
    margin: 6px 0;
    color: #666;
    line-height: 1.5;
}

/* Other Columns */
.footer-column h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-column ul li a:hover {
    color: #2C3E9E;
    padding-left: 5px;
}

/* Contact Column */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industries-hero {
    min-height: 400px;
    padding: 100px 20px 60px;
  }

  .industries-hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .industries-grid,
  .choose-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    padding: 25px;
  }

  .industry-icon {
    width: 70px;
    height: 70px;
  }

  .industry-icon img {
    width: 40px;
    height: 40px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item h2 {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    padding-right: 0;
  }

  /* Mobile navigation adjustments */
  .navbar {
    padding: 0 20px;
  }

  .nav-logo {
    height: 50px !important;
  }
}

@media (max-width: 480px) {
  .industries-hero {
    padding: 120px 15px 60px;
  }

  .industries-hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stat-item h2 {
    font-size: 2rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .industry-card {
    padding: 20px;
  }

  .industry-card h3 {
    font-size: 1.3rem;
  }

  .industry-services li {
    font-size: 0.85rem;
  }

  .choose-card {
    padding: 25px;
  }

  .choose-card h3 {
    font-size: 1.2rem;
  }

  .case-content h3 {
    font-size: 1.2rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
}
