/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #002b5c;
  color: #fff;
  padding: 15px 0;

  .logo {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
  }

  nav {
    float: right;

    a {
      color: #fff;
      margin-left: 20px;
      text-decoration: none;
      font-weight: bold;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,43,92,0.7), rgba(0,43,92,0.7)),
    url('https://picsum.photos/1600/600') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;

  h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }

  button {
    background: #ff6600;
    border: none;
    padding: 12px 24px;
    font-size: 1em;
    color: #fff;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 4px;

    &:hover {
      background: #e65c00;
    }
  }
}

/* Services */
.services {
  padding: 60px 0;

  h3 {
    text-align: center;
    margin-bottom: 40px;
  }

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

  .service-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    transition: transform 0.2s ease;
    text-align: center;

    &:hover {
      transform: translateY(-5px);
      border-color: #002b5c;
    }

    img {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
    }

    h4 {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #002b5c;
    }
  }
}

/* About */
.about {
  background: #f9f9f9;
  padding: 60px 20px;

  .about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: center;
  }

  .about-text {
    h3 {
      margin-bottom: 20px;
      font-size: 26px;
      color: #002b5c;
    }

    p {
      margin-bottom: 15px;
      font-size: 16px;
      color: #444;
    }

    ul {
      list-style: none;
      margin-top: 20px;
      padding: 0;

      li {
        margin-bottom: 10px;
        font-size: 15px;
        color: #333;

        &:before {
          content: "✔";
          color: #ff6600;
          margin-right: 8px;
        }
      }
    }
  }

  .about-image {
    text-align: center;

    img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
  }
}


/* Contact */
.contact {
  background: #f9f9f9;
  padding: 60px 20px;

  .contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: start;
  }

  h3 {
    margin-bottom: 20px;
    color: #002b5c;
    font-size: 24px;
  }

  .contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

    .form-group {
      margin-bottom: 15px;

      input,
      textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 15px;
        transition: border 0.3s ease;

        &:focus {
          border: 1px solid #002b5c;
          outline: none;
        }
      }

      button {
        width: 100%;
        padding: 12px;
        background: #002b5c;
        border: none;
        border-radius: 5px;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;

        &:hover {
          background: #001f44;
        }
      }
    }
  }

  .contact-info {
    p {
      font-size: 15px;
      margin-bottom: 12px;

      a {
        color: #002b5c;
        text-decoration: none;

        &:hover {
          color: #ff6600;
        }
      }
    }

    img {
      margin-right: 10px;
      filter: invert(20%) sepia(100%) saturate(700%) hue-rotate(190deg) brightness(90%) contrast(90%);
    }
  }
}


/* Footer */
footer {
  background: #002b5c;
  color: #fff;
  padding: 40px 20px 20px;

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
  }

  .footer-col {
    h2.footer-logo {
      font-size: 22px;
      margin-bottom: 10px;
      color: #ff6600; // accent color
    }

    h4 {
      font-size: 18px;
      margin-bottom: 15px;
      border-bottom: 2px solid #ff6600;
      display: inline-block;
      padding-bottom: 5px;
    }

    p {
      font-size: 14px;
      margin-bottom: 8px;
    }

    ul {
      list-style: none;
      padding: 0;

      li {
        margin-bottom: 8px;

        a {
          color: #fff;
          text-decoration: none;
          font-size: 14px;

          &:hover {
            color: #ff6600;
          }
        }
      }
    }
  }

  .footer-bottom {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
  }
}

