* {
  margin: 3px;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

:root {
  --accent: #4ad6bd;
  --accent-2: #00b7ff;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-border: rgba(255, 255, 255, 0.15);
  --text-main: #e9f2ff;
  --text-soft: #cbd9ef;
}

body {
  width: 100%;
  color: var(--text-main);
  background: radial-gradient(
    circle at 10% 0%,
    #0e1c35 0%,
    #040b1e 55%,
    #02050f 100%
  );
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

header {
  background: linear-gradient(
    to right,
    #0e161b,
    #162022,
    #232e30,
    #314048,
    #56666f
  );
  color: #09ee61;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 30px 0;
}

.nav-links ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

header nav ul li a {
  margin: 0 10px;
  padding: 0 5px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
header nav ul li a.a2 {
  color: #ffee63;
}

header nav ul li a.a1::before {
  content: "";
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background-color: #ffee63;
}
header nav ul li a.a2::before {
  content: "";
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  background-color: #fff;
}

header nav ul li a.a1:hover::before {
  width: 100%;
}
header nav ul li a.a2:hover::before {
  width: 100%;
}

.btn {
  width: 90px;
  height: 35px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d40700, #fb4200);
  color: #fff;
  outline: none;
  border: none;
  font-size: 18px;
  padding: 0 5px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  background-color: #b20600;
  color: #cec9c9;
  border: 2px solid #d40700;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 7, 0, 0.35);
}

main {
  background: linear-gradient(
    to right,
    #030a1c,
    #051024,
    #061831,
    #0b1c3e,
    #11242a
  );
  color: var(--text-main);
  padding: 0 60px;
}

hr {
  border: 0;
  height: 2px;
  width: min(420px, 100%);
  margin: 0.4rem auto 1.2rem;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent),
    transparent
  );
}

.content {
  min-height: 80vh;
  position: relative;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(2, 8, 25, 0.5);
}

.content .left h2 {
  font-size: clamp(28px, 4vw, 48px);
}

.content .left p {
  max-width: 640px;
  line-height: 1.7;
  color: var(--text-soft);
}

.content .right img {
  width: min(65%, 360px);
  max-width: 380px;
  position: relative;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.content .right img:hover {
  filter: drop-shadow(16px 5px 20px rgb(222, 218, 135));
}

h4,
p {
  font-family: "Poppins", sans-serif;
}

.about-me-sec {
  min-height: 80vh;
}

.about-sec,
.portfolio,
.experience,
.contact-us {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(2, 8, 25, 0.5);
  padding: 20px;
}

.about-me-sec hr {
  border: 2px solid red;
  margin-bottom: 2rem;
}

.about-content img {
  width: 100%;
}

.about-content ul {
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--text-soft);
  line-height: 1.8;
}
.song {
  margin-bottom: 20px;
}

audio {
  width: 100%;
}

.about-content span {
  color: #c6dce4;
}

.portfolio-sec {
  min-height: 90vh;
}

.portfolio > h3 {
  color: #fff;
  margin-bottom: 50px;
}

.portfolio-child1 img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
}

.portfolio-child2 img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
}

.portfolio-child3 img {
  width: 100%;
  max-width: 400px;
  height: 260px;
  object-fit: cover;
}

.portolio-parent {
  gap: 30px;
}

