* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #0b0a09;
  --surface: #131113;
  --border: #262019;
  --accent: #c9a45c;
  --accent2: #8a6a35;
  --gold: #c9a45c;
  --text: #efe9dd;
  --muted: #7d7566;
  --card: #17161a;
  --accent3: #c9a45c;
  --accent4: #8a6a35;
  --border2: rgba(201, 164, 92, 0.1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a0a0b;
  color: white;
  width: 100%;
  height: 90px;
  position: fixed;
  z-index: 9999;
  padding: 0 30px;
  top: 0;
}

.logo {
  cursor: pointer;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  flex-direction: row;
  margin: 10px 0;
  list-style: none;
}

.navbar .nav-links li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  list-style: none;
  margin: 0 15px;
}

.navbar .nav-links li a {
  text-decoration: none;
  font-size: 1rem;
  color: white;
  padding: 8px 12px;
  border-radius: 9px;
  transition: all 0.3s;
}
.navbar .nav-links li a:hover {
  background: #c9a45c;
  transform: translateY(-2px);
  box-shadow:
    0 0 10px rgba(201, 164, 92, 0.35),
    0 0 20px rgba(201, 164, 92, 0.25),
    0 0 40px rgba(201, 164, 92, 0.18);
}
.menu-icon {
  display: none;
  width: 35px;
  cursor: pointer;
  margin-right: 10px;
  z-index: 999;
}
.menu-icon span {
  display: block;
  height: 4px;
  width: 30px;
  margin: 6px 0;
  color: white;
  transition: 0.4s;
  border-radius: 4px;
  background-color: #ffffff;
}
.menu-icon.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-icon.active span:nth-child(2) {
  opacity: 0;
}
.menu-icon.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -7px);
}
/* ===========================
   HOME SECTION - RESPONSIVE
=========================== */

.home {
  padding: 40px;
  width: 100%;
  height: auto;
  background: #111113;
  color: white;
  margin-top: 90px;
  display: flex;
  justify-content: center;
}
.wraper {
  max-width: 1200px;
}
.home .wraper .intro {
  margin-top: 50px;
  animation: fadeleft 1s ease-in-out;
  font-size: 50px;
  margin-bottom: 70px;
  line-height: 1.2;
}

.span1 {
  color: #c9a45c;
  animation: fadein 1.5s ease-in-out;
}

.wraper h2 {
  margin-top: 10px;
  align-items: center;
  font-size: 22px;
  font-family: poppins;
}

.paragraph {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.paragraph p {
  line-height: 1.6;
  font-size: 1.1rem;
  margin-top: 20px;
  animation: fadeleft 1s ease-in-out;
  margin-bottom: 70px;
}

.paragraph .image {
  animation: fadein 1s ease-in-out;
  cursor: pointer;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.paragraph .image .image-box {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid;
}

.paragraph .image .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icons {
  display: flex;
  padding: 20px 0;
  width: 100%;
}

.btn-box {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
  align-items: center;
}
.home-btn a {
  text-decoration: none;
  margin: 10px;
}

.home-btn a .btn {
  border: 1px solid #c9a45c;
  color: white;
  background: transparent;
  padding: 12px 24px;
  border-radius: 26px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  animation: fadeleft 0.9s ease-in-out;
  white-space: nowrap;
  flex-shrink: 0;
}
.social-icon {
  display: flex;
  gap: 10px;
}
.btn:hover {
  background: transparent;
  box-shadow: 0 0 10px #7d7566;
  transform: translateY(-2px);
}

.btn-box .home-btn a .btn:active {
  transform: scale(1.05);
}

.btn-box .li,
.btn-box .li1 {
  list-style: none;
  cursor: pointer;
}

.btn-box .li a,
.btn-box .li1 a {
  text-decoration: none;
}

.social-icon .fa-brands,
.social-icon .fa-solid {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background:;
  color: white;
  font-size: 22px;
  transition: 0.35s;
  text-decoration: none;
  z-index: 99;
  flex-shrink: 0;
}

.social-icon .fa-brands:hover,
.social-icon .fa-solid:hover {
  transform: translateY(-7px);
  background: #b8903f;
}
#about {
  padding: 80px 20px;
  background: #111113;
  color: white;
}
.about1 {
  margin-left: 40px;
  font-size: 3rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.about-p {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 30px 60px 10px;
}
.skills {
  background: #0b0a09;
  color: white;
  padding: 10px 0;
  padding-bottom: 10px;
}
.start-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.start-strip .strip-wraper {
  display: grid;
  text-align: center;
  border-radius: 5px;
  padding: 10px 0;
  cursor: pointer;
  border: 1px solid #7d7566;
  animation: fadeup 0.9s ease-in-out;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.05);
}
.start-strip .strip-wraper:hover {
  box-shadow: 0 6px 20px #7d7566;
  transform: translateY(-8px);
  border-color: #c9a45c;
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.2);
}
.start-num {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  color: #c9a45c;
  animation: fadeup 0.9s ease-in-out;
}
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.start-label {
  font-size: 0.8rem;
  color: #7d7566;
  font-weight: 800;
  margin-top: 0.4rem;
  text-transform: uppercase;
  animation: fadeup 1s ease-in-out;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-img-container {
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  flex: 1;
}

.about1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
}

