/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #eaf4fc;
  color: #1c1c1c;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
  flex-wrap: wrap;
}

header h1 {
  color: #fff;
  margin-left: 1rem;
  font-size: 2rem;
}

header img {
  width: 120px;
  border-radius: 50%;
  border: 3px solid white;
}

.contact-info {
  text-align: right;
  flex-grow: 1;
}

.contact-info p,
.contact-info a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  font-weight: 500;
}

section {
  padding: 2rem;
  background: #ffffff;
  margin: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: #173b6c;
}

hr {
  margin: 1.5rem 0;
  border: 1px solid #cbd5e1;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background-color: #f0f8ff;
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 1rem;
}

td {
  padding: 0.75rem;
  border: 1px solid #cbd5e1;
  text-align: left;
}

ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #333;
}

.certificate-link i,
.project-links i {
  margin-left: 8px;
}

blockquote {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #2563eb;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to right, #1e3c72, #2a5298);
  color: white;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.6);
}

.social-icons a {
  margin: 0 0.5rem;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #93c5fd;
}

h2 {
  color: #173b6c;
  position: relative;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #2563eb;
  border-radius: 2px;
  transition: width 0.4s ease;
}

h2:hover::after {
  width: 100px;
}

h2:hover {
  color: #1d4ed8;
  transform: translateX(5px);
}

marquee{
    background-color: pink;
}