body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #096597;
  color: #333;
}

header {
  background: #a3d2f2;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

section {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

skills ul {
  list-style-type: square;
  padding-left: 20px;
}

h2 {
  color: #007acc;
  margin-bottom: 15px;
}

.about {
  padding: 50px;
  background: #f9f9f9;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.profile-img img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-info h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #000;
}

.profile-info p {
  font-size: 16px;
  margin: 10px 0;
  color: #444;
}

.info-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.info-left, .info-right {
  width: 48%;
}

.info-left p, .info-right p {
  margin: 6px 0;
  font-size: 15px;
}

strong {
  color: #007acc;
}

.card {
  background: #e6f2ff;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #007acc;
  border-radius: 5px;
}

.gallery-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.skills {
  max-width: 900px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.skills h2 {
  font-size: 28px;
  color: #007acc;
  margin-bottom: 10px;
  border-left: 4px solid #007acc;
  padding-left: 10px;
}

.skill-container {
  display: flex;
   flex-wrap: wrap;
  gap: 20px;
}

.skill {
  width: 45%;
  position: relative;
  margin-bottom: 20px;
}

.skill span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.skill-bar {
  background: #ddd;
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}

.skill-bar .fill {
  background: #00aaff;
  height: 100%;
}

.skill .percent {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #333;
}


.gallery-container img {
  width: 30%;
  border-radius: 5px;
  object-fit: cover;
}

.certificate ul {
  padding-left: 20px;
}

footer {
  background: #0e333f;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.contact{
padding: 50px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-box {
  margin-bottom: 20px;
}

.info-box h4 {
  font-size: 18px;
  color: #007acc;
  margin-bottom: 5px;
}

.info-box p {
  margin: 0;
  color: #333;
}

.contact-form {
  flex: 2;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #00aaff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  width: 160px;
  align-self: center;
  font-size: 16px;
}

button:hover {
  background: #0088cc;
}

/* Responsive Design */
@media (max-width: 600px) {
  .gallery-container img {
    width: 100%;
  }
}

/* Additional styling for better aesthetics */
h1, h2, h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
p {
  line-height: 1.6;
}
.card:hover {
  background: #cce6ff;
  transition: background 0.3s ease;
}
.gallery-container img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.gallery-container img {
  cursor: pointer;
}
/* End of style.css */