/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  font-family: "Arial", sans-serif;
  background-color: #fff;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  padding: 0; /* Remove padding from images */
}

/* HEADER / NAVBAR */
header {
  width: 100%;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 80px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
.logo img {
  max-width: 150px;
  padding-top: 10px; /* Add padding only to logo */
}
.nav-links {
  display: flex;
  gap: 25px;
}
.nav-item {
  position: relative;
}
.nav-item1 {
  position: relative;
}
.nav-item a {
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s;
}
.nav-item1 a {
  font-weight: 900;
  padding: 5px 10px;
  transition: color 0.3s;
  color: #ff0000;
}
.nav-item1.active a,
.nav-item1 a:hover {
  color: #ff0000;
}
.nav-item.active a,
.nav-item a:hover {
  color: #ff0000;
}
.active-indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ff0000;
  border-radius: 2px;
}
.quote-btn {
  background-color: #ff0000;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.quote-btn:hover {
  background-color: #e60000;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.714);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 25px;
}
.side-links {
  gap: 100px;
}
.side-item {
  position: relative;
  padding-top: 20px;
}
.side-item1 {
  position: relative;
  padding-top: 20px;
}
.side-item1 a {
  font-weight: 900;
  padding: 5px 10px;
  transition: color 0.3s;
  color: #ff0000;
}
.side-item a {
  font-weight: 500;
  padding: 5px 10px;
  transition: color 0.3s;
}
.side-item1.active a,
.side-item1 a:hover {
  color: #ff0000;
}
.side-item.active a,
.side-item a:hover {
  color: #ff0000;
}
.closebutton {
  padding-top: 10px;
  padding-left: 190px;
}

.menubutton {
  display: none;
}
@media (max-width: 1200px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .logo img {
    max-width: 150px; /* Add padding only to logo */
  }
  .nav-links {
  display: flex;
  gap: 15px;
}
}
@media (max-width: 992px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .logo img {
    max-width: 100px; /* Add padding only to logo */
  }
   .nav-links {
  display: flex;
  gap: 10px;
}
}
@media (max-width: 898px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
  }
  .logo img {
    max-width: 100px;
    padding-top: 10px;
  }
  .quote-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-weight: 250;
    transition: background-color 0.3s ease;
  }
  .nav-links {
    display: none;
  }
  .menubutton {
    display: block;
    padding-right: 70px;
  }
}
/* HERO SECTION */
.hero-header {
  text-align: left;
  margin-bottom: 60px;
}

.hero-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}
.hero2 {
  /* Simplified hero layout to single column, removed flex */
  background-color: #fff;
  padding: 0px 80px;
  width: 100%;
  height: 100%;
}
.hero-content2 {
  /* Full width content with proper left-right padding, left-aligned text */
  padding: 0px 0px;
  text-align: justify;
  margin: 0;
  width: 100%;
}
.hero-title2 {
  /* Better typography with left alignment */
  padding: 0px 0px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.3;
  color: #777;
  margin-bottom: 1.5rem;
  text-align: justify;
  font-family: "Arial", sans-serif;
}

/* Enhanced styling for bold service names */
.hero-title2 strong {
  font-weight: 700;
  color: #2c3e50;
}

.hero-title2 .hero-list2 {
  padding-left: 100px;
  font-size: 0.9rem;
}

/* Added styling for service links in hero title */
.hero-title2 .hero-list2 a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.hero-title2 .hero-list2 a:hover {
  color: #ff0000;
  border-bottom: 2px solid #ff0000;
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
}
.hero-title2 .services-link {
  color: #ff0000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.hero-title2 .services-link:hover {
  color: #e00000;
  border-bottom: 2px solid #e00000;
  text-shadow: 0 2px 4px rgba(255, 0, 0, 0.2);
}

