    a { 
      text-decoration: none;
      color: white;
    }
    * {
      font-family: 'Vazirmatn', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f8f9fa;
    }

    /* Header Top Section */
    .header-top {
      background-color: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .logo img {
      height: 100px;
    }

    .search-box {
      position: relative;
      width: 100%;
      max-width: 420px;
    }

    .search-box input {
      width: 100%;
      border: 1.5px solid #6fc1a1;
      border-radius: 30px;
      padding: 10px 45px 10px 15px;
      font-size: 0.95rem;
      outline: none;
    }

    .search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6fc1a1;
    }

    .header-buttons .btn {
      border-radius: 30px;
      padding: 8px 20px;
      font-weight: 500;
    }

    .btn-install {
      background-color: #6fc1a1;
      color: #fff;
      transition: 0.3s;
    }

    .btn-install:hover {
      background-color: #5cb08d;
    }

    .btn-call {
      border: 1.5px solid #6fc1a1;
      color: #6fc1a1;
      transition: 0.3s;
    }

    .btn-call:hover {
      background-color: #6fc1a1;
      color: #fff;
    }

    /* Navbar */
    .main-nav {
      background-color: #fff;
      border-top: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 10px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }

    .main-nav ul li a {
      color: #003366;
      font-weight: 500;
      transition: 0.3s;
      text-decoration: none;
    }

    .main-nav ul li a:hover {
      color: #6fc1a1;
    }

    .main-nav ul li a.active {
      color: #6fc1a1;
      font-weight: 600;
    }

    /* Mobile Header */
    .mobile-header {
      display: none;
      background-color: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: relative;
    }

    .mobile-header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 15px;
    }

