body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
}
.contact-section {
      padding: 60px 20px;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      max-width: 800px;
      margin: auto;
    }
.fcc-btn {
  background-color: #0077cc;
  color: white;
  padding: 15px 25px;
  text-decoration: none;
}
    .card-icon {
      font-size: 20px;
      color: #fff;
      padding: 20px;
      border-radius: 50%;
      margin-bottom: 20px;
      display: inline-block;
    }

    .icon-seo {
      background-color: #007bff;
    }

    .icon-social {
      background-color: #6f42c1;
    }

    .icon-email {
      background-color: #dc3545;
    }

    .card h5 {
      font-weight: 600;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: 0.3s ease;
    }
    .contact-section h2 {
      color: #0077cc;
      margin-bottom: 30px;
    }

    .form-control:focus {
      border-color: #0077cc;
      box-shadow: 0 0 0 0.2rem rgba(0, 119, 204, 0.25);
    }

    .btn-primary {
      background-color: #0077cc;
      border-color: #0077cc;
    }

    .btn-primary:hover {
      background-color: #FFFFFF;
      border-color: #005fa3;
    }
 h1 {
      margin-bottom: 30px;
      color: #333;
    }

    .services {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .service-box {
      background: #fff;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      width: 250px;
      transition: transform 0.3s;
    }

    .service-box:hover {
      transform: translateY(-10px);
    }

    .service-box i {
      font-size: 50px;
      color: #0077cc;
      margin-bottom: 15px;
    }

    .service-box h3 {
      margin-bottom: 10px;
      color: #333;
    }

    .service-box p {
      color: #666;
      font-size: 15px;
    }

    @media (max-width: 768px) {
      .services {
        flex-direction: column;
        align-items: center;
      }
    }
    
    
    
    
    
    .container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px;
      max-width: 1200px;
      margin: auto;
      background-color: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      border-radius: 10px;
      flex-wrap: wrap;
    }

    .image-box {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .image-box img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
.content-boxa {
      flex: 1;
      min-width: 300px;
      padding: 40px;
    }

    .content-boxa h2 {
      margin-top: 0;
      color: #0077cc;
    }

    .content-boxa p {
      color: #555;
      line-height: 1.6;
    }
    .content-box {
      flex: 1;
      min-width: 300px;
      padding: 20px;
    }

    .content-box h2 {
      margin-top: 0;
      color: #0077cc;
    }

    .content-box p {
      color: #555;
      line-height: 1.6;
    }

    .content-box button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #0077cc;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
 * {
      box-sizing: border-box;
    }

    .content-box button:hover {
      background-color: #005fa3;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
      }

      .image-box,
      .content-box {
        padding: 10px;
      }
    }

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
header {
  background: #004080;
  color: white;
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Header Image Section */
.header-image {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1508830524289-0adcbe822b40?auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.header-image .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  padding: 2em;
  border-radius: 10px;
}

.header-image h2 {
  font-size: 2.5em;
  margin: 0;
}

/* Content below header */
.intro-content {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 1em;
}

.intro-content h3 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #004080;
}

.intro-content p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #333;
}


header h1 {
  margin: 0;
  font-size: 1.5em;
}

nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.5em 0.8em;
  border-radius: 4px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #002850;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  background-color: #004080;
  color: white;
  padding: 0.5em 0.8em;
  font-size: 1em;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.dropbtn:hover {
  background-color: #002850;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0059b3;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 1;
}

/* Links inside dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #004080;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

/* Hover effect for dropdown links */
.dropdown-content a:hover {
  background-color: #003366;
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

main {
  padding: 2em;
  background: white;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.hero {
  text-align: center;
  background: #e6f0ff;
  padding: 2em;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1em;
  background: #ddd;
  margin-top: 40px;
}