.about-p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 1rem;
}

.about {
  color: white;
  display: grid;
  grid-template-columns: column;
  padding-top: 50px;
  padding-bottom: 50px;
  background: #0b0a09;
}
.what-i-do {
  text-align: center;
  font-family: "cursive", sans-serif;
  font-weight: 500;
  margin-bottom: 50px;
  text-decoration: underline #7d7566;
  animation: fadeup 1s ease-in-out;
}

.services {
  padding: 80px 10%;
  background: #111113;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #8a8274;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #17161a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card i {
  font-size: 45px;
  color: #8a6a35;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #efe9dd;
}

.service-card p {
  color: #9c9484;
  line-height: 1.7;
}

/* Pricing Section */

.pricing {
  padding: 80px 10%;
  background: #111113;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.pricing p {
  color: #b8b0a0;
  margin-bottom: 50px;
  font-size: 1rem;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.price-card {
  position: relative;
  border: 1px solid #9c9484;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  overflow: hidden;
  color: #efe9dd;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(138, 106, 53, 0.18);
}

.price-card h3 {
  font-size: 1.5rem;
  color: #131113;
  margin-bottom: 15px;
}

.price-card h2 {
  color: #efe9dd;
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.price-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #3a352c;
  color: #efe9dd;
}

.price-card ul li:last-child {
  border-bottom: none;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: #8a6a35;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #a3813f;
  transform: scale(1.05);
}

/* Featured Package */

.popular {
  border: 3px solid #8a6a35;
  transform: scale(1.04);
}

.popular:hover {
  transform: scale(1.06) translateY(-10px);
}

.badge {
  position: absolute;
  top: 18px;
  right: -40px;
  background: #8a6a35;
  color: #fff;
  padding: 8px 45px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Mobile */

@media (max-width: 768px) {
  .pricing {
    padding: 60px 20px;
  }

  .pricing h2 {
    font-size: 2rem;
  }

  .price-card {
    padding: 30px 20px;
  }

  .price-card h2 {
    font-size: 1.9rem;
  }
}

.skills {
  padding: 80px 20px;
  background: #111113;
}
.skills-container {
  margin: auto;
  margin-bottom: 100px;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-subtitle {
  text-align: center;
  color: #9c9484;
  margin-bottom: 40px;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.skill-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  position: relative;
}
.skill-card:hover {
  transform: translateY(-8px);
  border-color: #c9a45c;
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.2);
}
.skill-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill-icon {
  font-size: 22px;
}
.progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c9a45c, #e2c98e);
  border-radius: 20px;
}
.percent {
  font-size: 12px;
  position: absolute;
  color: #9c9484;
  top: 15px;
  right: 15px;
}

#projects {
  padding: 80px 20px;
  background: #111113;
  color: white;
}
#projects h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}
.projects-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.project-card {
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #9c9484;
  transition: all 0.3s;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(201, 164, 92, 0.2);
}
.project-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.project-card p {
  line-height: 1.6;
  color: #d8d2c4;
}
.project-card strong {
  color: #c9a45c;
  margin-right: 10px;
}
.project-card a {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}
.project-card a:first-of-type {
  background: #c9a45c;
  color: #111113;
}
.project-card a:last-of-type {
  border: 1px solid #c9a45c;
  color: #c9a45c;
}
.project-card a:hover {
  transform: scale(1.05);
}
/* ===========================
   CONTACT SECTION
=========================== */