.mobile-logo img {
  height: 80px;
  width: auto;
  max-width: 200px;
}

    .mobile-menu-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #003366;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
      background-color: #f0f0f0;
    }

    .mobile-search-box {
      position: relative;
      margin: 10px 15px;
    }

    .mobile-search-box input {
      width: 100%;
      border: 1.5px solid #6fc1a1;
      border-radius: 30px;
      padding: 10px 45px 10px 15px;
      font-size: 0.95rem;
      outline: none;
    }

    .mobile-search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6fc1a1;
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: #fff;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 1000;
      overflow-y: auto;
      transition: transform 0.3s ease;
      transform: translateX(100%);
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: block;
    }

    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      background-color: #003366;
      color: white;
    }

    .mobile-nav-header .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .mobile-nav-close {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s;
    }

    .mobile-nav-close:hover {
      background-color: rgba(255,255,255,0.2);
    }

    .mobile-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav ul li:last-child {
      border-bottom: none;
    }

    .mobile-nav ul li a {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      color: #003366;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }

    .mobile-nav ul li a i {
      margin-left: 10px;
      color: #6fc1a1;
      width: 20px;
      text-align: center;
    }

    .mobile-nav ul li a:hover {
      background-color: #f9f9f9;
      color: #6fc1a1;
    }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 999;
    }

    .mobile-nav-overlay.active {
      display: block;
    }

    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, #6fc1a1 0%, #0f766e 100%);
      color: white;
      padding: 80px 0 60px;
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
      background-size: cover;
    }

    .page-header h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
    }

    .page-header p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
      position: relative;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: transparent;
      padding: 20px 0;
      margin-bottom: 40px;
    }

    .breadcrumb-item a {
      color: #6fc1a1;
      text-decoration: none;
      font-weight: 500;
    }

    .breadcrumb-item.active {
      color: #003366;
      font-weight: 600;
    }

    /* About Hero Section */
    .about-hero {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      margin-bottom: 80px;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-text h2 {
      color: #003366;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    .hero-text p {
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      color: #0f766e;
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .stat-label {
      color: #666;
      font-size: 1rem;
      font-weight: 500;
    }

    .hero-image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .hero-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hero-image:hover img {
      transform: scale(1.05);
    }

    /* Mission Vision Section */
    .mission-vision {
      padding: 80px 0;
      background: white;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      color: #003366;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-subtitle {
      color: #666;
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .mv-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .mv-card {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .mv-card:hover {
      transform: translateY(-10px);
      border-color: #6fc1a1;
      box-shadow: 0 15px 30px rgba(111, 193, 161, 0.1);
    }

    .mv-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #6fc1a1 0%, #0f766e 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      color: white;
      font-size: 2rem;
    }

    .mv-card h3 {
      color: #003366;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .mv-card p {
      color: #666;
      line-height: 1.7;
      font-size: 1.05rem;
    }

    /* Values Section */
    .values-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .value-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .value-icon {
      width: 70px;
      height: 70px;
      background: #e8f5f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: #0f766e;
      font-size: 1.8rem;
    }

    .value-card h4 {
      color: #003366;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .value-card p {
      color: #666;
      line-height: 1.6;
    }

    /* Timeline Section */
    .timeline-section {
      padding: 80px 0;
      background: white;
    }

    .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }

    .timeline::before {
      content: '';
      position: absolute;
      right: 50%;
      transform: translateX(50%);
      width: 4px;
      height: 100%;
      background: #6fc1a1;
      border-radius: 2px;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 50px;
    }

    .timeline-item:nth-child(odd) {
      padding-left: 50%;
    }

    .timeline-item:nth-child(even) {
      padding-right: 50%;
    }

    .timeline-content {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border-right: 4px solid #6fc1a1;
      position: relative;
    }

    .timeline-item:nth-child(even) .timeline-content {
      border-right: none;
      border-left: 4px solid #6fc1a1;
    }

    .timeline-year {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #0f766e;
      color: white;
      padding: 10px 20px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .timeline-item:nth-child(odd) .timeline-year {
      left: -100px;
    }

    .timeline-item:nth-child(even) .timeline-year {
      right: -100px;
    }

    .timeline-content h3 {
      color: #003366;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .timeline-content p {
      color: #666;
      line-height: 1.6;
    }

    /* Team Section */
    .team-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .team-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      text-align: center;
    }

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .team-image {
      height: 250px;
      overflow: hidden;
    }

    .team-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .team-card:hover .team-image img {
      transform: scale(1.1);
    }

    .team-info {
      padding: 25px;
    }

    .team-name {
      color: #003366;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .team-position {
      color: #0f766e;
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .team-bio {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .team-social {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .team-social a {
      width: 35px;
      height: 35px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .team-social a:hover {
      background: #6fc1a1;
      color: white;
    }

    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #6fc1a1 0%, #0f766e 100%);
      color: white;
      text-align: center;
    }

    .cta-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .cta-text {
      font-size: 1.2rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: white;
      color: #0f766e;
      border: none;
      border-radius: 30px;
      padding: 12px 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-primary:hover {
      background: #003366;
      color: white;
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 2px solid white;
      border-radius: 30px;
      padding: 12px 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: white;
      color: #0f766e;
      transform: translateY(-2px);
    }

    /* Footer Styles */
    footer {
      background-color: #ffffff;
      border-top: 1px solid #e5e7eb;
      color: #4b5563;
      padding: 60px 20px 30px;
      text-align: left;
      direction: ltr;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-flex-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
    }

    .footer-col {
      flex: 1 1 200px;
      min-width: 180px;
    }

    .footer-col h4 {
      color: #0f766e;
      font-size: 16px;
      margin-bottom: 18px;
      text-align: left;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #4b5563;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #0f766e;
    }

    .social {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
    }

    .social a {
      font-size: 22px;
      color: #6b7280;
      transition: color 0.3s;
    }

    .social a:hover {
      color: #0f766e;
    }

    .newsletter {
      margin-top: 30px;
    }

    .newsletter p {
      margin-bottom: 10px;
      font-size: 15px;
      color: #374151;
      text-align: left;
    }

    .newsletter-form {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      max-width: 350px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      text-align: left;
    }

    .newsletter-form button {
      background-color: #0f766e;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 25px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s;
    }

    .newsletter-form button:hover {
      background-color: #115e57;
    }

    .trust-badge {
      text-align: center;
      margin-top: 50px;
    }

    .trust-badge img {
      width: 110px;
      height: auto;
      border-radius: 8px;
      border: 1px solid #d1d5db;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #6b7280;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .timeline::before {
        right: 30px;
      }
      
      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        padding: 0 0 0 70px;
      }
      
      .timeline-item:nth-child(odd) .timeline-year,
      .timeline-item:nth-child(even) .timeline-year {
        left: 0;
        right: auto;
      }
    }

    @media (max-width: 768px) {
      .header-top, .main-nav {
        display: none;
      }
      
      .mobile-header {
        display: block;
      }
      
      .header-buttons {
        margin-top: 10px;
      }

      .search-box {
        max-width: 100%;
      }

      .logo {
        text-align: center;
      }

      .page-header {
        padding: 60px 0 40px;
      }

      .page-header h1 {
        font-size: 2.2rem;
      }

      .page-header p {
        font-size: 1.1rem;
      }

      .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .stat-number {
        font-size: 2rem;
      }

      .section-title {
        font-size: 1.8rem;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      .footer-flex-row {
        flex-direction: column;
        text-align: left;
        gap: 40px;
      }

      .newsletter-form {
        flex-direction: column;
        align-items: stretch;
      }

      .newsletter-form input {
        width: 100%;
      }

      .newsletter-form button {
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .page-header h1 {
        font-size: 1.8rem;
      }

      .hero-text h2 {
        font-size: 1.8rem;
      }

      .mv-card {
        padding: 25px;
      }

      .timeline-content {
        padding: 20px;
      }

      .cta-title {
        font-size: 1.8rem;
      }
    }