* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --primary-color: #f0864d;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

main {
  background-color: #e0e0e0;
}

/* Enhanced Header - 3 Column Layout */
header {
  background: #fff;
  color: #111;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  max-width: unset;
  margin: 0 0;
  min-height: 60px;
}

.logo-section {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-section:hover .logo-image {
  transform: scale(1.05);
}

.logo-section h1 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #111;
  margin: 0;
  transition: all 0.3s ease;
}

.logo-section:hover h1 {
  color: #111;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* Hamburger Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: #f2f2f2;
}

.menu-toggle.active {
  background: #111;
  color: #fff;
}

.subtitle {
  font-size: 1.3rem;
  color: #1e3c72;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Navigation Section */
.nav-section {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

nav li {
  position: relative;
}

nav a {
  color: #111;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: block;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  background: #f2f2f2;
  color: #111;
  text-decoration: underline;
  transform: translateY(-2px);
}

/* Dropdown Menus */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 1001;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeInUp 0.3s ease;
}

.dropdown-content a {
  color: #f0864d;
  padding: 0.8rem 1.5rem;
  display: block;
  border-radius: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: #f0864d;
  transform: none;
}

.dropdown-content a.active {
  background: #f0864d;
  color: white;
}

/* Download Section */
.download-section {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.download-btn {
  background: #f0864d;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.9rem;
}

.download-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Main Content */
main.container {
  padding: 2rem 0;
  animation: fadeIn 1s ease-in;
}

main h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1b3a57;
  border-bottom: 3px solid #f0864d;
  padding-bottom: 0.8rem;
  animation: slideIn 1s ease-out;
  text-align: center;
}

main h3 {
  font-size: 1.8rem;
  margin: 1rem 0 1rem 0;
  color: #fff;
  border-left: 4px solid #f0864d;
  padding-left: 1rem;
}

main h4 {
  font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem 0;
  color: #ffffff;
}

.content p {
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.6s ease-in-out;
  font-size: 1.1rem;
}

.content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Enhanced Buttons */
.btn {
  background: linear-gradient(135deg, #f0864d 0%, #ffb98a 100%);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin: 15px 10px 15px 0;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(255, 111, 0, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #e65c00 0%, #ff6f00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 111, 0, 0.4);
}

/* Footer Styles */
.footer {
  background: #fff;
  color: #111;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.footer-section h4 {
  color: #111;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  object-fit: contain;
}

.footer-logo h3 {
  color: #111;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #444;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #111;
  text-decoration: underline;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #444;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #000;
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 250px;
}

.contact-item i {
  color: #f0864d;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #1e3c72;
}

.footer-bottom {
  border-top: 1px solid #eee;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #444;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #111;
  text-decoration: underline;
}

.client-logo-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.5s both;
  background: white;
  width: 100%;
  display: flex;
  justify-content: center;
}

.client-logo-section h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out 0.8s both;
}