.contact {
  padding: 100px 8%;
  background: #111113;
  color: #fff;
}

.wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* Hero */

.hero-label,
.form-eyebrow {
  color: #c9a45c;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-title em {
  color: #c9a45c;
  font-style: normal;
}

.hero-desc {
  color: #d8d2c4;
  line-height: 1.8;
  margin-top: 30px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
}

.status.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c9a45c;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

/* Contact Cards */

.channels {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.channel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  color: white;
  transition: 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.channel-card:hover {
  transform: translateY(-8px);
  background: #17161a;
  border-color: #c9a45c;
}

.channel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c9a45c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
}

.channel-info {
  flex: 1;
  margin-left: 20px;
}

.channel-label {
  font-size: 0.9rem;
  color: #9c9484;
}

.channel-value {
  font-weight: 600;
  margin-top: 5px;
}

.channel-arrow {
  font-size: 1.5rem;
}

/* Divider */

.divider {
  height: 1px;
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.1);
}

/* Form */

.form-section {
  background: #131113;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.form-title {
  font-size: 2.2rem;
  margin-bottom: 35px;
}

.form-title em {
  color: #c9a45c;
  font-style: normal;
}

.contactform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
}

.field-full {
  grid-column: 1/3;
}

.contactform label {
  margin-bottom: 8px;
  color: #d8d2c4;
}

