  html {
    overflow-x: hidden;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .header {
    background: linear-gradient(90deg, #e6cfc0, #f3e7df);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: relative;
    z-index: 100;
  }

  /* Logo - Enhanced visibility */
  .header img.logo {
    height: 80px;
    /* Add subtle shadow for better visibility */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* Ensure it's on top */
    position: relative;
    z-index: 101;
    /* Add slight animation on hover */
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .header img.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  }


  /* Contact info on right */
  .header .contact {
    text-align: right;
    font-size: 14px;
    color: #222;
  }

  .sec-header {
    padding: 20px;
    background-color: #f8f8f8;
    /* optional */
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* spacing between elements */
  }

  .header-container img {
    max-width: 200px;
    height: auto;
    border-radius: 10px;
    /* optional */
  }

  .header-container h3 {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
  }

  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      /* stack vertically */
      text-align: center;
    }

    .header-container img {
      max-width: 90%;
      /* make images responsive */
    }

    .header-container h3 {
      margin: 10px 0;
    }

    .footer-txt {
      display: flex;
      margin: 5px;
      justify-content: center;
      /* center items horizontally */
      flex-wrap: wrap;
      /* allow items to move to next line on small screens */
      gap: 10px;
      /* space between items */
    }

    footer {
      padding: 30px 15px;
      /* reduce padding on mobile */
    }

    footer div.footer-txt {
      flex-direction: column;
      /* stack vertically on mobile */
      text-align: center;
      font-size: 14px;
      /* slightly smaller text */
      margin: 10px;
      gap: 15px;
      /* spacing between footer items */
    }

    footer div.footer-txt p {
      margin: 0;
      /* remove default margins */
    }
  }


  .about {
    text-align: center;
    font-weight: bold;
    font-size: 19px;
    line-height: 1.6;
    color: #333;
  }

  span {
    font-size: 20px;
  }

  div.contact img.GPS {
    height: 65px;
    border-radius: 50%;
    margin-bottom: -15px;
  }

  .info-img {
    width: 90%;
  }

  footer {
    padding: 70px;
    background: linear-gradient(90deg, #dae8fa, #f3e7df);
    color: #222;
  }

  footer div.footer-txt {
    font-weight: bold;
    font-size: 18px;
    margin: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }


  /* About Us */
  .who-we-are {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f5f5f5;
  }

  .who-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
  }

  .who-text {
    max-width: 600px;
  }

  .who-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #222;
  }

  .who-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }

  @media (max-width: 768px) {
    .who-we-are {
      flex-direction: column;
      text-align: center;
    }

    .who-image img {
      max-width: 100%;
    }

    .who-text {
      max-width: none;
    }
  }

  /* The vav Style */
  .nav-bar {
    background-color: #2563eb;
    padding: 10px 20px;
    text-align: center;
  }

  .nav-bar nav a {
    color: #fff;
    /* white text */
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }

  .nav-bar nav a:hover {
    color: #fbbf24;
    /* yellow on hover */
  }

  /* Mobile top bar */
  .mobile-top-bar {
    display: none;
    /* hidden on desktop */
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #e6cfc0, #f3e7df);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .mobile-lang-switcher {
    display: flex;
    align-items: center;
  }

  .desktop-lang-switcher {
    display: block;
  }

  /* Mobile menu toggle button */
  .mobile-menu-toggle {
    display: none;
    /* hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }

  .menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #222;
    margin: 5px 0;
    transition: 0.3s;
  }

  /* Mobile responsive styles */
  @media (max-width: 768px) {
    .mobile-top-bar {
      display: flex;
      /* show mobile top bar */
    }

    .desktop-lang-switcher {
      display: none;
      /* hide desktop language switcher on mobile */
    }

    .mobile-menu-toggle {
      display: block;
      /* show hamburger on mobile */
    }

    .nav-bar {
      position: relative;
    }

    .nav-bar nav {
      display: none;
      /* hidden by default on mobile */
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #2563eb;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }

    .nav-bar nav.active {
      display: flex;
      /* show when active */
    }

    .nav-bar nav a {
      margin: 10px 0;
      padding: 10px;
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-bar nav a:last-child {
      border-bottom: none;
    }
  }


  /* Error Page Styles */
  .error-container {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
    padding: 40px 20px;
  }

  .error-code {
    font-size: 120px;
    font-weight: bold;
    color: #e74c3c;
    margin: 0;
    line-height: 1;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  }

  .error-title {
    font-size: 32px;
    color: #2c3e50;
    margin: 20px 0 10px;
    font-weight: 600;
  }

  .error-message {
    font-size: 18px;
    color: #7f8c8d;
    margin: 20px 0 30px;
    line-height: 1.6;
  }

  .error-friendly {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 16px;
    color: #34495e;
    border-left: 4px solid #3498db;
  }

  .error-actions {
    margin-top: 40px;
  }

  .btn-home {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px;
    transition: background 0.3s;
  }

  .btn-home:hover {
    background: #2980b9;
    color: white;
  }

  .btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin: 5px;
    transition: background 0.3s;
  }

  .btn-back:hover {
    background: #7f8c8d;
    color: white;
  }

  .error-icon {
    font-size: 80px;
    margin-bottom: 20px;
  }

  /* End Of Error Page Styles */
  .flashes {
    max-width: 600px;
    margin: 20px auto;

  }

  /* ==================== PWA INSTALL BUTTON ==================== */
  .pwa-install-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .pwa-install-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
  }

  .pwa-install-btn:active {
    transform: translateY(-1px);
  }

  @keyframes pulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }
  }

  @media (max-width: 768px) {
    .pwa-install-btn {
      bottom: 15px;
      right: 15px;
      padding: 12px 20px;
      font-size: 14px;
    }
  }

  /* ==================== PWA MANUAL INSTALL BUTTON ==================== */
  .pwa-manual-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
  }

  .pwa-manual-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
  }

  /* ==================== INSTALL INSTRUCTIONS MODAL ==================== */
  .install-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
  }

  .modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
  }

  .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
  }

  .modal-close:hover {
    color: #000;
  }

  .modal-content h3 {
    margin: 0 0 20px 0;
    color: #1f2937;
    font-size: 24px;
    text-align: center;
  }

  .modal-content p {
    color: #4b5563;
    margin: 15px 0 10px 0;
    font-size: 16px;
  }

  .modal-content ol {
    color: #1f2937;
    line-height: 1.8;
    padding-left: 20px;
  }

  .modal-content ol li {
    margin: 10px 0;
    font-size: 15px;
  }

  .modal-content strong {
    color: #2563eb;
    font-weight: 600;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes slideUp {
    from {
      transform: translateY(50px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Mobile styles for install buttons and modal */
  @media (max-width: 768px) {

    .pwa-install-btn,
    .pwa-manual-btn {
      bottom: 15px;
      right: 15px;
      padding: 12px 20px;
      font-size: 14px;
    }

    .modal-content {
      padding: 20px;
      width: 95%;
    }

    .modal-content h3 {
      font-size: 20px;
    }

    .modal-content ol li {
      font-size: 14px;
    }
  }

  /* ==================== NEW HOMEPAGE STYLES ==================== */

  /* Hero Section */
  .hero-section {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8)), url('/static/images/bow.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }

  .hero-overlay {
    max-width: 1200px;
    padding: 0 20px;
  }

  .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
  }

  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
  }

  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
  }

  .btn-primary,
  .btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary {
    background: white;
    color: #2563eb;
  }

  .btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
  }

  .btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
  }

  /* About Section */
  .about-section {
    padding: 80px 20px;
    background: white;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2.5rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    border-radius: 2px;
  }

  .about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }

  .company-name {
    font-weight: bold;
    color: #2563eb;
    font-size: 1.3rem;
  }

  /* Posts Section */
  .posts-section {
    padding: 80px 20px;
    background: #f9fafb;
  }

  .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .post-card:hover .post-image img {
    transform: scale(1.05);
  }

  .post-content {
    padding: 25px;
  }

  .post-title {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .post-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .post-date {
    color: #9ca3af;
    font-size: 0.9rem;
  }

  .view-more {
    text-align: center;
    margin-top: 30px;
  }

  .btn-link {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .btn-link:hover {
    color: #1d4ed8;
  }

  /* What We Do Section */
  .what-we-do-section {
    padding: 80px 20px;
    background: white;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .service-card {
    text-align: center;
    padding: 40px 20px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .service-card:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  }

  .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: inherit;
  }

  .service-card p {
    color: inherit;
    opacity: 0.9;
    line-height: 1.6;
  }

  /* CTA Section */
  .cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
  }

  .btn-cta {
    background: white;
    color: #2563eb;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .btn-cta:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  /* ==================== ABOUT PAGE STYLES ==================== */

  .about-hero,
  .portfolio-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8)), url('/static/images/the2.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }

  .about-hero-overlay,
  .portfolio-hero-overlay {
    max-width: 1200px;
    padding: 0 20px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
  }

  /* Company Overview */
  .company-overview {
    padding: 80px 20px;
    background: white;
  }

  .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
  }

  .overview-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  /* Mission & Vision */
  .mission-vision {
    padding: 80px 20px;
    background: #f9fafb;
  }

  .mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }

  .mv-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
  }

  .mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .mv-icon {
    font-size: 4rem;
    margin-bottom: 20px;
  }

  .mv-card h3 {
    font-size: 1.8rem;
    color: #2563eb;
    margin-bottom: 20px;
  }

  .mv-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
  }

  /* Core Values */
  .core-values {
    padding: 80px 20px;
    background: white;
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }

  .value-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .value-card:hover {
    border-color: #2563eb;
    background: white;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
  }

  .value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .value-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 12px;
  }

  .value-card p {
    color: #6b7280;
    line-height: 1.6;
  }

  /* What We Do Detailed */
  .what-we-do-detailed {
    padding: 80px 20px;
    background: #f9fafb;
  }

  .services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
  }

  .service-detailed-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .service-detailed-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 15px;
  }

  .service-detailed-card>p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-features {
    list-style: none;
    padding: 0;
  }

  .service-features li {
    color: #4b5563;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
  }

  .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
  }

  /* Commitment Section */
  .commitment-section {
    padding: 80px 20px;
    background: white;
  }

  .commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
  }

  .commitment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 10px;
  }

  .stat-label {
    font-size: 1.1rem;
    color: #6b7280;
  }

  /* ==================== PORTFOLIO PAGE STYLES ==================== */

  .portfolio-intro {
    padding: 60px 20px;
    background: white;
    text-align: center;
  }

  .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
  }

  .portfolio-section {
    padding: 80px 20px;
    background: #f9fafb;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
  }

  .portfolio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .portfolio-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }

  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
  }

  .portfolio-no-image {
    background: linear-gradient(135deg, #e5e7eb, #d1d5db);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .no-image-placeholder {
    text-align: center;
  }

  .placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
  }

  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .portfolio-card:hover .portfolio-overlay {
    opacity: 1;
  }

  .view-project {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 8px;
  }

  .portfolio-content {
    padding: 30px;
  }

  .portfolio-title {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .portfolio-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .portfolio-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #9ca3af;
    font-size: 0.95rem;
  }

  .portfolio-date {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .portfolio-date svg {
    flex-shrink: 0;
  }

  /* No Projects Message */
  .no-projects {
    text-align: center;
    padding: 80px 20px;
  }

  .no-projects-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.5;
  }

  .no-projects h3 {
    font-size: 2rem;
    color: #4b5563;
    margin-bottom: 15px;
  }

  .no-projects p {
    font-size: 1.1rem;
    color: #6b7280;
  }

  /* Portfolio Stats */
  .portfolio-stats {
    padding: 80px 20px;
    background: white;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 50px;
  }

  .stat-box {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .stat-box:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  }

  .stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .stat-box:hover .stat-value {
    color: white;
  }

  .stat-label {
    font-size: 1rem;
    opacity: 0.9;
  }

  /* ==================== RESPONSIVE STYLES ==================== */

  @media (max-width: 1024px) {

    .hero-title,
    .page-title {
      font-size: 2.5rem;
    }

    .overview-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 768px) {

    .hero-section,
    .about-hero,
    .portfolio-hero {
      height: 400px;
    }

    .hero-title,
    .page-title {
      font-size: 2rem;
    }

    .hero-subtitle,
    .page-subtitle {
      font-size: 1.1rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .hero-buttons {
      flex-direction: column;
      align-items: center;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      max-width: 300px;
    }

    .posts-grid,
    .portfolio-grid {
      grid-template-columns: 1fr;
    }

    .services-grid,
    .values-grid,
    .services-detailed-grid {
      grid-template-columns: 1fr;
    }

    .mv-grid,
    .commitment-stats,
    .stats-grid {
      grid-template-columns: 1fr;
    }

    .cta-section h2 {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 480px) {

    .hero-title,
    .page-title {
      font-size: 1.75rem;
    }

    .section-title {
      font-size: 1.5rem;
    }

    .about-section,
    .posts-section,
    .what-we-do-section,
    .company-overview,
    .mission-vision,
    .core-values,
    .what-we-do-detailed,
    .commitment-section,
    .portfolio-section,
    .portfolio-stats,
    .cta-section {
      padding: 50px 15px;
    }

    .post-content,
    .portfolio-content {
      padding: 20px;
    }
  }

  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ==========================================
     PROJECT MODAL STYLES
     ========================================== */

  .project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .project-modal.active {
    display: flex;
  }

  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
  }

  .modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    z-index: 10000;
    animation: modalSlideIn 0.3s ease-out;
  }

  @keyframes modalSlideIn {
    from {
      opacity: 0;
      transform: translateY(-50px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
  }

  .modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
  }

  .modal-close svg {
    width: 24px;
    height: 24px;
  }

  .modal-header {
    padding: 40px 40px 20px;
    border-bottom: 2px solid #f0f0f0;
  }

  .modal-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
  }

  .modal-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .modal-body {
    padding: 30px 40px;
  }

  .modal-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
  }

  .modal-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .modal-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
  }

  .modal-footer {
    padding: 20px 40px 40px;
    display: flex;
    justify-content: center;
  }

  .btn-cta-small {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .btn-cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
  }

  /* Category badges */
  .category-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  .category-badge.project {
    background: #e8f5e9;
    color: #2e7d32;
  }

  .category-badge.news {
    background: #e3f2fd;
    color: #1565c0;
  }

  .category-badge.general {
    background: #fff3e0;
    color: #e65100;
  }

  /* Portfolio enhancements */
  .project-category {
    margin-bottom: 10px;
  }

  .read-more-btn {
    margin-top: 15px;
    background: transparent;
    border: 2px solid #e67e22;
    color: #e67e22;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
  }

  .read-more-btn:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
  }

  .view-project-btn {
    background: white;
    color: #e67e22;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .view-project-btn:hover {
    background: #e67e22;
    color: white;
    transform: scale(1.05);
  }

  /* Fade in animation for portfolio cards */
  .portfolio-card.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    .modal-content {
      width: 95%;
      max-height: 95vh;
      border-radius: 8px;
    }

    .modal-header {
      padding: 30px 20px 15px;
    }

    .modal-header h2 {
      font-size: 1.5rem;
    }

    .modal-body {
      padding: 20px;
    }

    .modal-text {
      font-size: 1rem;
    }

    .modal-footer {
      padding: 15px 20px 30px;
    }

    .modal-close {
      top: 10px;
      right: 10px;
      width: 35px;
      height: 35px;
    }
  }

  @media (max-width: 480px) {
    .modal-header h2 {
      font-size: 1.25rem;
    }

    .modal-text {
      font-size: 0.95rem;
      line-height: 1.6;
    }
  }