@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --primary-color: #003147;
  --secondary-color: #03a9f4;
  --text-white: #fff;
  --text-dark: #333;
  --bg-light: #f8f9fa;
  --skill-bg: #f0f0f9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Poppins", sans-serif;
}

body {
  background: #e3edf7;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 2fr;
  box-shadow: 0 40px 60px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.container .left_Side {
  position: relative;
  background: var(--primary-color);
  padding: 40px;
}

.profileText {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profileText .imgBx {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.2);
  transition: 0.5s;
}

.profileText .imgBx:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
}

.profileText .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profileText h2 {
  color: #fff;
  font-size: 1.6em;
  margin-top: 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: 1px;
}

.profileText h2 span {
  font-size: 0.7em;
  font-weight: 400;
  color: var(--secondary-color);
}

.contacInfo {
  padding-top: 40px;
}

.title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.contacInfo ul li {
  position: relative;
  list-style: none;
  margin: 15px 0;
  display: flex;
  align-items: center;
}

.contacInfo ul li .icon {
  display: inline-block;
  width: 30px;
  font-size: 18px;
  color: var(--secondary-color);
}

.contacInfo ul li span, 
.contacInfo ul li a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95em;
}

.contacInfo ul li a:hover {
  color: var(--secondary-color);
}

.contacInfo.education li {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contacInfo.education li h5 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9em;
}

.contacInfo.education li h4 {
  color: #fff;
  font-weight: 500;
  font-size: 0.95em;
  margin: 5px 0;
}

.contacInfo.education li h4#school {
  font-weight: 300;
  opacity: 0.8;
  font-size: 0.85em;
}

.percent {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  display: block;
  margin-top: 8px;
  border-radius: 3px;
}

.percent div {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 3px;
}

.right_Side {
  padding: 50px;
  background: #fff;
}

.about {
  margin-bottom: 40px;
}

.title2 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 700;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

p {
  color: #444;
  line-height: 1.6;
  font-size: 0.95em;
}

.about .box {
  display: flex;
  margin: 25px 0;
  gap: 20px;
}

.about .box .year_company {
  min-width: 160px;
}

.about .box .year_company h5 {
  text-transform: uppercase;
  color: #666;
  font-weight: 700;
  font-size: 0.85em;
}

.about .box .text h4 {
  text-transform: uppercase;
  color: var(--secondary-color);
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 5px;
}

.skills .box {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  margin: 15px 0;
}

.skills .box h4 {
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
  font-size: 0.9em;
}

.skills .box .percent {
  background-color: var(--skill-bg);
  height: 10px;
}

.animate-bar {
  animation: loadSkill 2s ease-out forwards;
}

@keyframes loadSkill {
  from { width: 0; }
}

.interest ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.interest ul li {
  list-style: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 0.9em;
  color: #555;
}

.interest ul li i {
  color: var(--secondary-color);
  font-size: 1.1em;
  margin-right: 10px;
}

@media (max-width: 1000px) {
  .container {
    grid-template-columns: 1fr;
  }
  .right_Side {
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .about .box {
    flex-direction: column;
    gap: 5px;
  }
  .skills .box {
    grid-template-columns: 1fr;
  }
  .interest ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
