
  * {
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9fafc;
  }
  
  header {
    background: linear-gradient(to right, #0e254e, #23395d);
    color: #fff;
    padding: 20px 40px;
  }
  header img {
    height: 45px;
  }
  nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
  }
  nav a:hover {
    color: #ffa500;
  }
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .container-width {
    max-width: 1200px;
    margin: auto;
  }
  .homeorange {
    color: rgba(252, 156, 43, 255);
  }
  .homeblue {
    color: rgba(18, 125, 197, 255);
  }
  .hero {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    padding: 50px 40px;
    background: linear-gradient(to right, #0e254e, #23395d);
    color: #fff;
  }
  .displayf {
    display: flex;
    justify-content: space-around;
  }
  .displayf > div {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
  }
  .displayf h2 {
    color: #fff;
  }
  .displayf p, .displayf a {
    color: #ddd;
  }
  .hero-text {
    max-width: 600px;
  }
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .hero img {
    max-width: 400px;
    width: 100%;
  }
  .section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    /* color: #0e254e; */
    color: #157CC7;
  }
  .section .tagline {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
  }
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #0e254e;
  }
  .service-card p {
    font-size: 1rem;
    color: #555;
  }
  #about-contact {
    /* display: flex;
    gap: 40px; */
    background: linear-gradient(to right, #0e254e, #23395d);
    color: #fff;
    padding: 40px;
    /* flex-wrap: wrap; */
  }
  /* #about-contact > div {
    flex: 1;
    min-width: 280px;
  }
  #about-contact h2 {
    color: #fff;
  }
  #about-contact p, #about-contact a {
    color: #ddd;
  } */
  .tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
  }
  .tech-logos img {
    height: 50px;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
  }
  .upwork-logo {
    background: white;
    padding: 0px 2px;
    border-radius: 5px;
  }
  .tech-logos img:hover {
    filter: none;
  }
  .tech-label {
    font-size: 0.9rem;
    margin-top: 8px;
    color: #444;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  .social-icons a img {
    width: 32px;
    height: 32px;
    /* filter: grayscale(100%) brightness(0) invert(1); */
    transition: transform 0.3s ease;
  }
  .social-icons a:hover img {
    transform: scale(1.1);
    filter: none;
  }
  footer {
    /* background: #0e254e; */
    background: linear-gradient(to right, #0e254e, #23395d);
    color: #ccc;
    padding: 0px 20px 40px 20px;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 60px;
  }
  footer a {
    color: #ffa500;
    text-decoration: none;
  }