.hero-description2 {
  /* Left-aligned description with better spacing */
  font-size: 1.1rem;
  line-height: 1.7;
  color: #777;
  margin-bottom: 2rem;
  text-align: justify;
  font-weight: 400;
  max-width: 100%;
}
.cta-button1 {
  display: inline-block;
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.cta-button1:hover {
  background-color: #e00000;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-content2 {
    padding: 30px 20px 15px 20px;
  }

  .hero-title2 {
    font-size: 1.05rem;
  }
  .hero-description2 {
    font-size: 1.05rem;
  }
  .hero-title2 .hero-list2 {
  padding-left: 80px;
  font-size: 0.9rem;
}
}
@media (max-width: 768px) {
  .hero2 {
    /* Removed flex-direction since it's no longer flex */
    padding: 20px 0;
  }
  .hero-header {
    font-size: 2rem;
  }
  .hero-content2 {
    padding: 40px 25px 20px 25px;
    text-align: left;
  }
  .hero-title2 {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1.2rem;
  }
  .hero-description2 {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .hero-title2 .hero-list2 {
  padding-left: 60px;
  font-size: 0.9rem;
}
}

@media (max-width: 480px) {
  .hero-content {
    padding: 30px 20px 15px 20px;
  }
  .hero-header {
    margin-bottom: 40px;
  }

  .hero-title2 {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
  }
  .hero-description2 {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }
  .hero-title2 .hero-list2 {
  padding-left: 40px;
  font-size: 0.8rem;
}
}
/* FEATURES SECTION */
.features-section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.section-header p {
  font-size: 1.1rem;
  color: #777;
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

.feature-card {
  height: 350px;
  background: #fff;
  border-radius: 10px;
  padding: 30px 25px;
  text-align: center;
  border: 2px solid #eee; /* Slightly thicker border for visibility */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3); /* Red shadow */
  border-color: #ff0000; /* Change border to red */
}

.icon-container {
  width: 70px;
  height: 70px;
  background-color: #ffeeee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-container i {
  font-size: 28px;
  color: #ff0000;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.feature-card p {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }
}
.who-we-are-section {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  color: white !important;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-description {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.read-more-button {
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.read-more-button:hover {
  background-color: rgba(255, 0, 0, 0.9);
}

/* Responsive styles */
@media (min-width: 768px) {
  .who-we-are-section {
    height: 400px;
  }

  .section-title {
    font-size: 3rem;
  }

  .section-description {
    font-size: 1.125rem;
  }
}
.mission-section {
  width: 100%;
  background-color: #ff0000;
  padding: 64px 20px;
  text-align: center;
}

.mission-heading {
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 16px;
}

.mission-text {
  color: #ffffff;
  font-size: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .mission-heading {
    font-size: 36px;
  }

  .mission-text {
    font-size: 18px;
  }
}
.container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.services-section {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.image-container {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover; /* This will make the image cover the container without stretching */
  object-position: center;
  border-radius: 12px;
  padding-top: 0; /* Ensure no padding for these images */
}

.content-container {
  flex: 1;
  padding: 20px 0;
  text-align: left;
}

h1 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #111;
  font-weight: bold;
}

.description {
  font-size: 18px;
  color: #777;
  margin-bottom: 30px;
  line-height: 1.5;
}

.services-list {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
}

.services-list li .check-icon {
  color: #f00;
  margin-right: 12px;
  font-size: 20px;
  font-weight: bold;
}

.cta-text {
  font-size: 18px;
  color: #777;
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: left;
  display: block; /* Ensures it does not collapse */
}

.cta-link {
  color: #f00;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.cta-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section {
    flex-direction: column;
    text-align: center;
  }

  .image-container,
  .content-container {
    width: 100%;
  }

  .cta-text {
    text-align: center; /* Center the text on smaller screens */
  }
}

/* Base styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container3 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Industries Section */
.industries-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title3 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #000;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  color: #777;
  line-height: 1.5;
  padding-bottom: 50px;
}

/* Industries Grid */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Industry Card */
.industry-card {
  flex: 0 0 calc(20% - 30px);
  min-width: 200px;
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; /* for absolute positioning of overlay */
  overflow: hidden; /* hide overlay outside the card */
  min-height: 250px;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Red overlay that fills the card on hover */
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff0000;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 1; /* place it behind text, but above the card background */
}

.industry-card:hover::before {
  transform: scaleX(1);
}

/* Icon Container */
.icon-container {
  width: 70px;
  height: 70px;
  background-color: #f8e8e8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2; /* ensure icon is above overlay */
  transition: all 0.3s ease;
}

.icon-container i {
  font-size: 28px;
  color: #e62e2e;
  transition: color 0.3s ease;
}

/* Removed icon repositioning on hover to avoid overlapping */
/* .industry-card:hover .icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scale(0.8);
    margin: 0;
    background-color: transparent;
  } */

/* Text Content */
.industry-card-content {
  position: relative;
  z-index: 2; /* above overlay */
  transition: color 0.3s ease;
}

.industry-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #000; /* default color */
}

/* Hide the description by default */
.industry-info {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

/* On hover, reveal the description and change text color */
.industry-card:hover .industry-info {
  opacity: 1;
  max-height: 200px; /* adjust as needed */
}

.industry-card:hover .industry-card-content,
.industry-card:hover .industry-card-content * {
  color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
  .industry-card {
    flex: 0 0 calc(33.333% - 30px);
  }
}

@media (max-width: 768px) {
  .industry-card {
    flex: 0 0 calc(50% - 30px);
  }

  .section-title3 {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .industry-card {
    flex: 0 0 100%;
  }

  .section-title {
    font-size: 30px;
  }

  .industries-section {
    padding: 60px 0;
  }
}
.container4 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000;
}

.gallery-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  /* Use 12 columns to allow for different spans */
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  padding: 0;
}

/* First row: 6 portrait images, each spanning 2 columns (2*6 = 12) */
.gallery-item:nth-child(-n + 6) {
  height: 250px;
  grid-column: span 2;
}

/* Second row: 4 images, each spanning 3 columns (3*4 = 12) */
.gallery-item:nth-child(n + 7) {
  height: 200px;
  grid-column: span 3;
}

/* Optional: Adjust grid for smaller screens */
@media (max-width: 1024px) {
  /* You can decide how many columns you want on smaller devices */
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  /* For simplicity in this example, items will take full column width on smaller screens */
  .gallery-item {
    grid-column: span 1 !important;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 200px;
  }
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  margin: 0 auto;
}

.lightbox-caption {
  color: #333;
  text-align: center;
  padding: 15px 0 5px;
  font-size: 16px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 1002;
}

/* Navigation buttons positioned outside the image */
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  max-width: 1000px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  background-color: rgba(255, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s ease;
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: #ff0000;
}

@media (max-width: 1200px) {
  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }
}

/* Container */
.reviews-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: transparent; /* Changed to transparent */
  border-radius: 0;
  box-shadow: none;
}