.portfolio-child1,
.portfolio-child2,
.portfolio-child3 {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  cursor: pointer;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.portfolio-child1:hover {
  transform: translateY(-7px);
  background-color: rgb(29, 27, 27);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.portfolio-child2:hover {
  transform: translateY(-7px);
  background-color: rgb(56, 81, 78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.portfolio-child3:hover {
  transform: translateY(-7px);
  background-color: rgb(170, 189, 197);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.portfolio-child h3 {
  margin-top: 10px;
}

.portfolio-child p {
  margin-top: 5px;
  line-height: 1.4;
  text-align: left;
  color: #e4eef9;
  padding-left: 10px;
  padding-bottom: 10px;
}

.portfolio-child button {
  margin: 15px;
}

.experience-sec {
  min-height: 50vh;
  color: #fff;
}

.experience {
  padding: 0 30px 0 30px;
}

.experience-details {
  padding-bottom: 20px;
  margin-top: 16px;
  gap: 16px;
}

.col {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 20px 16px;
  min-width: 180px;
  flex: 1;
}

.col h3 {
  color: var(--accent);
  font-size: 28px;
}

.col p {
  padding-top: 14px;
  text-transform: uppercase;
}

.contact-us-sec {
  min-height: 90vh;
  padding: 35px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  margin-top: 2rem;
}

.contact-info-card,
.form-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.contact-info-card h3,
.form-card h3 {
  color: #89f7df;
  margin-bottom: 12px;
}

.contact-info-card h5 {
  font-size: 16px;
  margin: 8px 0;
}

.contact-info-card a {
  color: #8fd6ff;
}

.contact-info-card iframe {
  margin-top: 12px;
  border-radius: 12px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-weight: 700;
  color: #f7f3f3;
  letter-spacing: 0.2px;
}

.field-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  color: #102033;
  font-size: 16px;
  padding: 10px 12px;
}

.field-input:focus {
  border-color: #4ad6bd;
  box-shadow: 0 0 0 3px rgba(74, 214, 189, 0.2);
}

.field-textarea {
  min-height: 110px;
  resize: vertical;
}

.radio-group {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
}

.radio-group legend {
  font-weight: 700;
  color: #f7f3f3;
  padding: 0 6px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 20px;
}

.radio-group input[type="radio"] {
  margin: 0;
}

.form-actions {
  text-align: center;
}

.feedback-wrapper {
  max-width: 760px;
}

.feedback-card {
  margin: 2rem auto 0;
}

.feedback-form {
  max-width: 640px;
  margin: 0 auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

th,
td {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

th {
  background: rgba(0, 183, 255, 0.14);
  color: #dff7ff;
}

img,
iframe {
  max-width: 100%;
}

.contact-us h3 {
  color: #f0e6e6;
}

.contact-details {
  padding-top: 4rem;
}

.contact-details h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
}

#click,
.menu-btn i {
  display: none;
}

.layout {
  width: 80%;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.uppercase {
  text-transform: uppercase;
}

.f-w-500 {
  font-weight: 500;
}

.f-w-600 {
  font-weight: 600;
}

.f-w-700 {
  font-weight: 700;
}

.letter-spacing2 {
  letter-spacing: 2px;
}

.btn2 {
  width: 140px;
}

.flex2 {
  flex: auto;
}

.my-t-10 {
  margin-top: 10px;
}

.my-t-20 {
  margin-top: 20px;
}

.pd-t-30 {
  padding-top: 30px;
}

.w55 {
  width: 55%;
}

.text-center {
  text-align: center;
}

.pd-30 {
  padding: 30px;
}

footer {
  background-image: url("../static/footer_bg_image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  color: burlywood;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media only screen and (max-width: 1024px) {
  main {
    padding: 0 24px;
  }

  .layout {
    width: 92%;
  }

  .content {
    min-height: auto;
    gap: 20px;
  }

  .portolio-parent {
    flex-wrap: wrap;
    justify-content: center;
  }

  .portfolio-child1,
  .portfolio-child2,
  .portfolio-child3 {
    width: 100%;
    max-width: 340px;
  }

  .about-sec,
  .portfolio,
  .experience,
  .contact-us,
  .content {
    padding: 16px;
  }

  .experience-details {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .contact-details {
    gap: 20px;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .logo h1 {
    font-size: 26px;
  }

  .nav-links ul {
    justify-content: center;
  }

  header nav ul li a {
    font-size: 16px;
  }

  main {
    padding: 0 14px;
  }

  .content {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px 0;
  }

  .content .left p {
    margin: 0 auto;
  }

  .content .right,
  .content .left {
    width: 100%;
  }

  .content .right img {
    width: min(85%, 280px);
  }

  .about-me-sec,
  .portfolio-sec,
  .experience-sec,
  .contact-us-sec {
    min-height: auto;
  }

  .about-content,
  .contact-details {
    flex-direction: column;
  }

  .contact-info-card,
  .form-card {
    padding: 16px;
  }

  .field-input {
    font-size: 15px;
  }

  .radio-group label {
    font-size: 18px;
  }

  .experience {
    padding: 0;
  }

  .experience-details {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .col {
    width: 100%;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
