/* CSS Part 1: Core Styles and Components */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: #52545f;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

button {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.section-tag {
  display: inline-block;
  background-color: rgba(239, 102, 3, 0.1);
  color: #ef6603;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn,
.btn-hero,
.btn-hero-secondary,
.btn-cta,
.btn-submit,
.btn-subscribe,
.btn-view {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  font-size: 15px;
}

.btn {
  background-color: #ef6603;
  color: white;
}

.btn:hover {
  background-color: #d55a02;
  transform: translateY(-2px);
}

.btn-hero {
  background-color: #ef6603;
  color: white;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(239, 102, 3, 0.3);
}

.btn-hero:hover {
  background-color: #d55a02;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(239, 102, 3, 0.4);
}

.btn-hero-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 12px 26px;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-cta {
  background-color: #ef6603;
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(239, 102, 3, 0.3);
}

.btn-cta:hover {
  background-color: #d55a02;
  transform: translateY(-2px);
}

.btn-submit {
  background-color: #ef6603;
  color: white;
  width: 100%;
  padding: 14px;
}

.btn-submit:hover {
  background-color: #d55a02;
}

.btn-subscribe {
  background-color: #ef6603;
  color: white;
  padding: 10px 20px;
}

.btn-subscribe:hover {
  background-color: #d55a02;
}

.btn-view {
  background-color: #ef6603;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
}

.btn-view:hover {
  background-color: #d55a02;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #52545f;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #52545f;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ef6603;
}

.btn-login {
  background-color: #ef6603;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
}

.btn-login:hover {
  background-color: #d55a02;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #52545f;
}

/* CSS Part 2: Section Styles */
/* Hero Section */
.hero {
  background-color: #52545f;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 25px;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(239, 102, 3, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  font-size: 24px;
  color: #ef6603;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #52545f;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.service-features {
  margin-top: auto;
}

.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.service-features i {
  color: #ef6603;
  margin-top: 3px;
}

/* JAMstack Benefits Section */
.jamstack-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(239, 102, 3, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 24px;
  color: #ef6603;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #52545f;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
}

/* Technology Stack Section */
.tech-stack-section {
  padding: 100px 0;
  background-color: #fff;
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.tech-category h3 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #52545f;
  text-align: center;
  position: relative;
}

.tech-category h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #ef6603;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 120px;
}

.tech-item i,
.tech-item img {
  font-size: 40px;
  color: #52545f;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.tech-item span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* CSS Part 3: More Section Styles */
/* Process Section */
.process-section {
  padding: 100px 0;
  background-color: #fff;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 35px;
  width: 2px;
  height: 100%;
  background-color: rgba(239, 102, 3, 0.3);
}

.process-step {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 70px;
  height: 70px;
  background-color: #ef6603;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding-top: 15px;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #52545f;
}

.step-content p {
  color: #666;
}

/* Portfolio Section */
.portfolio-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  color: #52545f;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #ef6603;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(82, 84, 95, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.overlay-content p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #52545f;
}

.portfolio-info p {
  font-size: 14px;
  color: #666;
}

/* Sustainability Section */
.sustainability-section {
  padding: 100px 0;
  background-color: #52545f;
  color: white;
}

.sustainability-section .section-header h2,
.sustainability-section .subtitle {
  color: white;
}

.sustainability-section .section-tag {
  background-color: rgba(239, 102, 3, 0.2);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.commitment-item {
  text-align: center;
}

.commitment-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.commitment-icon i {
  font-size: 28px;
  color: #ef6603;
}

.commitment-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.commitment-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* CSS Part 4: Final Sections and Responsive Styles */
/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: #fff;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.testimonial-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: none;
}

.quote-icon {
  font-size: 30px;
  color: #ef6603;
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 17px;
  color: #52545f;
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ef6603;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.author-info p {
  font-size: 14px;
  color: #666;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52545f;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: #ef6603;
  color: white;
  border-color: #ef6603;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #ef6603;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background-color: #52545f;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #52545f;
}

.contact-info p {
  margin-bottom: 30px;
  color: #666;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  color: #ef6603;
  font-size: 18px;
  margin-top: 3px;
}

.contact-social {
  margin-top: 30px;
}

.contact-form-wrapper {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #52545f;
}

.form-header p {
  color: #666;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.full-width {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #52545f;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ef6603;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'%3E%3Cpath fill='%23666' d='M6 6L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 30px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #666;
  align-items: flex-start;
}

.checkbox-label input {
  width: auto;
  margin-top: 3px;
}

/* Footer */
.footer {
  background-color: #52545f;
  padding: 80px 0 0 0;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.footer-info p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #52545f;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ef6603;
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a:hover {
  color: #ef6603;
  padding-left: 5px;
}

.footer-subscribe h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.footer-subscribe p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-form {
  display: flex;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 14px;
  color: white;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
  color: #ef6603;
}

/* CSS Part 5: Responsive Styles */
/* Responsive Styles */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    padding: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .tech-category h3::after {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 24px;
  }

  .hero {
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .process-step {
    gap: 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .process-timeline::before {
    left: 25px;
  }

  .portfolio-filter {
    flex-wrap: wrap;
  }

  .tech-grid {
    gap: 20px;
  }

  .tech-item {
    width: 90px;
  }

  .benefits-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .commitment-icon {
    width: 60px;
    height: 60px;
  }

  .commitment-icon i {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .slider-controls {
    gap: 15px;
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

/* Special styles for very small screens */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .tech-item {
    width: 70px;
  }

  .benefit-card,
  .service-card {
    padding: 20px;
  }

  .benefit-icon,
  .service-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-icon i,
  .service-icon i {
    font-size: 20px;
  }

  .portfolio-image {
    height: 180px;
  }
}

/* Portfolio filter button styles for AI, JAMstack, and SaaS categories */
.portfolio-filter .filter-btn[data-filter="ai"],
.portfolio-filter .filter-btn[data-filter="jamstack"],
.portfolio-filter .filter-btn[data-filter="saas"] {
  background-color: #f0f0f0;
}

.portfolio-filter .filter-btn[data-filter="ai"].active,
.portfolio-filter .filter-btn[data-filter="jamstack"].active,
.portfolio-filter .filter-btn[data-filter="saas"].active {
  background-color: #ef6603;
  color: white;
}

/* AI and Modern Tech Section Icon Styles */
.tech-item i.fas {
  font-size: 40px;
  color: #52545f;
}

.tech-item i.fab.fa-aws,
.tech-item i.fas.fa-robot {
  color: #52545f;
}
/* CSS for New Expertise Section */
.expertise-section {
  padding: 100px 0;
  background-color: #f9f9f9;
}

.expertise-categories {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.expertise-category {
  background-color: white;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.expertise-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  background-color: #52545f;
  color: white;
}

.expertise-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(239, 102, 3, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon i {
  font-size: 20px;
  color: #ef6603;
}

.expertise-header h3 {
  font-size: 20px;
  margin: 0;
  color: white;
}

.expertise-content {
  padding: 30px;
}

.expertise-content p {
  margin-bottom: 20px;
  color: #666;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.expertise-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.expertise-list i {
  color: #ef6603;
  margin-top: 3px;
}

/* CSS for New Industry Focus Section */
.industry-focus-section {
  padding: 100px 0;
  background-color: #52545f;
  color: white;
}

.industry-focus-section .section-header h2,
.industry-focus-section .subtitle {
  color: white;
}

.industry-focus-section .section-tag {
  background-color: rgba(239, 102, 3, 0.2);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.industry-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.industry-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(239, 102, 3, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-icon i {
  font-size: 28px;
  color: #ef6603;
}

.industry-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
}

.industry-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.industry-features i {
  color: #ef6603;
  margin-top: 3px;
}

/* Responsive Styles for New Sections */
@media (max-width: 992px) {
  .expertise-list {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-header {
    padding: 20px 25px;
  }

  .expertise-content {
    padding: 25px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .expertise-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .expertise-icon {
    margin: 0 auto;
  }

  .expertise-content {
    padding: 20px;
  }

  .industry-card {
    padding: 25px;
  }

  .industry-icon {
    width: 60px;
    height: 60px;
  }

  .industry-icon i {
    font-size: 24px;
  }
}