.header-left h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #333;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Rating Section */
.rating-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 10px;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 24px;
  color: #ffd700;
}

.rating-text {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 5px;
}

.rating-count {
  color: #777;
  font-size: 16px;
}

/* Write Review Button */
.write-review-btn {
  background-color: #ff4d4d;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.write-review-btn:hover {
  background-color: #e60000;
  transform: translateY(-2px);
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

/* Review Card */
.review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid #ddd;
  display: block; /* Make sure it behaves as a block element */
  margin: 0 auto 10px;
}

.reviewer-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.review-date {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.review-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.review-stars .star {
  font-size: 18px;
  margin: 0 2px;
  color: #ffd700;
}

.review-text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 600; /* Make review text bolder */
}

/* Google Logo */
.google-logo {
  width: 24px;
  height: 24px;
  display: block;
  margin: 10px auto 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .header {
    flex-direction: column;
    align-items: center;
  }
  .header-right {
    align-items: center;
    margin-top: 15px;
  }
}
.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.testimonials-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 20px;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-top: 0;
}

.customer-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.testimonial-text {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
  }
}
.container5 {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #000;
}

/* Force the paragraph to display in a single line */
.faq-header p {
  font-size: 1.1rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Style FAQ question buttons with a modern underline effect */
.faq-question {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

/* Create a full-width underline bar that animates on hover */
.faq-question::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ddd;
  transition: background 0.3s;
}

.faq-question:hover::after {
  background: #000;
}

.chevron {
  transition: transform 0.3s ease;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
  padding-top: 15px;
}

.faq-answer p {
  color: #555;
}

@media (max-width: 600px) {
  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }
}
/* CTA Banner Styles */
.cta-banner {
  width: 100%;
  background-color: #ff0000;
  padding: 64px 16px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta-text1 {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button2 {
  background-color: #ffffff;
  color: #0a0a0a;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 2rem;
  }

  .cta-text1 {
    font-size: 1rem;
  }
}

.container7 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  background-color: #fff;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 600px;
  background-color: #fff;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.input-container {
  position: relative;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.input-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  /* Removed inline color to be controlled by CSS below */
}

input,
textarea {
  width: 100%;
  padding: 15px 15px 15px 40px;
  border: none;
  outline: none;
  font-size: 16px;
}

textarea {
  min-height: 120px;
  padding-left: 15px;
  resize: vertical;
}

