/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  /* Body Styling */
  body {
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
  }
  
  /* Header Styling */
  header {
    background-color: #262626;
    color: rgb(6, 201, 235);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  header h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  
  header .highlight {
    color: #ff3366; /* Highlight color */
  }
  
  header nav ul {
    list-style: none;
  }
  
  header nav ul li {
    display: inline-block;
    margin-right: 20px;
  }
  
  header nav ul li a {
    color: rgb(19, 213, 248);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  header nav ul li a:hover {
    color: #ff3366;
    transform: scale(1.1);
  }
  
  /* Hero Section Styling */
  .hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: rgb(231, 183, 12);
    text-align: center;
    padding: 150px 20px;
  }
  
  .hero h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
  }
  
  .hero .rainbow-text {
    background: linear-gradient(45deg, #ff3366, #ff9a8b);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  .hero .btn-primary {
    padding: 15px 30px;
    background-color: #ff3366;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .hero .btn-primary:hover {
    background-color: #ff5c8e;
  }
  
  /* Services Preview Section Styling */
  .services-preview {
    padding: 100px 20px;
    text-align: center;
  }
  
  .services-preview h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  
  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .card-content {
    padding: 20px;
    text-align: center;
  }
  
  .card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .card p {
    font-size: 1rem;
    color: #666;
  }
  
  .card a {
    color: #ff3366;
    font-weight: bold;
    text-decoration: none;
  }
  
  .card a:hover {
    color: #ff5c8e;
  }
  
  /* About Section Styling */
  .about {
    background: linear-gradient(45deg, #ff3366, #ff9a8b);
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  
  .about h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .about p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .about ul {
    list-style: none;
    padding: 0;
  }
  
  .about ul li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about ul li::before {
    content: "✅";
    font-size: 1.5rem;
    margin-right: 10px;
    color: #ff3366;
  }
  
  /* Call To Action (CTA) Section Styling */
  .cta {
    background-color: #ffffff;
    color: #262626;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  .cta .btn-glow {
    padding: 15px 30px;
    background-color: #ff3366;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .cta .btn-glow:hover {
    background-color: #ff5c8e;
    transform: scale(1.05);
  }
  
  /* Footer Styling */
  footer {
    background-color: #262626;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  footer p {
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  footer form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: 0 auto;
  }
  
  footer input,
  footer textarea {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }
  
  footer input:focus,
  footer textarea:focus {
    border-color: #ff3366;
    outline: none;
  }
  
  footer button {
    background-color: #ff3366;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  footer button:hover {
    background-color: #ff5c8e;
    transform: scale(1.05);
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .service-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero h2 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.2rem;
    }
  
    .card h3 {
      font-size: 1.3rem;
    }
  
    .card p {
      font-size: 0.9rem;
    }
  
    .cta h2 {
      font-size: 2.2rem;
    }
  
    .cta p {
      font-size: 1.1rem;
    }
  
    footer form {
      width: 100%;
    }
  }
  