/* ==== TEXT SELECTION COLOR ==== */
::selection {
    background-color: #ff8c00; /* نارنجی */
    color: white;
}

::-moz-selection {
    background-color: #ff8c00; /* نارنجی برای فایرفاکس */
    color: white;
}

/* ==== About Section ==== */
.about-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 202, 40, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Full Content Layout */
.about-full-content {
  width: 100%;
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #267099;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}



.about-header .about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #37474f;
  max-width: 800px;
  margin: 0 auto 20px;
}

.about-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -25px 50px;
}

.about-column {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 50px);
  flex: 1 1 calc(50% - 50px);
  margin: 0 25px 50px;
}

.about-column {
  display: flex;
  flex-direction: column;
}

.about-action {
  text-align: center;
  margin-top: 30px;
}

/* Original About Content (for comparison) */
.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -30px;
}

.about-content > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 60px);
  flex: 1 1 calc(50% - 60px);
  margin: 0 30px;
}

.about-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #267099;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  transform: none;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #ffca28, #ffc107);
  border-radius: 2px;
}

.about-description {
  font-size: 18px;
  line-height: 1.8;
  color: #37474f;
  margin-bottom: 40px;
}

.about-points {
  margin-bottom: 40px;
}

.point-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: #37474f;
  transition: transform 0.2s ease;
}

.point-item:hover {
  transform: translateX(8px);
}

.point-item .material-icons {
  color: #ffca28;
  margin-left: 16px;
  font-size: 20px;
  flex-shrink: 0;
}

.about-action {
  text-align: left;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #0d47a1;
  padding: 14px 32px;
  border: 2px solid #0d47a1;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #0d47a1;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.2);
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(13, 71, 161, 0.2);
  transition: all 0.3s ease;
  padding: 15px;
  /* Fallback for older browsers */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


.about-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(13, 71, 161, 0.3);
}

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 20px 60px rgba(13, 71, 161, 0.2);
  transition: all 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(13, 71, 161, 0.3);
}

.image-placeholder .material-icons {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.image-placeholder p {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .point-item {
    font-size: 15px;
  }

  .image-placeholder {
    height: 350px;
  }


}

@media (max-width: 767px) {
  .about-section {
    padding: 40px 0;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-description {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .about-points {
    margin-bottom: 30px;
  }

  .point-item {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .point-item .material-icons {
    font-size: 18px;
    margin-left: 12px;
  }

  .about-action {
    text-align: center;
  }

  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }

  .image-placeholder {
    height: 300px;
  }


  .image-placeholder .material-icons {
    font-size: 60px;
  }

  .image-placeholder p {
    font-size: 16px;
  }
}

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

  .about-text h2 {
    font-size: 24px;
  }

  .about-description {
    font-size: 14px;
  }

  .point-item {
    font-size: 13px;
  }

  .btn-secondary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .image-placeholder {
    height: 250px;
  }


  .image-placeholder .material-icons {
    font-size: 50px;
  }

  .image-placeholder p {
    font-size: 14px;
  }

  .about-text h2::after {
    left: 0;
    width: 50%;
  }
}

/* Section Titles */
.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #267099;
  margin: 40px 0 20px;
  position: relative;
  display: inline-block;
}



/* Equipment List */
.equipment-list {
  margin-bottom: 30px;
}

.equipment-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(13, 71, 161, 0.03);
  border-radius: 8px;
  border-right: 3px solid #267099;
}

.equipment-item .material-icons {
  color: #267099;
  margin-left: 16px;
  font-size: 24px;
  flex-shrink: 0;
}

.equipment-item div {
  flex: 1;
}

.equipment-item strong {
  color: #267099;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.equipment-item div>span {
  color: #546e7a;
  font-size: 14px;
  line-height: 1.6;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.industry-item {
  display: flex;
  align-items: center;
  padding: 16px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.08);
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.12);
}

.industry-item .material-icons {
  color: #ffca28;
  margin-left: 12px;
  font-size: 20px;
  flex-shrink: 0;
  max-width: 40px;
}

.industry-item span {
  color: #37474f;
  font-size: 14px;
  font-weight: 500;
}

/* Warranty Points */
.warranty-points {
  margin-bottom: 40px;
}

.warranty-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 71, 161, 0.1);
}

.warranty-item:last-child {
  border-bottom: none;
}