.textarea-container {
  padding: 0;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #ff0000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 30px;
}

.submit-btn:hover {
  background-color: #e60000;
}

.contact-info {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-circle:hover {
  transform: scale(1.1);
  background-color: #e60000;
}
.contact-icon {
  width: 100%;
  text-align: center;
  /* Adjust vertical alignment if needed; tweak the value until it looks right */
  position: relative;
}

/* Increase icon size and remove any conflicting display settings */
.icon-circle i {
  font-size: 24px; /* Adjust size as needed */
  color: #ff0000;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  /* Remove display: block or line-height if present, as flex centers the icon */
}
.icon-circle:hover i {
  color: #fff;
}

.info-text h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-top: 12px;
  color: #666;
}

.info-text p {
  color: #666;
  font-size: 14px;
}

.social-media h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #666;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons .icon-circle {
  margin-right: 0;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container7 {
    flex-direction: column;
  }

  .map-container {
    margin-top: 30px;
    height: 400px;
  }
}
.footer {
  background-color: #1e2637;
  color: #a0a8b9;
  padding: 50px 0 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.logo {
  margin-bottom: 15px;
}

.tagline {
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-icons {
  display: flex;
  gap: 30px;
}

.social-icons a {
  color: #a0a8b9;
  font-size: 30px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 500;
}

ul {
  list-style: none;
}

ul li {
  margin-bottom: 12px;
}

ul li a {
  color: #a0a8b9;
  text-decoration: none;
  transition: color 0.3s;
}

ul li a:hover {
  color: #ffffff;
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  width: 20px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #2d3748;
  margin-top: 20px;
}

.copyright {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ff0000;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 480px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
/* service page */

/* Add this at the end of the CSS file */

/* Service Page Styles */
.service-hero {
  background-color: #ff0000;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.service-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.service-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.services-list-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.services-header h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ff0000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

/* Update the service card styles to ensure consistent sizing */
/* Remove the updated service card styles from the previous change */
/* And add this specific style for the service-read-more button */

.service-read-more {
  display: inline-block;
  margin-top: 15px;
  background-color: #ff0000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 120px; /* Fixed width for all buttons */
  text-align: center; /* Center the text */
}

.service-read-more:hover {
  background-color: #e60000;
  transform: translateY(-2px);
}

/* Service card styles - reverted to original but with minor adjustments */
.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 0, 0.15);
}

.service-icon {
  background-color: #ffeeee;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 24px;
  color: #ff0000;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.service-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  width: 100%; /* Ensure paragraph takes full width */
}

.service-contact {
  background-color: #fff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.contact-container h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #ff0000;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.contact-item i {
  font-size: 20px;
  color: #ff0000;
  width: 40px;
  height: 40px;
  background-color: #ffeeee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item p {
  font-size: 1.1rem;
  color: #333;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.service-cta-btn {
  background-color: #ff0000;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.service-cta-btn:hover {
  background-color: #e60000;
}

.service-contact-btn {
  background-color: #fff;
  color: #ff0000;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid #ff0000;
  transition: background-color 0.3s, color 0.3s;
}

.service-contact-btn:hover {
  background-color: #ff0000;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .service-cta-btn,
  .service-contact-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero p {
    font-size: 1rem;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .contact-container h2 {
    font-size: 2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }
}
/* Preloader wrapper covers the entire viewport */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000; /* optional background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* on top of everything */
}

/* Make the video scale while preserving aspect ratio */
#preloader-video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* or `cover`, depending on whether you want full-bleed */
}

/* Scroll to Top Button - Fixed and Improved */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff0000, #e60000);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  user-select: none;
  outline: none;
}

.scroll-to-top.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #e60000, #cc0000);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.scroll-to-top:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

.scroll-to-top::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid white;
  transition: all 0.3s ease;
}

.scroll-to-top:hover::before {
  transform: translateY(-1px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .scroll-to-top::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 7px solid white;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .scroll-to-top::before {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid white;
  }
}
/*aboutus page*/
.container6 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-header h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #000;
}
/* About Us Page Styles - Peace Star Engineering Workshop */