.contactform input,
.contactform select,
.contactform textarea {
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #17161a;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contactform input:focus,
.contactform select:focus,
.contactform textarea:focus {
  border: 2px solid #c9a45c;
}

textarea {
  resize: none;
  min-height: 180px;
}

.submit-row-field-full {
  grid-column: 1/3;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 12px;
  background: #c9a45c;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #b8903f;
  transform: translateY(-3px);
}

.submit-note {
  display: block;
  margin-top: 15px;
  color: #9c9484;
  text-align: center;
}
.error {
  display: block;
  margin-top: 6px;
  min-height: 18px;
  color: #b5453f;
  font-size: 0.85rem;
  font-weight: 500;
}

.input-error {
  border: 2px solid #b5453f !important;
}

.input-success {
  border: 2px solid #c9a45c !important;
}

.success-msg {
  grid-column: 1/3;
  margin-top: 20px;
  padding: 15px;
  background: #2e2412;
  border-radius: 10px;
  display: none;
}

/* Responsive */

@media (max-width: 900px) {
  .wrapper {
    grid-template-columns: 1fr;
  }

  .contactform {
    grid-template-columns: 1fr;
  }

  .field-full,
  .submit-row-field-full {
    grid-column: 1;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}
.success-msg {
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.8rem;
  background: rgba(201, 164, 92, 0.18);
  border: 1px solid rgba(201, 164, 92, 0.18);
  border-radius: 12px;
  grid-column: 1/-1;
  margin-top: 1rem;
}

/*=========================
        FOOTER
==========================*/

.footer {
  background: #0a0a0b;
  color: #fff;
  padding: 70px 8% 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer h2 {
  color: #c9a45c;
  margin-bottom: 18px;
}

.footer h3 {
  margin-bottom: 20px;
  color: #c9a45c;
}

.footer p {
  color: #d8d2c4;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  text-decoration: none;
  color: #d8d2c4;
  margin: 8px 0;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c9a45c;
  transform: translateX(6px);
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.social-icons a {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #17161a;
  color: white;
  font-size: 20px;
  transition: 0.35s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #c9a45c;
  transform: translateY(-6px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #9c9484;
  font-size: 0.95rem;
}
.footer-bottom p {
  color: #c9a45c;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}
@media (max-width: 768px) {
  .navbar {
    height: 70px;
    padding: 0 15px;
  }

  .logo {
    margin-left: 0;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .nav-links {
    position: absolute;
    right: -100%;
    background: #141210;
    width: 100%;
    flex-direction: column;
    display: none;
    border-radius: 8px;
    padding: 20px;
    gap: 10px;
  }

  .nav-links.active {
    right: 10px;
    display: flex;
    z-index: 999;
  }

  .navbar .nav-links li {
    margin: 8px 0;
  }

  .navbar .nav-links li a {
    font-size: 0.95rem;
    padding: 10px;
    width: 100%;
    text-align: center;
  }

  .navbar .nav-links li a:hover {
    background: none;
    border: 2px solid #c9a45c;
    box-shadow: 0 0 10px #c9a45c;
  }

  .menu-icon {
    display: flex;
  }

  .home {
    padding: 30px 20px;
    margin-top: 70px;
  }

  .home .wraper .intro {
    margin-top: 20px;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .paragraph {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .paragraph p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .paragraph .image {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
  }

  .paragraph .image .image-box {
    width: 180px;
    height: 180px;
  }
  .home-btn {
    display: flex;
  }
  .home-btn a .btn {
    text-decoration: none;
    font-size: 20px;
    padding: 10px;
  }

  .fa-brands,
  .fa-solid {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .about-content {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .about-img-container {
    flex: 0 0 auto;
    width: 220px;
    height: 220px;
  }

  #about {
    padding: 60px 20px;
  }

  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    display: flex;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    display: flex;
    width: 100%;
    background: #0b0a09;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    z-index: 99;
  }
  .nav-links {
    position: absolute;
    top: -100px;
    background: #141210;
    width: 100%;
    flex-direction: column;
    display: none;
    border-radius: 8px;
  }
  .nav-links.active {
    top: 100%;
    display: flex;
  }
  .nav-links li a:hover {
    background: none;
  }
  .nav-links li a {
    color: white;
    width: 100%;
    text-align: center;
    background: transparent;
  }
  .menu-icon {
    display: block;
    z-index: 999;
    margin: 20px;
  }
  .menu-icon span {
    background: white;
  }
  .logo {
    font-size: 15px;
    margin: 20px;
  }
  .nav-links.active {
    display: flex;
  }

  .home .wraper .intro {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .paragraph p {
    font-size: 22px;
    font-weight: 400;
    margin-top: 20px;
  }
  .paragraph .image {
    position: relative;
    animation: fadein 1s ease-in-out;
    cursor: pointer;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    margin-left: 8px;
  }
  .paragraph .image .image-box {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c9a45c;
  }
  .paragraph .image .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .icons .btn-box {
    display: flex;
    align-items: center;
  }
  .btn-box {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-box .btn {
    margin: 1px;
    gap: 0;
    border-radius: 13px;
    border: 1px solid #c9a45c;
    padding: 6px 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #c9a45c;
  }
  .btn-box .btn:hover {
    background: #c9a45c;
    color: black;
    font-weight: 500;
    transform: scale(1.05);
  }

  .wraper h2 {
    margin: 5px;
    align-items: center;
    font-size: 18px;
    font-family: poppins;
    line-height: 1.4;
  }
  .btn-box a {
    cursor: pointer;
    align-items: center;
    color: white;
    margin: 0 9px;
    font-size: 35px;
  }

  .btn-box .fa-brands,
  .fa-solid {
    transition: all 0.3s;
    align-items: center;
    font-size: 28px;
  }
  .start-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
  }
  .start-num {
    font-weight: 600;
    font-size: 2rem;
    line-height: 1;
    color: #c9a45c;
    animation: fadeup 0.9s ease-in-out;
  }
  .about1 {
    margin-left: 40px;
    font-size: 35px;
    margin-bottom: 20px;
  }
  .about-p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 30px 60px 10px;
  }
  .about {
    display: grid;
    padding: none;
  }
  .about .what-i-do {
    font-size: 20px;
    text-decoration: underline #c9a45c;
    text-align: center;
    margin-bottom: 30px;
  }
  .about .container1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 15px;
    margin: 0;
  }
  .container2 {
    border-radius: 15px;
  }
  .skills {
    padding: 80px 20px;
  }
  .skills-container {
    max-width: 1100px;
    margin: auto;
    margin-bottom: 70px;
  }
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  .section-subtitle {
    text-align: center;
    color: #9c9484;
    margin-bottom: 40px;
  }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .skill-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
    position: relative;
  }
  .skill-card:hover {
    transform: translateY(-8px);
    border-color: #c9a45c;
    box-shadow: 0 10px 30px rgba(201, 164, 92, 0.2);
  }
  .skill-header {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .skill-icon {
    font-size: 22px;
  }
  .progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
  }
  .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c9a45c, #e2c98e);
    border-radius: 20px;
  }
  .percent {
    font-size: 12px;
    position: absolute;
    color: #9c9484;
    top: 15px;
    right: 15px;
  }
  .contact {
    width: 100%;
    background: var(--bg);
    display: grid;
    padding: 10px;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    color: white;
  }

  .hero {
    padding: 1rem 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    align-items: end;
    overflow: hidden;
  }
}

/*OTHER FEATURES*/
.hidden {
  opacity: 0;
  transform: translateY(70px);
  transition: 1s;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   KEYFRAME ANIMATIONS
=========================== */

/* Staggered card entrance - reuses the existing .hidden/.show classes,
   just adds a per-card delay so grids cascade in rather than moving as one block */
.service-card.hidden,
.skill-card.hidden,
.project-card.hidden {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.services-grid .service-card:nth-child(1) {
  transition-delay: 0s;
}
.services-grid .service-card:nth-child(2) {
  transition-delay: 0.1s;
}
.services-grid .service-card:nth-child(3) {
  transition-delay: 0.2s;
}
.services-grid .service-card:nth-child(4) {
  transition-delay: 0.3s;
}
.services-grid .service-card:nth-child(5) {
  transition-delay: 0.4s;
}
.services-grid .service-card:nth-child(6) {
  transition-delay: 0.5s;
}

.skills-grid .skill-card:nth-child(1) {
  transition-delay: 0s;
}
.skills-grid .skill-card:nth-child(2) {
  transition-delay: 0.1s;
}
.skills-grid .skill-card:nth-child(3) {
  transition-delay: 0.2s;
}
.skills-grid .skill-card:nth-child(4) {
  transition-delay: 0.3s;
}
.skills-grid .skill-card:nth-child(5) {
  transition-delay: 0.4s;
}

.projects-grid .project-card:nth-child(1) {
  transition-delay: 0s;
}
.projects-grid .project-card:nth-child(2) {
  transition-delay: 0.15s;
}
.projects-grid .project-card:nth-child(3) {
  transition-delay: 0.3s;
}
.projects-grid .project-card:nth-child(4) {
  transition-delay: 0.45s;
}

/* Skill bars fill in on scroll instead of appearing pre-filled.
   Each bar reads its target width from the --w custom property set inline. */
@keyframes fillWidth {
  from {
    width: 0;
  }
  to {
    width: var(--w, 0%);
  }
}

.progress-bar {
  width: 0;
  animation: fillWidth 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}

.skill-card.show .progress-bar {
  animation-play-state: running;
}

/* Gentle ambient float on the profile photo - subtle, not a gimmick */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.paragraph .image-box {
  animation: floatY 5s ease-in-out infinite;
}

/* Soft ring pulse behind the profile photo, echoes the hero-status dot
   without repeating the old neon-green glow */
@keyframes ringPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 164, 92, 0.35);
  }
  100% {
    box-shadow: 0 0 0 22px rgba(201, 164, 92, 0);
  }
}

.paragraph .image {
  position: relative;
}

.paragraph .image::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: ringPulse 2.8s ease-out infinite;
  pointer-events: none;
}

/* Gold sheen sweep on primary buttons - triggers once per hover,
   reads as refined rather than a loading shimmer */
@keyframes sheen {
  from {
    transform: translateX(-120%) skewX(-15deg);
  }
  to {
    transform: translateX(220%) skewX(-15deg);
  }
}

.btn-submit,
.btn-box .btn {
  position: relative;
  overflow: hidden;
}

.btn-submit::after,
.btn-box .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-120%) skewX(-15deg);
  pointer-events: none;
}

.btn-submit:hover::after,
.btn-box .btn:hover::after {
  animation: sheen 0.9s ease forwards;
}

/* Icon lift on service card hover - small, controlled micro-interaction */
@keyframes iconPop {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(-6deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.service-card:hover i {
  animation: iconPop 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar,
  .paragraph .image-box,
  .paragraph .image::before,
  .btn-submit::after,
  .btn-box .btn::after,
  .service-card:hover i {
    animation: none !important;
  }
}