.warranty-item .material-icons {
  color: #4caf50;
  margin-left: 16px;
  font-size: 20px;
  flex-shrink: 0;
}

.warranty-item span {
  color: #37474f;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Design for new sections */
@media (max-width: 991px) {
  .about-header h2 {
    font-size: 32px;
  }

  .about-header .about-description {
    font-size: 16px;
  }

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

  .section-title {
    font-size: 20px;
    margin: 30px 0 16px;
  }

  .equipment-item {
    padding: 14px;
  }

  .equipment-item strong {
    font-size: 15px;
  }

  .equipment-item div>span {
    font-size: 13px;
  }

  .industries-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .industry-item {
    padding: 14px;
  }

  .industry-item span {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .about-header {
    margin-bottom: 30px;
    margin-top: 32px;
  }

  .about-header h2 {
    font-size: 28px;
  }

  .about-header .about-description {
    font-size: 15px;
  }

  .about-grid {
    gap: 30px;
  }

  .section-title {
    font-size: 18px;
    margin: 25px 0 14px;
  }

  .section-title::after {
    width: 30px;
  }

  .equipment-item {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .equipment-item .material-icons {
    margin-left: 0;
    margin-bottom: 8px;
  }

  .equipment-item strong {
    font-size: 14px;
  }

  .equipment-item div>span {
    font-size: 12px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .industry-item {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .industry-item .material-icons {
    margin-left: 0;
    margin-bottom: 6px;
  }

  .warranty-item {
    flex-direction: column;
    text-align: center;
    padding: 12px 0;
  }

  .warranty-item .material-icons {
    margin-left: 0;
    margin-bottom: 6px;
  }

  .warranty-item span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-header h2 {
    font-size: 24px;
  }

  .about-header .about-description {
    font-size: 14px;
  }

  .section-title {
    font-size: 16px;
  }

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

  .equipment-item {
    padding: 12px;
  }

  .industry-item {
    padding: 10px;
  }
}

/* ==== Activities Section ==== */
.activities-section {
  margin: 60px 0;
}

.activities-description {
  font-size: 18px;
  line-height: 1.8;
  color: #37474f;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.activities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.activities-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.activity-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.08);
  border: 1px solid rgba(13, 71, 161, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.activity-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 71, 161, 0.15);
}

.activity-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #267099;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.activity-subtitle::after {
  content: '';
  position: absolute;
  bottom: -11px;
  right: 0;
  width: 206px;
  height: 3px;
  background: linear-gradient(90deg, #ffca28, #ffc107);
  border-radius: 2px;
}

.activity-description {
  font-size: 15px;
  line-height: 1.8;
  color: #546e7a;
  margin: 0;
  text-align: justify;
}

.activities-section .section-title {
  text-align: center;
  display: block;
  margin: 0 auto 40px;
}

@media (max-width: 991px) {
  .activities-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .activities-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .activity-item {
    padding: 25px;
  }

  .activity-subtitle {
    font-size: 18px;
  }

  .activity-description {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .activities-section {
    margin: 40px 0;
  }

  .activities-description {
    font-size: 15px;
  }

  .activities-grid {
    gap: 25px;
  }

  .activity-item {
    padding: 20px;
  }

  .activity-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .activity-subtitle::after {
    width: 106px;
    height: 2px;
    bottom: -8px;
  }

  .activity-description {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .activities-description {
    font-size: 14px;
  }

  .activity-item {
    padding: 16px;
  }

  .activity-subtitle {
    font-size: 15px;
  }

  .activity-description {
    font-size: 12px;
  }
}

/* ==== Values Section ==== */
.values-section {
  margin: 80px 0;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-item {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 40px rgba(13, 71, 161, 0.08);
  border: 1px solid rgba(13, 71, 161, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d47a1, #1976d2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

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

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(13, 71, 161, 0.15);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.value-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  opacity: 0.1;
  transform: scale(1.2);
  z-index: -1;
}

.value-icon .material-icons {
  font-size: 36px;
  color: white;
}

.value-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.value-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 124px;
  height: 3px;
  background: linear-gradient(90deg, #ffca28, #ffc107);
  border-radius: 2px;
}

.value-description {
  font-size: 15px;
  line-height: 1.8;
  color: #546e7a;
  margin: 0 0 20px 0;
  text-align: justify;
}

.values-list {
  margin-top: 20px;
}

.value-point {
  margin-bottom: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 71, 161, 0.08);
}

.value-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.value-point-title {
  font-weight: 600;
  color: #0d47a1;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.value-point-desc {
  color: #546e7a;
  font-size: 13px;
  line-height: 1.6;
}

/* Responsive Design for Values Section */
@media (max-width: 991px) {
  .values-grid {
    gap: 25px;
  }

  .value-item {
    padding: 30px 25px;
  }

  .value-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .value-icon .material-icons {
    font-size: 32px;
  }

  .value-subtitle {
    font-size: 20px;
  }

  .value-description {
    font-size: 14px;
  }

  .value-point-title {
    font-size: 13px;
  }

  .value-point-desc {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .values-section {
    margin: 60px 0;
  }

  .values-grid {
    gap: 20px;
  }

  .value-item {
    padding: 25px 20px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .value-icon .material-icons {
    font-size: 28px;
  }

  .value-subtitle {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .value-subtitle::after {
    width: 94px;
    height: 2px;
    bottom: -8px;
  }

  .value-description {
    font-size: 13px;
  }

  .value-point {
    margin-bottom: 12px;
    padding: 10px 0;
  }

  .value-point-title {
    font-size: 12px;
  }

  .value-point-desc {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .values-section {
    margin: 40px 0;
  }

  .values-grid {
    gap: 15px;
  }

  .value-item {
    padding: 20px 16px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .value-icon .material-icons {
    font-size: 24px;
  }

  .value-subtitle {
    font-size: 16px;
  }

  .value-description {
    font-size: 12px;
  }
}

/* ==== CTA Section ==== */
.cta-section {
  margin: 80px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}


.cta-description {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 27px;
  text-align: justify;
}

.cta-actions {
  display: flex;
  justify-content: right;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ffca28 0%, #ffc107 100%);
  color: #0d47a1;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 202, 40, 0.3);
}

.btn-secondary.cta {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-secondary.cta:hover {
  background: white;
  color: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for CTA Section */
@media (max-width: 991px) {
  .cta-section {
    margin: 60px 0;
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .cta-actions {
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary.cta {
    font-size: 15px;
    padding: 14px 28px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    margin: 50px 0;
    padding: 40px 25px;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary.cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-section {
    margin: 40px 0;
    padding: 30px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-description {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn-primary,
  .btn-secondary.cta {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* ==== Mission Section ==== */
.mission-section {
  padding: 80px 0;
  background: white;
  position: relative;
}

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

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

.mission-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 71, 161, 0.05);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(13, 71, 161, 0.15);
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.mission-icon .material-icons {
  font-size: 36px;
  color: white;
}

.mission-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #546e7a;
}

/* ==== Statistics Section ==== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #ffca28 0%, #ffc107 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.9;
}

/* ==== Team Section ==== */
.team-section {
  padding: 80px 0;
  background: #f5f7fa;
  position: relative;
}

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

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.team-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #ffca28, #ffc107);
  border-radius: 2px;
}

.team-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: #37474f;
  max-width: 600px;
  margin: 0 auto;
}

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

.team-member {
  background: white;
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(13, 71, 161, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 71, 161, 0.05);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 71, 161, 0.15);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.member-avatar .material-icons {
  font-size: 48px;
  color: white;
}

.team-member h4 {
  font-size: 20px;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 8px;
}

.member-role {
  font-size: 16px;
  font-weight: 500;
  color: #ffca28;
  margin-bottom: 12px;
}

.member-description {
  font-size: 14px;
  color: #546e7a;
  line-height: 1.6;
}

/* Responsive Design for new sections */
@media (max-width: 991px) {

  .mission-section,
  .stats-section,
  .team-section {
    padding: 60px 0;
  }

  .mission-grid {
    gap: 30px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  .team-header h2 {
    font-size: 32px;
  }

  .team-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767px) {

  .mission-section,
  .stats-section,
  .team-section {
    padding: 40px 0;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-card {
    padding: 24px 16px;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-member {
    padding: 30px 20px;
  }

  .team-header h2 {
    font-size: 28px;
  }

  .team-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {

  .mission-container,
  .stats-container,
  .team-container {
    padding: 0 16px;
  }

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

  .stat-number {
    font-size: 32px;
  }

  .team-header h2 {
    font-size: 24px;
  }

  .team-header h2::after {
    width: 40px;
  }
}