/* Hero Section */
.about-hero1 {
  background: linear-gradient(135deg, #ff0000, #e60000);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><style>.a{fill:none;stroke:%23ffffff;stroke-width:0.3;opacity:0.1;}</style></defs><line class="a" x1="0" y1="0" x2="100" y2="20"/><line class="a" x1="0" y1="5" x2="100" y2="25"/><line class="a" x1="0" y1="10" x2="100" y2="30"/></svg>')
    repeat;
}

.hero-container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-title1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.hero-subtitle1 {
  font-size: 1.3rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* Company Story Section */
.company-story {
  padding: 80px 0;
  background-color: #fff;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.story-text {
  flex: 1;
}

.section-title4 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  position: relative;
}

.section-title4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #ff0000;
  border-radius: 2px;
}

.story-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.story-paragraph strong {
  color: #ff0000;
  font-weight: 600;
}

.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 350px;
  height: 350px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid #ff0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
}

.placeholder-icon {
  font-size: 4rem;
  color: #ff0000;
  margin-bottom: 20px;
}

.image-placeholder p {
  color: #333;
  font-size: 1.1rem;
  margin: 5px 0;
}

/* Evolution Section */
.evolution-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.evolution-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.evolution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.evolution-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.evolution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.15);
  border-color: #ff0000;
}

.evolution-icon {
  margin-bottom: 25px;
}

.evolution-icon i {
  font-size: 3rem;
  color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.evolution-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.evolution-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Capabilities Section */
.capabilities-section {
  padding: 80px 0;
  background-color: #fff;
}

.capabilities-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.capabilities-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.capabilities-text {
  flex: 1;
}

.capabilities-list {
  margin-top: 40px;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.capability-item:hover {
  background: rgba(255, 0, 0, 0.05);
  transform: translateX(10px);
}

.capability-icon {
  width: 50px;
  height: 50px;
  background: #ff0000;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.capability-icon i {
  font-size: 1.2rem;
}

.capability-details h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.capability-details p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.capabilities-visual {
  flex: 1;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.visual-item {
  background: linear-gradient(145deg, #ff0000, #e60000);
  color: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.visual-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.visual-item i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}
.visual-item img {
  width: 191px;
  height: 40px;
  font-size: 2.5rem;
  display: block;
  margin: 0 auto 15px auto; /* Center horizontally and add bottom margin */
  object-fit: contain;
}

.visual-item span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Specialization Section */
.specialization-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.specialization-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.specialization-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.specialization-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.specialization-item i {
  font-size: 3rem;
  color: #ff0000;
  margin-bottom: 20px;
}

.specialization-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.specialization-item p {
  color: #666;
  line-height: 1.6;
}

/* Mission Banner */
.mission-banner {
  background: linear-gradient(135deg, #ff0000, #e60000);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><style>.a{fill:none;stroke:%23ffffff;stroke-width:0.2;opacity:0.1;}</style></defs><circle class="a" cx="20" cy="10" r="8"/><circle class="a" cx="50" cy="10" r="8"/><circle class="a" cx="80" cy="10" r="8"/></svg>')
    repeat;
}

.mission-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.mission-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-text {
  font-size: 1.3rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .story-content,
  .capabilities-content {
    flex-direction: column;
    gap: 40px;
  }

  .evolution-grid,
  .specialization-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .mission-title {
    font-size: 2.5rem;
  }

  .company-story,
  .evolution-section,
  .capabilities-section,
  .specialization-section {
    padding: 60px 0;
  }

  .image-placeholder {
    width: 280px;
    height: 280px;
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .capability-item {
    flex-direction: column;
    text-align: center;
  }

  .capability-icon {
    margin: 0 auto 15px auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .mission-title {
    font-size: 2rem;
  }

  .evolution-grid,
  .specialization-grid {
    grid-template-columns: 1fr;
  }

  .evolution-card,
  .specialization-item {
    padding: 30px 20px;
  }

  .story-content {
    gap: 30px;
  }
}
/* CTA Banner Styles */
.cta-banner5 {
  width: 100%;
  background-color: #f8f9fa;
  padding: 64px 16px;
}

.cta-container5 {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-heading5 {
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta-text5 {
  color: #666;
  font-size: 1.125rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button5 {
  background-color: #ff0000;
  color: #ffffff;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.cta-button6 {
  background-color: #ffffff;
  color: #ff0000;
  border: #ff0000 solid 2px;
  font-weight: bold;
  padding: 15px 31px;
  border-radius: 6px;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button6:hover {
  background-color: rgba(255, 0, 0, 0.9);
  color: rgb(255, 255, 255);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-heading5 {
    font-size: 2rem;
  }

  .cta-text5 {
    font-size: 1rem;
  }
}
