/* style.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fc;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  header {
    background: linear-gradient(to right, #0077ff, #00c6ff);
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  
  header h1 {
    margin-bottom: 10px;
    font-size: 2.8em;
  }
  
  header p {
    font-size: 1.2em;
  }
  
  .cta-button {
    background-color: #fff;
    color: #0077ff;
    padding: 12px 24px;
    border: none;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #e6e6e6;
  }
  
  nav {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 10px 0;
  }
  
  nav li {
    margin: 0 20px;
  }
  
  nav a {
    text-decoration: none;
    color: #0077ff;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #005dc1;
  }
  
  main {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  section {
    margin-bottom: 60px;
  }
  
  h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 2em;
    border-bottom: 2px solid #0077ff;
    display: inline-block;
  }
  
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }
  
  .service-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card i {
    font-size: 24px;
    color: #0077ff;
    margin-bottom: 10px;
  }
  
  .results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .results-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  
  form {
    display: grid;
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
  }
  
  button[type=\"submit\"] {
    background-color: #0077ff;
    color: white;
    border: none;
    font-size: 1em;
    border-radius: 30px;
    padding: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button[type=\"submit\"]:hover {
    background-color: #005dc1;
  }
  
  footer {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 10px;
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  .modal-content h2 {
    margin-top: 0;
  }
  
  .modal-content label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
  }
  
  .modal-content input,
  .modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
  }
  
  .modal-content button[type="submit"] {
    background-color: #0077ff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .modal-content button[type="submit"]:hover {
    background-color: #005fd1;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
  }
  .logo {
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
  }