/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
}

header {
    text-align: center;
    padding: 2rem 1rem;
}

header h1 {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
}

header p {
    font-size: 1.2rem;
    margin: 0.5rem 0 2rem;
}

nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: background 0.3s;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.4);
}

main {
    padding: 2rem;
    text-align: center;
}

.section {
    background: white;
    color: #333;
    margin: 1.5rem auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section h2 {
    color: #1abc9c;
    margin-bottom: 1rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.card {
    background: #f4f4f9;
    color: #333;
    padding: 1.5rem;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin: 0.5rem 0;
    color: #1abc9c;
}

.card p {
    margin: 0.5rem 0;
    color: #7f8c8d;
}
  
  /* Hero Section */
  .hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    height: 500px;
    color: white;
    text-align: center;
    padding: 100px 0;
    margin-top: 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0088cc;
  }
  
  /* About Section */
  .about {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .about p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Services Section */
  .services {
    background-color: #f5f5f5;
    padding: 80px 0;
  }
  
  .services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15
  }
    /* Testimonials Section */
.testimonials {
    background-color: #f0f4f8;
    padding: 80px 0;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #003a55;
  }
  
  .testimonial-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }
  
  .client-avatar {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .client-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00aaff;
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
  }
  
  .client-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #003a55;
    margin-bottom: 10px;
  }
  
  .client-rating {
    font-size: 1.2rem;
    color: #ffcc00;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .testimonial-card {
      width: 100%;
    }
  }

  /* Contact Section */
.contact {
    background-color: #ffffff;
    padding: 80px 0;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #003a55;
  }
  
  .contact-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-form {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 80%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-form label {
    font-size: 1.1rem;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #00aaff;
    box-shadow: 0 0 5px rgba(0, 170, 255, 0.5);
  }
  
  .contact-form textarea {
    resize: vertical;
  }
  
  .cta-button {
    padding: 15px 30px;
    background-color: #00aaff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #0088cc;
  }
  
  .cta-button:active {
    transform: scale(0.98);
  }
  
  /* Error/Success Message */
  #form-message {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    color: green;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .contact-form {
      width: 90%;
    }
  }
  

  /* Footer Section */
#footer {
    background-color: #003a55;
    color: #f9f9f9;
    padding: 40px 0;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-column {
    width: 22%;
  }
  
  .footer-column h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-column p, .footer-column a {
    font-size: 1rem;
    color: #dddddd;
    line-height: 1.5;
  }
  
  .footer-column a:hover {
    color: #00aaff;
    text-decoration: underline;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column .social-links {
    display: flex;
    gap: 10px;
  }
  
  .footer-column .social-icon {
    font-size: 1.5rem;
    color: #dddddd;
    transition: color 0.3s ease;
  }
  
  .footer-column .social-icon:hover {
    color: #00aaff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-column {
      width: 48%;
    }
  }
  
  @media (max-width: 480px) {
    .footer-column {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  