/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container Utility */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem;
}

/* Header */
header {
  background-color: #0073e6;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

header h1 i {
  font-size: 2.5rem;
}

/* Section Headings */
section h2 {
  font-size: 2rem;
  text-align: center;
  color: #0073e6;
  margin-bottom: 1.2rem;
}

/* Introduction Section Styling */
.introduction {
  padding: 40px 20px;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: 8px;
}

.introduction h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #007bff;
}

.introduction h3 {
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #28a745;
}

.introduction p {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #333;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.sector-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.sector-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 10px;
}

.sector-item p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Design for Mobile and Tablets */
@media (max-width: 768px) {
  .introduction {
    padding: 20px;
  }

  .introduction h2 {
    font-size: 2rem;
  }

  .introduction h3 {
    font-size: 1.5rem;
  }

  .sector-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sector-item i {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .introduction h2 {
    font-size: 1.8rem;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .sector-item {
    padding: 15px;
  }

  .sector-item i {
    font-size: 1.8rem;
  }
}


/* Team Section */
.team {
  padding: 3rem 1rem;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1d3557;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  max-width: 320px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.team-card img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #1d3557;
}

.team-card h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  color: #1d3557;
}

.team-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.team-card strong {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
}

.social-links {
  margin-top: 0.8rem;
}

.social-links a {
  margin: 0 0.4rem;
  color: #1d3557;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #0077b5;
  transform: scale(1.2);
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
  .team h2 {
    font-size: 1.5rem;
  }

  .team-card img {
    max-width: 140px;
    height: 140px;
  }

  .team-card {
    padding: 1.2rem;
  }
}

.partners {
  padding: 4rem 1rem;
  background-color: #f9f9fb;
  border-radius: 12px;
  text-align: center;
}

.partners h2 {
  font-size: 2rem;
  color: #0073e6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.partners-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.partner-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 115, 230, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 300px;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 115, 230, 0.15);
}

.partner-card img {
  max-width: 100px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.partner-info h3 {
  font-size: 1.1rem;
  margin: 0.3rem 0;
  color: #333;
}

.partner-info p {
  font-size: 0.95rem;
  color: #666;
}
.partner-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.partner-website {
  text-decoration: none;
  font-size: 0.9rem;
  color: #0073e6;
  font-weight: 600;
  transition: color 0.3s ease;
}

.partner-website:hover {
  color: #005bb5;
}

.linkedin-link {
  color: #0a66c2;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.linkedin-link:hover {
  color: #004182;
  transform: scale(1.1);
}


/* Responsive tweak */
@media (max-width: 600px) {
  .partners h2 {
    font-size: 1.5rem;
  }

  .partner-card {
    padding: 1.2rem;
  }

  .partner-info h3 {
    font-size: 1rem;
  }

  .partner-info p {
    font-size: 0.9rem;
  }
}
  color: #004182;
  transform: scale(1.1);
}


/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 3rem 1rem;
}

.testimonials form {
  max-width: 600px;
  margin: auto;
  background-color: #eef5fb;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

button[type="submit"] {
  background-color: #0073e6;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #005bb5;
}

/* Footer */
footer {
  background-color: #0073e6;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5rem;
    flex-direction: column;
  }

  .team-member-card {
    padding: 1rem;
  }

 .testimonials {
  background: linear-gradient(to bottom right, #f0f8ff, #ffffff);
  padding: 4rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 115, 230, 0.05);
}

.testimonials h2 {
  font-size: 2rem;
  color: #005bb5;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

#testimonial-form {
  max-width: 650px;
  margin: auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

#testimonial-form .form-group {
  margin-bottom: 1.5rem;
}

#testimonial-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

#testimonial-form textarea,
#testimonial-form input {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#testimonial-form textarea:focus,
#testimonial-form input:focus {
  border-color: #0073e6;
  box-shadow: 0 0 4px rgba(0, 115, 230, 0.2);
  outline: none;
}

.form-actions {
  text-align: right;
}

.form-actions button {
  background-color: #0073e6;
  color: white;
  border: none;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-actions button:hover {
  background-color: #005bb5;
  transform: translateY(-2px);
}

.form-actions button i {
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  .testimonials h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  #testimonial-form {
    padding: 1.5rem;
  }

  .form-actions {
    text-align: center;
  }
}
