/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px ;
}

/* Header */
.header {
  background: linear-gradient(135deg, #0066cc, #004080);
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.header .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Sections */
section {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

section h2 {
  color: #004080;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

section p {
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

ul li::before {
  content: "✔";
  color: #0066cc;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}


/* .social-links a {
  display: inline-block;
  margin-right: 15px;
  font-size: 0.95rem;
} */

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-links img.social-icon {
  width: 22px;
  height: 22px;
  filter: invert(1); /* makes icons white */
  transition: transform 0.2s, filter 0.3s;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0066cc;
  color: #ccc;  /* text color */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.3s, transform 0.2s;
}

.social-links a:hover {
  background: #fff;
  color: #fff;              /* only text changes */
  transform: scale(1.1);
}

.social-links a:hover img.social-icon {
  filter: invert(0); /* turn icons dark blue on hover */
}

.social-links svg.social-icon {
  width: 22px;
  height: 22px;
  color: #fff;   /* makes icons white by default */
  /* transition: fill 0.3s; */
  /* transition: transform 0.2s, filter 0.3s; */
}

.social-links a:hover svg.social-icon {
  color: #0066cc; /* turn blue on hover */
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #fff;
  /* margin: 8px; */
  transition: fill 0.3s;
}