.client-logo-section p {
  text-align: center;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.client-logo-section img {
  max-width: 100%;
  animation: fadeInUp 0.8s ease-out 1s both;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .contact-item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-item i {
    margin-top: 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-60px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation Keyframes */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Hero Section Animations */
.hero-section {
  position: relative;
  text-align: center;
  padding: 0;
  color: white;
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeInScale 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgb(38 38 38 / 80%) 0%,
      rgb(38 38 38 / 80%) 100% 100%);
  z-index: 2;
  animation: fadeInScale 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 2rem;
  max-width: 800px;
  width: 100%;
}

.hero-content h2 {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
  margin-bottom: 1rem;
  will-change: transform, opacity;
}

.hero-content h1 {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
  margin-bottom: 1rem;
  will-change: transform, opacity;
}

.hero-content p {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
  margin-bottom: 2rem;
  will-change: transform, opacity;
}

.hero-buttons {
  animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
  will-change: transform, opacity;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f0864d;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.2;
  will-change: transform;
}

.hero-section h1:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f0864d;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.3;
  will-change: transform;
}

.hero-section h2:hover {
  transform: scale(1.02);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  background: #f0864d;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  will-change: transform;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-buttons .btn:hover::before {
  left: 100%;
}

.hero-buttons .btn:hover {
  background: #e6c200;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* About Section Animations */
.about-section {
  padding: 3rem 0;
  background: #f8f9fa;
  margin-bottom: 3rem;
  border-radius: 10px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-text {
  animation: fadeInLeft 1s ease-out 0.8s both;
}

.about-text h3 {
  color: #1e3c72;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-size: 2rem;
  line-height: 1.3;
}

.about-text h3:hover {
  color: #f0864d;
  transform: translateX(10px);
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.about-text ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.about-text li {
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.5;
  color: #333;
}

.about-text li::before {
  content: "→";
  position: absolute;
  left: -20px;
  color: #f0864d;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-text li:hover {
  transform: translateX(10px);
  color: #1e3c72;
}

.about-text li:hover::before {
  opacity: 1;
  left: -25px;
}

.about-image {
  text-align: center;
  animation: fadeInRight 1s ease-out 1s both;
}

.about-img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section Animations */
.features-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.features-section h3 {
  color: #1e3c72;
  margin-bottom: 1.5rem;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out 0.8s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.feature-item:nth-child(1) {
  animation-delay: 1s;
}

.feature-item:nth-child(2) {
  animation-delay: 1.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 1.4s;
}

.feature-item:nth-child(4) {
  animation-delay: 1.6s;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 215, 0, 0.1),
      transparent);
  transition: left 0.5s;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.feature-item h4 {
  color: #1e3c72;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover h4 {
  color: #f0864d;
  transform: scale(1.05);
}

/* Services Section Animations */
.services-section {
  padding: 3rem 0;
  background: #f8f9fa;
  margin-bottom: 3rem;
  border-radius: 10px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.services-section h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out 0.8s both;
}

.services-section>p {
  text-align: center;
  margin-bottom: 2rem;
  font-style: italic;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.service-item:nth-child(1) {
  animation-delay: 1.2s;
}

.service-item:nth-child(2) {
  animation-delay: 1.4s;
}

.service-item:nth-child(3) {
  animation-delay: 1.6s;
}

.service-item:nth-child(4) {
  animation-delay: 1.8s;
}

.service-item:nth-child(5) {
  animation-delay: 2s;
}

.service-item:nth-child(6) {
  animation-delay: 2.2s;
}

.service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f0864d, #1e3c72);
  transition: width 0.3s ease;
}

.service-item:hover::after {
  width: 100%;
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-item:hover .service-image {
  transform: scale(1.05);
  filter: contrast(1.1);
}

.service-item h4 {
  color: #1e3c72;
  margin-bottom: 1rem;
  border-bottom: 2px solid #f0864d;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.service-item:hover h4 {
  color: #f0864d;
  transform: translateX(10px);
}

/* Call to Action Section Animations */
.cta-section {
  position: relative;
  text-align: center;
  padding: 0;
  color: white;
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInScale 1s ease-out 0.5s both;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeInScale 1.5s ease-out;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(30, 60, 114, 0.9) 0%,
      rgba(42, 82, 152, 0.9) 100%);
  z-index: 2;
  animation: fadeInScale 2s ease-out;
}

.cta-content {
  position: relative;
  z-index: 3;
  padding: 3rem 2rem;
  max-width: 800px;
  animation: fadeInUp 1s ease-out 1s both;
}

.cta-section h3 {
  color: #f0864d;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.cta-section h3:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta-section .btn {
  background: #f0864d;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-section .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.5s;
}

.cta-section .btn:hover::before {
  left: 100%;
}

.cta-section .btn:hover {
  background: #e6c200;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Track Record Section Animations */
.track-record-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.track-record-section h3 {
  color: #1e3c72;
  margin-bottom: 1rem;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out 0.8s both;
}

.track-record-section p {
  text-align: center;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.stat-item:nth-child(1) {
  animation-delay: 1.2s;
}

.stat-item:nth-child(2) {
  animation-delay: 1.4s;
}

.stat-item:nth-child(3) {
  animation-delay: 1.6s;
}

.stat-item:nth-child(4) {
  animation-delay: 1.8s;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg,
      transparent,
      rgba(255, 215, 0, 0.05),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.stat-item:hover::before {
  transform: translateX(100%);
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 0.2rem;
  animation: pulse 2s infinite;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #1e3c72;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-item:hover .counter {
  transform: scale(1.1);
  color: #f0864d;
}

.counter-symbol {
  font-size: 2rem;
  font-weight: bold;
  color: #f0864d;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

.stat-item h4 {
  color: #1e3c72;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.stat-item:hover h4 {
  color: #f0864d;
  transform: scale(1.05);
}

/* Testimonials Section Animations */
.testimonials-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
  border-radius: 10px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.testimonials-section h3 {
  color: #1e3c72;
  margin-bottom: 2rem;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out 0.8s both;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  animation: fadeInScale 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.testimonial-item:nth-child(1) {
  animation-delay: 1.2s;
}

.testimonial-item:nth-child(2) {
  animation-delay: 1.4s;
}

.testimonial-item:nth-child(3) {
  animation-delay: 1.6s;
}

.testimonial-item:nth-child(4) {
  animation-delay: 1.8s;
}

.testimonial-item:nth-child(5) {
  animation-delay: 2s;
}

.testimonial-item::after {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(255, 215, 0, 0.2);
  font-family: serif;
  transition: all 0.3s ease;
}

.testimonial-item:hover::after {
  color: rgba(255, 215, 0, 0.4);
  transform: scale(1.2);
}

.testimonial-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #f0864d;
  transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-image {
  transform: scale(1.1) rotate(5deg);
  border-color: #1e3c72;
}

.testimonial-item h4 {
  color: #1e3c72;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.testimonial-item:hover h4 {
  color: #f0864d;
}

.testimonial-item p:first-of-type {
  color: #666;
  font-style: italic;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.testimonial-item p:last-of-type {
  font-style: italic;
  border-left: 3px solid #f0864d;
  padding-left: 1rem;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-item:hover p:last-of-type {
  border-left-color: #1e3c72;
  transform: translateX(5px);
}

/* Quick Contact Section Animations */
.quick-contact-section {
  padding: 3rem 0;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.quick-contact-section h3 {
  color: #1e3c72;
  margin-bottom: 2rem;
  text-align: center;
  animation: slideInFromTop 0.8s ease-out 0.8s both;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-info-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInScale 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.contact-info-item:nth-child(1) {
  animation-delay: 1.2s;
}

.contact-info-item:nth-child(2) {
  animation-delay: 1.4s;
}

.contact-info-item:nth-child(3) {
  animation-delay: 1.6s;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f0864d, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info-item:hover::before {
  transform: scaleX(1);
}

.contact-info-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.contact-info-item h4 {
  color: #1e3c72;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover h4 {
  color: #f0864d;
  transform: scale(1.05);
}

.contact-info-item a {
  color: #1e3c72;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-info-item a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #f0864d;
  transition: width 0.3s ease;
}

.contact-info-item a:hover::after {
  width: 100%;
}

.contact-info-item a:hover {
  color: #f0864d;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  header .container {
    padding: 0 1.5rem;
    gap: 0.8rem;
  }

  .logo-image {
    height: 50px;
  }

  nav a {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .dropdown-content a {
    font-size: 0.85rem;
  }

  .download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero-section {
    min-height: 450px;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

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

  .hero-section h2 {
    font-size: 1.3rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .about-content {
    gap: 2rem;
    padding: 0 1.5rem;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .about-img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  header .container {
    gap: 0.5rem;
    padding: 0 1rem;
    min-height: 50px;
  }

  .logo-image {
    height: 40px;
  }

  .nav-section {
    justify-content: flex-end;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
    font-size: 1.3rem;
    padding: 0.4rem;
  }

  nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 60, 114, 0.98);
    z-index: 1001;
    padding: 5rem 2rem 2rem 2rem;
    overflow-y: auto;
    backdrop-filter: blur(10px);
  }

  nav.show {
    display: block;
    animation: slideInFromTop 0.3s ease;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
  }

  nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 0;
    text-align: left;
  }

  nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
  }

  .dropdown-content {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    display: none;
  }

  .dropdown.show .dropdown-content {
    display: block;
  }

  .dropdown-content a {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .download-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }

  .hero-section {
    min-height: 400px;
    margin-bottom: 2rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

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

  .hero-section h2 {
    font-size: 1.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .about-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .about-text h3 {
    font-size: 1.6rem;
    text-align: center;
  }

  .about-img {
    height: 250px;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }

  header .container {
    gap: 0.3rem;
    padding: 0 0.8rem;
    min-height: 45px;
  }

  .logo-image {
    height: 35px;
  }

  .menu-toggle {
    font-size: 1.2rem;
    padding: 0.3rem;
  }

  nav {
    padding: 4rem 1rem 1rem 1rem;
  }

  nav a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .dropdown-content a {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .download-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }

  .hero-section {
    min-height: 350px;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section h2 {
    font-size: 1rem;
  }

  .hero-section p {
    font-size: 0.9rem;
  }

  .hero-buttons .btn {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }

  .about-section {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .about-content {
    padding: 0 0.8rem;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-text li {
    font-size: 0.9rem;
  }

  .about-img {
    height: 200px;
    max-width: 350px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }

  header .container {
    gap: 0.2rem;
    padding: 0 0.5rem;
    min-height: 40px;
  }

  .logo-image {
    height: 30px;
  }

  .menu-toggle {
    font-size: 1.1rem;
    padding: 0.25rem;
  }

  .download-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
  }

  .hero-section {
    min-height: 300px;
  }

  .hero-content {
    padding: 1rem 0.8rem;
  }

  .hero-section h1 {
    font-size: 1.3rem;
  }

  .hero-section h2 {
    font-size: 0.9rem;
  }

  .hero-section p {
    font-size: 0.85rem;
  }

  .hero-buttons .btn {
    padding: 0.6rem 0.7rem;
    font-size: 0.8rem;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-text p {
    font-size: 0.85rem;
  }

  .about-text li {
    font-size: 0.85rem;
  }

  .about-img {
    height: 180px;
    max-width: 300px;
  }
}

/* Print Styles */
@media print {

  header,
  footer,
  .btn {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    width: 100%;
    max-width: none;
  }
}

/* Container for content sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding-block: "15px";
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 1.33rem);
  min-width: calc(33.333% - 1.33rem);
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 calc(100% - 1rem);
    min-width: calc(100% - 1rem);
  }

  .carousel-track {
    gap: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 1rem);
    min-width: calc(50% - 1rem);
  }
}

/* Update existing service and testimonial styles for carousel */
.service-item,
.testimonial-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item:hover,
.testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image,
.testimonial-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}

/* Auto-rotation animation */
@keyframes carouselAutoRotate {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.carousel-track.auto-rotate {
  animation: carouselAutoRotate 15s linear infinite;
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track.auto-rotate {
  animation-play-state: paused;
}

/* About Page Specific Styles */

/* Our Story Section */
.our-story-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.our-story-section::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 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e3e3e3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.story-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.story-header h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.story-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f0864d, #ffed4e);
  border-radius: 2px;
}

.story-subtitle {
  font-size: 1.3rem;
  color: #1e3c72;
  font-weight: 500;
  margin-top: 1rem;
}

.story-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 4rem;
  z-index: 2;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1e3c72, #f0864d, #1e3c72);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) {
  flex-direction: row;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.timeline-icon i {
  font-size: 2rem;
  color: black;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  flex: 1;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: white;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

/* About Company Section */
.about-company-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
}

.about-content h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #f0864d, #ffed4e);
  border-radius: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #555;
  text-align: justify;
}

.about-content p:first-of-type {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1e3c72;
  border-left: 4px solid #f0864d;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Expertise Section */
.expertise-section {
  padding: 4rem 0;
}

.expertise-section h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.expertise-section>.container>p {
  text-align: center;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

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

.expertise-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.expertise-item h4 {
  color: black;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.expertise-item p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-content h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.team-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Facilities Section */
.facilities-section {
  padding: 4rem 0;
}

.facilities-section h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.facilities-section>.container>p {
  text-align: center;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.facility-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.facility-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.facility-item:hover::before {
  transform: scaleX(1);
}

.facility-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.facility-icon i {
  font-size: 2rem;
}

.facility-item h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.facility-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.facilities-capabilities {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.facilities-capabilities h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.capability-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 20px;
}

.capability-item span {
  color: #555;
  font-weight: 500;
}

/* Success Section */
.success-section {
  padding: 4rem 0;
  background: linear-gradient(135deg,
      #c2c2c2 0%,
      #767676 50%,
      #444444 100% 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.success-section::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.success-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.success-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-content>p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.success-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.success-point {
  background: rgba(255, 255, 255, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.success-point::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.success-point:hover::before {
  left: 100%;
}

.success-point:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.success-point:hover .success-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.success-icon i {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
}

.success-point h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.success-point p {
  line-height: 1.6;
  opacity: 0.95;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Certifications Section */
.certifications-section {
  padding: 4rem 0;
  background: white;
}

.certifications-section h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.certifications-section>.container>p {
  text-align: center;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.certification-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.certification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cert-icon i {
  font-size: 2rem;
}

.certification-item h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.certification-item p {
  color: #666;
  line-height: 1.6;
}

.cert-actions {
  text-align: center;
}

/* Careers Section */
.careers-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.careers-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.careers-content h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.careers-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.careers-benefits {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.careers-benefits h4 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.careers-benefits ul {
  list-style: none;
  padding: 0;
}

.careers-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #555;
  line-height: 1.6;
}

.careers-benefits li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  min-width: 20px;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

  .about-content h3 {
    font-size: 2.2rem;
  }

  .about-img {
    height: 400px;
  }

  .story-header h2 {
    font-size: 2.5rem;
  }

  .timeline-content {
    margin: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .story-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    margin-left: 30px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .timeline-icon i {
    font-size: 1.5rem;
  }

  .timeline-content {
    margin: 0;
    width: 100%;
  }

  .timeline-content::before {
    display: none;
  }

  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {

  .about-grid,
  .team-grid,
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-header h2 {
    font-size: 2rem;
  }

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

  .story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .about-content h3,
  .team-content h3,
  .careers-content h3,
  .expertise-section h3,
  .facilities-section h3,
  .success-content h3,
  .certifications-section h3 {
    font-size: 2rem;
  }

  .team-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .success-points {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .success-point {
    padding: 2rem 1.5rem;
  }

  .success-icon {
    width: 60px;
    height: 60px;
  }

  .success-icon i {
    font-size: 1.5rem;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .about-img,
  .team-img,
  .careers-img {
    height: 300px;
  }
}

/* Certifications Page Specific Styles */

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f0864d, #ffed4e);
  border-radius: 2px;
}

.section-header p {}

/* Certifications Section */
.certifications-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.certification-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.certification-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.certification-item:hover::before {
  transform: scaleX(1);
}

.certification-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.cert-icon i {
  font-size: 2rem;
  color: black;
}

.certification-item h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cert-number {
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  color: #1e3c72;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.certification-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Quality Standards Section */
.quality-standards-section {
  padding: 5rem 0;
  background: white;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-item {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quality-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.quality-item:hover::before {
  transform: scaleX(1);
}

.quality-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quality-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.quality-icon i {
  font-size: 1.8rem;
  color: white;
}

.quality-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.quality-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quality-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-item li {
  color: #555;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.quality-item li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f0864d;
  font-weight: bold;
}

/* Manufacturing Section */
.manufacturing-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.manufacturing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.manufacturing-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.manufacturing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.manufacturing-item:hover::before {
  transform: scaleX(1);
}

.manufacturing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.manufacturing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.manufacturing-icon i {
  font-size: 2rem;
  color: black;
}

.manufacturing-item h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.manufacturing-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Export Section */
.export-section {
  padding: 5rem 0;
  background: white;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.export-item {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.export-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.export-item:hover::before {
  transform: scaleX(1);
}

.export-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.export-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.export-icon i {
  font-size: 1.8rem;
  color: white;
}

.export-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.export-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-item:hover::before {
  transform: scaleX(1);
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.benefit-icon i {
  font-size: 2rem;
  color: white;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.benefit-item:hover .benefit-icon i {
  transform: scale(1.2);
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Contact Certifications Section */
.contact-certifications-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  text-align: center;
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  color: #1e3c72;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.contact-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Responsive Design for Certifications Page */
@media (max-width: 1024px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .certifications-grid,
  .quality-grid,
  .manufacturing-grid,
  .export-grid,
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .certifications-grid,
  .quality-grid,
  .manufacturing-grid,
  .export-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certification-item,
  .quality-item,
  .manufacturing-item,
  .export-item,
  .benefit-item {
    padding: 2rem 1.5rem;
  }

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

  .contact-buttons .btn {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

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

  .certification-item,
  .quality-item,
  .manufacturing-item,
  .export-item,
  .benefit-item {
    padding: 1.5rem 1rem;
  }

  .cert-icon,
  .quality-icon,
  .manufacturing-icon,
  .export-icon,
  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .cert-icon i,
  .manufacturing-icon i,
  .benefit-icon i {
    font-size: 1.5rem;
  }

  .quality-icon i,
  .export-icon i {
    font-size: 1.3rem;
  }
}

/* Careers Page Styles */
.culture-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.culture-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.culture-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 215, 0, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.culture-item:hover::before {
  left: 100%;
}

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

.culture-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.culture-icon i {
  font-size: 2rem;
  color: #000;
  transition: all 0.3s ease;
}

.culture-item:hover .culture-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.culture-item:hover .culture-icon i {
  transform: scale(1.2);
}

.culture-item h3 {
  color: #1e3c72;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.culture-item p {
  color: #666;
  line-height: 1.6;
}

/* Opportunities Section */
.opportunities-section {
  padding: 5rem 0;
  background: white;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.opportunity-category {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.opportunity-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-header {
  background: linear-gradient(135deg, #f0864d, #ffb98a);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.category-header i {
  font-size: 2rem;
  color: #f0864d;
}

.category-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #1e3c72;
}

.job-list {
  padding: 1.5rem;
}

.job-item {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid #1e3c72;
  transition: all 0.3s ease;
}

.job-item:last-child {
  margin-bottom: 0;
}

.job-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left-color: #f0864d;
}

.job-item h4 {
  color: #1e3c72;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
}

.benefits-section .section-header h2 {
  color: white;
}

.benefits-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.1),
      rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
  opacity: 1;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffb98a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}

.benefit-icon i {
  font-size: 2rem;
  color: black;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.benefit-item:hover .benefit-icon i {
  transform: scale(1.2);
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: white;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Skills Section */
.skills-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skills-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.skills-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.skills-category:hover::before {
  transform: scaleX(1);
}

.skills-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.skills-category h3 {
  color: #1e3c72;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skills-category h3 i {
  color: #f0864d;
}

.skills-category ul {
  list-style: none;
  padding: 0;
}

.skills-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.skills-category li:last-child {
  border-bottom: none;
}

.skills-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f0864d;
  font-weight: bold;
  font-size: 1.1rem;
}

.skills-category li:hover {
  color: #1e3c72;
  transform: translateX(5px);
}

/* Application Process Section */
.application-section {
  padding: 5rem 0;
  background: white;
}

.process-timeline {
  margin-top: 3rem;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1e3c72, #f0864d);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.4);
}

.step-content {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin: 0 1rem;
  flex: 1;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 20%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  transform: translateY(-50%);
}

.process-step:nth-child(odd) .step-content::before {
  left: -10px;
  border-left-color: #f8f9fa;
}

.process-step:nth-child(even) .step-content::before {
  right: -10px;
  border-right-color: #f8f9fa;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: white;
}

.step-content h3 {
  color: #1e3c72;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section for Careers */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h2 {
  color: #1e3c72;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-content p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #f0864d, #ffb98a);
  color: #fff;
  border: 2px solid #f0864d;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2a5298, #1e3c72);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #1e3c72;
  border: 2px solid #1e3c72;
}

.btn-secondary:hover {
  background: #1e3c72;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

/* Responsive Design for Careers Page */
@media (max-width: 1024px) {

  .culture-grid,
  .opportunities-grid,
  .benefits-grid,
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step,
  .process-step:nth-child(even) {
    flex-direction: row;
  }

  .step-content {
    margin-left: 1rem;
    margin-right: 0;
    max-width: none;
  }

  .process-step:nth-child(odd) .step-content::before,
  .process-step:nth-child(even) .step-content::before {
    left: -20px;
    border-right-color: #f8f9fa;
    border-left-color: transparent;
  }
}

@media (max-width: 768px) {

  .culture-section,
  .opportunities-section,
  .benefits-section,
  .skills-section,
  .application-section,
  .contact-section {
    padding: 3rem 0;
  }

  .culture-grid,
  .opportunities-grid,
  .benefits-grid,
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .culture-item,
  .benefit-item,
  .skills-category {
    padding: 1.5rem;
  }

  .opportunity-category {
    margin-bottom: 1.5rem;
  }

  .job-item {
    padding: 0.8rem;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step-content {
    margin-left: 0.5rem;
    padding: 1.5rem;
  }

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

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

  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {

  .culture-icon,
  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .culture-icon i,
  .benefit-icon i {
    font-size: 1.5rem;
  }

  .category-header {
    padding: 1rem;
  }

  .category-header i {
    font-size: 1.5rem;
  }

  .category-header h3 {
    font-size: 1.1rem;
  }

  .skills-category h3 {
    font-size: 1.1rem;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

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

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

/* Services Page Styles */
.services-overview-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.overview-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.overview-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 215, 0, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.overview-item:hover::before {
  left: 100%;
}

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

.overview-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.overview-icon i {
  font-size: 2rem;
  color: #000;
  transition: all 0.3s ease;
}

.overview-item:hover .overview-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(30, 60, 114, 0.3);
}

.overview-item:hover .overview-icon i {
  transform: scale(1.2);
}

.overview-item h3 {
  color: #1e3c72;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.overview-item p {
  color: #666;
  line-height: 1.6;
}

/* Detailed Services Section */
.detailed-services-section {
  padding: 5rem 0;
  background: white;
}

.service-category-card {
  background: #f8f9fa;
  border-radius: 20px;
  margin-bottom: 3rem;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-header {
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  color: white;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgb(255 255 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 2rem;
  color: #f0864d;
}

.service-title h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-title p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

.service-items {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left-color: #f0864d;
}

.item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-item:hover .item-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.item-icon i {
  font-size: 1.2rem;
  color: #000;
}

.item-content h4 {
  color: #1e3c72;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.item-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 5rem 0;
}

.why-choose-section .section-header p {
  color: #1e3c72
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(255, 255, 255);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.1),
      rgba(255, 215, 0, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: rgb(240 134 77);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  background: rgba(255, 215, 0, 0.3);
}

.feature-item:hover .feature-icon i {
  transform: scale(1.2);
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
}

.feature-item p {
  line-height: 1.6;
  color: #f0864d;
}

/* Call to Action Section for Services */
.cta-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgb(38 38 38 / 80%) 0%,
      rgb(38 38 38 / 80%) 100% 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {

  .overview-grid,
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .service-items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .service-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-title h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {

  .services-overview-section,
  .detailed-services-section,
  .why-choose-section,
  .cta-section {
    padding: 3rem 0;
  }

  .overview-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .overview-item,
  .feature-item {
    padding: 1.5rem;
  }

  .service-header {
    padding: 1.5rem;
  }

  .service-items {
    padding: 1.5rem;
  }

  .service-item {
    padding: 1rem;
  }

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

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

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

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

@media (max-width: 480px) {

  .overview-icon,
  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .overview-icon i,
  .feature-icon i {
    font-size: 1.5rem;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon i {
    font-size: 1.2rem;
  }

  .service-title h3 {
    font-size: 1.3rem;
  }

  .item-icon {
    width: 40px;
    height: 40px;
  }

  .item-icon i {
    font-size: 1rem;
  }

  .item-content h4 {
    font-size: 1rem;
  }

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

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

/* Quote Page Styles */
.why-quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.5s ease;
}

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e) border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.benefit-item h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Quote Form Section */
.quote-form-section {
  padding: 5rem 0;
  background: white;
}

.form-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.quote-form {
  padding: 3rem;
}

.form-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.form-section .section-header {
  margin-bottom: 2rem;
  text-align: left;
}

.form-section .section-header h3 {
  color: #2c5aa0;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section .section-header h3 i {
  color: #f0864d;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.85rem;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.form-submit .btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Quote Process Section */
.quote-process-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #4a90e2 100%);
  color: white;
}

.quote-process-section .section-header h2 {
  color: white;
}

.quote-process-section .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.process-timeline {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.6s ease forwards;
}

.process-step:nth-child(2) {
  animation-delay: 0.1s;
}

.process-step:nth-child(3) {
  animation-delay: 0.2s;
}

.process-step:nth-child(4) {
  animation-delay: 0.3s;
}

.process-step:nth-child(5) {
  animation-delay: 0.4s;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #f0864d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(255, 111, 0, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  background: #ff8f00;
}

.step-content {
  flex: 1;
  padding-top: 0.5rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.step-content p {
  line-height: 1.6;
  margin: 0;
}

/* Contact Quote Section */
.contact-quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.contact-content>p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2c5aa0, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.contact-info-item h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-info-item p {
  color: #666;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Responsive Design for Quote Page */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .quote-form {
    padding: 2rem 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .contact-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {

  .why-quote-section,
  .quote-form-section,
  .quote-process-section,
  .contact-quote-section {
    padding: 3rem 0;
  }

  .benefit-item {
    padding: 1rem;
  }

  .quote-form {
    padding: 1.5rem 1rem;
  }

  .form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .process-step {
    margin-bottom: 2rem;
  }

  .contact-info-item {
    padding: 1.5rem;
  }
}

/* Animation for Process Steps */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Products Page Styles */
.products-overview-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(44, 90, 160, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  font-weight: 600;
}

/* Products Categories Section */
.products-categories-section {
  padding: 5rem 0;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-category-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.product-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.product-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2c5aa0, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.product-category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.product-category-card h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.product-category-card>p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.product-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
  color: #555;
  font-size: 0.95rem;
}

.product-list li i {
  color: #28a745;
  margin-right: 0.8rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.category-footer {
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.category-footer span {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

.material-note {
  color: #2c5aa0 !important;
}

.precision-note {
  color: #28a745 !important;
}

.strength-note {
  color: #dc3545 !important;
}

.heavy-note {
  color: #6f42c1 !important;
}

.assembly-note {
  color: #fd7e14 !important;
}

/* Manufacturing Capabilities Section */
.manufacturing-capabilities-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #333;
}

.manufacturing-capabilities-section .section-header p {
  color: #666;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capability-item {
  background: white;
  padding: 0.5rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.capability-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(44, 90, 160, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.capability-item:hover::before {
  left: 100%;
}

.capability-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.capability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2c5aa0, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.capability-item:hover .capability-icon {
  background: linear-gradient(135deg, #f0864d, #ff6f00);
  transform: scale(1.1) rotate(5deg);
}

.capability-content {
  flex: 1;
  text-align: left;
}

.capability-item h3 {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.capability-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
  .overview-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-category-card {
    padding: 2rem;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .capability-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {

  .products-overview-section,
  .products-categories-section,
  .manufacturing-capabilities-section {
    padding: 3rem 0;
  }

  .overview-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .product-category-card {
    padding: 1.5rem;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .capability-item {
    padding: 1rem;
  }
}

/* Facilities Page Styles */
.facilities-overview-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.facilities-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Locations Section */
.locations-section {
  padding: 5rem 0;
  background: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(44, 90, 160, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.location-card:hover::before {
  left: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-card.featured {
  border: 2px solid #f0864d;
  background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2c5aa0, #4a90e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.location-card:hover .location-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.location-card.featured .location-icon {
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.location-content h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.location-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.featured-badge {
  background: #f0864d;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

/* Machinery Section */
.machinery-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.machinery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.machine-category-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.machine-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #f0864d);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.machine-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.machine-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.machine-category-card:hover .machine-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.machine-content h3 {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.machine-content>p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.machine-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.machine-specs li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}

.machine-specs li i {
  color: #28a745;
  margin-right: 0.5rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Quality Section */
.quality-section {
  padding: 5rem 0;
  background: white;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.quality-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.quality-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(44, 90, 160, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.quality-item:hover::before {
  left: 100%;
}

.quality-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quality-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
}

.quality-item:hover .quality-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #f0864d, #ff6f00);
}

.quality-item h3 {
  color: #2c5aa0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.quality-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Responsive Design for Facilities Page */
@media (max-width: 768px) {
  .facilities-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-card {
    padding: 1.5rem;
  }

  .machinery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .machine-category-card {
    padding: 1.5rem;
  }

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .quality-item {
    padding: 1.5rem;
  }
}

/* Industries Page Styles */
.industries-overview-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.industries-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: 500;
}

.industries-section {
  padding: 4rem 0;
  background: white;
}

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

.industry-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.industry-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.industry-icon i {
  font-size: 2rem;
  color: white;
}

.industry-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.industry-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.industry-services li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #495057;
  font-size: 0.95rem;
}

.industry-services li i {
  color: #28a745;
  margin-right: 0.75rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.capabilities-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.capability-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.capability-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.capability-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.capability-item:hover .capability-icon {
  transform: scale(1.1);
}

.capability-icon i {
  font-size: 1.5rem;
  color: black;
}

.capability-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.capability-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Industries Page */
@media (max-width: 768px) {
  .industries-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industry-card {
    padding: 1.5rem;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .capability-item {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .industries-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .industry-icon i {
    font-size: 1.5rem;
  }

  .capability-icon {
    width: 50px;
    height: 50px;
  }

  .capability-icon i {
    font-size: 1.2rem;
  }
}

/* Clients Page Styles */
.client-overview-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.client-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-sectors-section {
  padding: 4rem 0;
  background: white;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sector-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.sector-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.sector-icon i {
  font-size: 2rem;
  color: black;
}

.sector-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.sector-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.sector-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  color: #495057;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
}

.highlight-item i {
  color: #28a745;
  margin-right: 0.5rem;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.highlight-item:hover i {
  color: white;
}

.success-stories-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.story-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.story-card:hover .story-icon {
  transform: scale(1.1);
}

.story-icon i {
  font-size: 1.5rem;
  color: black;
}

.story-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.story-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Clients Page */
@media (max-width: 768px) {
  .client-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sector-card {
    padding: 1.5rem;
  }

  .sector-highlights {
    gap: 0.5rem;
  }

  .highlight-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-card {
    padding: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .client-stats {
    grid-template-columns: 1fr;
  }

  .sector-icon {
    width: 60px;
    height: 60px;
  }

  .sector-icon i {
    font-size: 1.5rem;
  }

  .story-icon {
    width: 50px;
    height: 50px;
  }

  .story-icon i {
    font-size: 1.2rem;
  }

  .sector-highlights {
    flex-direction: column;
  }

  .highlight-item {
    width: 100%;
    justify-content: center;
  }
}

/* Contact Page Styles */
.contact-info-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.contact-details p {
  color: #6c757d;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-details a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0056b3;
}

.locations-section {
  padding: 4rem 0;
  background: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.location-card.featured {
  border: 2px solid #007bff;
  transform: scale(1.02);
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.location-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.location-icon i {
  font-size: 1.5rem;
  color: white;
}

.location-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.location-content p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

.facility-details {
  margin-top: 3rem;
  text-align: center;
}

.facility-details h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: 600;
}

.facility-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.facility-stat {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.facility-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.facility-stat .stat-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.business-info-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.business-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.business-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.business-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.business-card:hover .business-icon {
  transform: scale(1.1);
}

.business-icon i {
  font-size: 2rem;
  color: black;
}

.business-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.business-content p {
  color: #6c757d;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

.contact-form-section {
  padding: 4rem 0;
  background: white;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-header p {
  color: #6c757d;
  font-size: 1.1rem;
}

.contact-form {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
}

.form-submit .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-question i {
  color: #007bff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: #6c757d;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-actions {
  text-align: center;
  margin-top: 3rem;
}

.faq-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-card {
    padding: 1.5rem;
  }

  .business-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-container {
    padding: 2rem;
    margin: 0 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 1.2rem;
  }

  .location-icon {
    width: 50px;
    height: 50px;
  }

  .location-icon i {
    font-size: 1.2rem;
  }

  .business-icon {
    width: 60px;
    height: 60px;
  }

  .business-icon i {
    font-size: 1.5rem;
  }

  .form-container {
    padding: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .facility-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .facility-stat {
    padding: 1.5rem;
  }

  .facility-stat .stat-number {
    font-size: 2rem;
  }
}

/* FAQ Page Styles */
.faq-search-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.search-box {
  position: relative;
  background: white;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.search-box i {
  color: #6c757d;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  background: transparent;
}

.search-box input::placeholder {
  color: #6c757d;
}

#clearSearch {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: none;
}

#clearSearch:hover {
  background: #f8f9fa;
  color: #333;
}

#clearSearch.show {
  display: block;
}

.search-stats {
  text-align: center;
  margin-top: 1rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.faq-categories-section {
  padding: 4rem 0;
  background: white;
}

.faq-category {
  margin-bottom: 4rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f0864d, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.category-content p {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.faq-item.hidden {
  display: none;
}

.faq-item.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-question i {
  color: #007bff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 2rem 2rem;
  color: #6c757d;
  line-height: 1.6;
  display: none;
  animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.contact-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-section::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 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.contact-cta-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.contact-cta-section .container {
  position: relative;
  z-index: 2;
  justify-self: center;
}

.contact-cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, #ffffff, #e3f2fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out;
}

.contact-cta-section p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.cta-buttons .btn:hover::before {
  left: 100%;
}

.cta-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
  .search-box {
    padding: 0 1rem;
  }

  .search-box input {
    padding: 1.2rem 0;
    font-size: 1rem;
  }

  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }

  .category-icon {
    width: 60px;
    height: 60px;
  }

  .category-icon i {
    font-size: 1.5rem;
  }

  .category-content h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.5rem;
  }

  .contact-cta-section {
    padding: 4rem 0;
  }

  .contact-cta-section h2 {
    font-size: 2.2rem;
  }

  .contact-cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 1.1rem 2rem;
  }
}

@media (max-width: 480px) {
  .search-box input {
    padding: 1rem 0;
    font-size: 0.9rem;
  }

  .category-icon {
    width: 50px;
    height: 50px;
  }

  .category-icon i {
    font-size: 1.2rem;
  }

  .category-content h2 {
    font-size: 1.3rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .contact-cta-section {
    padding: 3rem 0;
  }

  .contact-cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .contact-cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-buttons .btn {
    padding: 1rem 1.8rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .facilities-overview-section,
  .locations-section,
  .machinery-section,
  .quality-section {
    padding: 3rem 0;
  }

  .facilities-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location-card {
    padding: 1rem;
  }

  .machine-category-card {
    padding: 1rem;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quality-item {
    padding: 1rem;
  }
}



.carousel-slide a {
  text-decoration: none;
  color: black;
}

/* Gallery Page Styles */
.gallery-overview-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-stats .stat-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-stats .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 134, 77, 0.1), transparent);
  transition: left 0.5s ease;
}

.gallery-stats .stat-item:hover::before {
  left: 100%;
}

.gallery-stats .stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-stats .stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.gallery-stats .stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Gallery Sections */
.facilities-gallery-section,
.machinery-gallery-section,
.processes-gallery-section,
.products-gallery-section,
.quality-gallery-section,
.team-gallery-section,
.projects-gallery-section {
  padding: 4rem 0;
}

.facilities-gallery-section {
  background: white;
}

.machinery-gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.processes-gallery-section {
  background: white;
}

.products-gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.quality-gallery-section {
  background: white;
}

.team-gallery-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects-gallery-section {
  background: white;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 1.5rem;
  background: white;
}

.gallery-caption h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.gallery-item:hover .gallery-caption h4 {
  color: var(--primary-color);
}

.gallery-caption p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Contact Gallery Section */
.contact-gallery-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #222 0%, #333 100%);
  color: white;
}

.contact-gallery-section .contact-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-gallery-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.contact-gallery-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #ccc;
}

.contact-gallery-section .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-gallery-section .contact-info-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-gallery-section .contact-info-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.contact-gallery-section .contact-info-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.contact-gallery-section .contact-info-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.contact-gallery-section .contact-info-item a,
.contact-gallery-section .contact-info-item p {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-gallery-section .contact-info-item a:hover {
  color: var(--primary-color);
}

.contact-gallery-section .contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-gallery-section .btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-gallery-section .btn-primary {
  background: var(--primary-color);
  color: white;
}

.contact-gallery-section .btn-primary:hover {
  background: #e0753a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(240, 134, 77, 0.3);
}

.contact-gallery-section .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.contact-gallery-section .btn-secondary:hover {
  background: white;
  color: #222;
  transform: translateY(-3px);
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .gallery-stats {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .contact-gallery-section .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {

  .gallery-overview-section,
  .facilities-gallery-section,
  .machinery-gallery-section,
  .processes-gallery-section,
  .products-gallery-section,
  .quality-gallery-section,
  .team-gallery-section,
  .projects-gallery-section {
    padding: 3rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }

  .gallery-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-stats .stat-number {
    font-size: 2.5rem;
  }

  .gallery-stats .stat-label {
    font-size: 1rem;
  }

  .contact-gallery-section h2 {
    font-size: 2rem;
  }

  .contact-gallery-section p {
    font-size: 1.1rem;
  }

  .contact-gallery-section .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-gallery-section .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-gallery-section .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-stats .stat-number {
    font-size: 2rem;
  }

  .gallery-image {
    height: 200px;
  }

  .gallery-caption {
    padding: 1rem;
  }

  .gallery-caption h4 {
    font-size: 1.1rem;
  }

  .contact-gallery-section h2 {
    font-size: 1.8rem;
  }

  .contact-gallery-section p {
    font-size: 1rem;
  }

  .contact-gallery-section .contact-info-item {
    padding: 1.5rem;
  }

  .contact-gallery-section .contact-info-item i {
    font-size: 1.5rem;
  }

  .contact-gallery-section .contact-info-item h4 {
    font-size: 1.1rem;
  }
}

.scattered-client-logos {
  background: linear-gradient(to bottom, #f1f1f1, #e0e0e0);
  text-align: center;
}

.scattered-client-logos .container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.scattered-client-logos h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.scattered-client-logos p {
  margin-bottom: 40px;
}

.floor {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px dashed #ccc;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
}

.client-logo {
  position: absolute;
  width: 90px;
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.1) rotate(0deg) !important;
  opacity: 1;
  z-index: 2;
}

.gallery-image {
  transition: opacity 0.4s ease-in-out;
}


.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
}

.developer-credit a {
  text-decoration: none;
}

.developer-credit a:hover {
  text-decoration: underline;
}

#services .service-header .service-icon img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
}

.form-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: bold;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

.form-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;
  font-weight: bold;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-category-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-category-card.expanded {
  flex: 1 1 100%;
  max-width: 100%;
}

.card-main {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.card-content {
  flex: 1 1 33%;
}

.category-images {
  flex: 1 1 67%;
  display: none;
}

.product-category-card.expanded .category-images {
  display: block;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  /* Responsive grid */
  gap: 10px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  /* Use 75% for 4:3 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
  /* Optional */
  background: #f0f0f0;
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image fills the box uniformly */
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  z-index: 2;
}

.product-category-card.expanded .close-btn {
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .product-category-card {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-category-card {
    flex: 1 1 100%;
  }

  .card-main {
    flex-direction: column;
  }

  .card-content,
  .category-images {
    flex: 1 1 100%;
  }

  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}