.dml-nav {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 15px 40px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.dml-nav.scrolled {
  background-color: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 70px;
  padding: 10px 40px;
}

.dml-nav .logo img {
  transition: all 0.3s ease;
}

.dml-nav.scrolled .logo img {
  height: 40px !important;
}

.dmlLoader {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  background-color: #F5F5F7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loader-logo-container {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 100px;
  height: 100px;
  z-index: 2;
  position: absolute;
}

.spinner-rounded-comet {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #6166E4 94%, #0000) top/18px 18px no-repeat,
    conic-gradient(#0000 30%, #6166E4);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 18px), #000 0);
  mask: radial-gradient(farthest-side, #0000 calc(100% - 18px), #000 0);
  animation: spinner-rounded-comet-anim 1.2s infinite linear;
}

@keyframes spinner-rounded-comet-anim {
  100% {
    transform: rotate(1turn);
  }
}

.loading-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.hidden {
  overflow: hidden;
}

.loading-bar {
  width: 320px;
  height: 45px;
  border-radius: 30px;
  background: transparent;
  border: 2px solid rgba(97, 103, 229, 0.4);
  padding: 5px;
  box-shadow: 0 0 20px rgba(97, 103, 229, 0.2);
}

.loading-bar .loaderFill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #8B5CF6, #6167E5, #5CACCB);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.1s ease;
  min-width: 50px;
}

.loading-percent {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.dml-nav .dml-gap {
  gap: 32px;
}

.searchIcon i {
  font-size: 1.3em;
  color: var(--text-color-light);
}

.dml-menuIcon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px 2px;
  padding: 15px 12px;
  flex-wrap: wrap;
  cursor: pointer;
}

.dml-menuIcon span {
  width: 9px;
  height: 9px;
  border: solid 2px var(--secondary-color);
  border-radius: 50%;
  background-color: var(--text-color-light);
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
  justify-content: start;
  gap: 5px;
  font-size: 2.5em;
  color: var(--text-color-light);
  font-weight: 700;
  text-transform: uppercase;
}

.logo img {
  width: 32px;
}

.dml-navLinks {
  padding-right: 90px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.dml-navLinks li {
  font-size: 1.3em;
  font-weight: 200;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  transition: var(--transitionFast);
}

.dml-navLinks li a {
  color: var(--text-color-light);
  text-decoration: none;
}

.dml-navLinks li span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-color);
  pointer-events: none;
  clip-path: circle(0% at 50% 100%);
  transition: var(--transitionFast);
}

.dml-navLinks li:hover span {
  clip-path: circle(100% at 50% 100%);
}

.dml-navLinks li:after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: var(--text-color-light);
  display: inline-block;
}

.dml-navLinks li:last-child::after {
  display: none;
}

.dml-hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-bottom: 140px;
  justify-content: center;
}

.navGap {
  height: 80px;
}

.dml-hero::before {
  content: "";
  width: 100%;
  height: 95%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../../public/images/hero.jpg);
  background-size: cover;
  z-index: 2;
  opacity: 0.7;
}

.dml-hero::after {
  content: "";
  width: 100%;
  height: 95%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--secondary-color);
  z-index: 1;
}

.heroTag {
  width: max-content;
  font-size: 1.05em;
  font-weight: 400;
  color: var(--text-color-dark);
  background-color: var(--primary-color);
  height: 40px;
  text-transform: uppercase;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 21px;
}

.heroTag::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  background-color: var(--text-color-light);
}

.dml-headerSlider {
  z-index: 3;
  width: 100%;
  height: auto;
}

.singleSlide {
  width: 100%;
  min-height: 200px;
  padding: 45px;
  background-color: var(--secondary-color);
  border-radius: 25px;
  transition: var(--transition);
  --hoverHeight: 180px;
}

.heroContent {
  margin-top: 180px;
  margin-bottom: 180px;
}

.singleSlide header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 70px;
  border-bottom: solid 2px rgb(21, 21, 34);
}

.hoverSlide {
  height: 0;
  transition: var(--transition);
  overflow: hidden;
}

.singleSlide:hover .hoverSlide {
  height: var(--hoverHeight);
}

.singleSlide header img {
  width: 70px;
  height: 80px;
}

.singleSlide header a {
  font-size: 1.55em;
  color: var(--primary-color);
  text-decoration: none;
  transform: rotate(-45deg);
}

.singleSlide .dml-h5 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 5px;
}

.singleSlide>.hoverSlide a {
  font-size: 1.25em;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

.singleSlide>.hoverSlide a i {
  margin-left: 5px;
  transform: rotate(-45deg);
}

.dml-headerSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.dml-email {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  font-size: 17.5px;
  color: rgb(34, 38, 39);
  text-decoration: none;
  line-height: 1;
}

.dml-email i {
  font-size: 19px;
}

.dml-progress {
  width: 100%;
  height: auto;
}

.dml-progress header {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
}

.dml-progress header img {
  width: 52px;
  height: 55px;
  object-fit: contain;
}

.progressBar {
  background-color: rgb(220, 220, 220);
  height: 22px;
  width: 100%;
  border-radius: 11px;
  overflow: hidden;
}

.progressBar .inner {
  width: 0;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: inherit;
  font-size: 12px;
  font-weight: bold;
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 8px;
  transition: width 1s ease-out;
}

.dml-progress .dml-desc {
  font-weight: bold;
  font-family: var(--font-heading);
  margin-top: 16px;
}

.dml-goals {
  background-color: var(--secondary-color);
  background-image: url(../../../public/images/pattern.png);
  background-size: cover;
}

.progressHisto {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 10px;
  height: 200px;
  margin-top: 15px;
}

.histoSingle {
  flex: 1 0 0;
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
  display: flex;
  flex-direction: column;
  height: 0;
  justify-content: end;
  align-items: center;
}

.histoSingle {
  font-size: 20px;
  font-weight: bold;
  font-family: var(--font-body);
  text-align: center;
  line-height: 1;
  padding-top: 25px;
  transition: var(--transition);
}

.histoSingle span {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.fill {
  width: 100%;
  height: 0;
  position: relative;
  transition: var(--transition);
}

.fill::before {
  content: "";
  width: 1px;
  height: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(0, 0, 0);
  opacity: 0.4;
}

.histo1 {
  background-color: rgb(85, 153, 230);
}

.histo2 {
  background-color: rgb(230, 85, 157);
}

.histo3 {
  background-color: rgb(230, 187, 85);
}

.growthList li {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 15px;
  font-size: 1.4em;
  font-weight: 500;
  color: var(--text-color-light);
  line-height: 1;
  margin-bottom: 15px;
}

.growthList li i {
  color: var(--primary-color);
  font-size: 1.2em;
}

.sectionBanner {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 105%;
  width: 50%;
}

.sectionBanner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dml-skills {
  width: 100%;
  height: auto;
  background-image: url(../../../public/images/pattern2.png);
  background-color: rgb(246, 246, 246);
}

.dml-goals {
  margin-bottom: 0;
}

.skilSlider {
  width: 100%;
  height: auto;
  margin: 55px 0;
}

.skillSingle {
  width: 100%;
  height: 105px;
  border-radius: 52.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background-color: var(--text-color-light);
  gap: 15px;
}

.skillSingle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.skillSingle p {
  font-size: 1.6em;
  font-weight: 900;
  color: var(--text-color-dark);
  font-family: var(--font-body);
  margin: 0;
}

.skilSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.skillContact {
  font-size: 1.25em;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-color-dark);
  text-align: center;
}

.skillContact a {
  text-decoration: none;
  font-weight: 900;
  color: var(--secondary-color);
  border-bottom: solid 1px var(--text-color-grey);
}

.dml-heroSocials {
  position: absolute;
  top: 35%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 20px;
  z-index: 2;
  max-width: 1710px;
  width: 100%;
  align-items: end;
}

.dml-heroSocials a {
  font-size: 18px;
  color: var(--text-color-light);
}

.portFolioSingle {
  width: 100%;
  height: auto;
  padding: 30px 50px;
  border-radius: 10px;
  background-color: rgb(239, 230, 217);
  margin-top: 40px;
  text-align: center;
}

.portFolioTags {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.tagSingle {
  width: max-content;
  height: auto;
  padding: 5px 17px;
  border-radius: 20px;
  border: solid 2px var(--secondary-color);
  color: var(--secondary-color);
  font-size: 18px;
  text-transform: capitalize;
  font-weight: bold;
}

.portFolioSingle img {
  width: 90%;
  max-height: 470px;
  margin: 0 auto;
  text-align: center;
  margin-top: 65px;
}

.portFolioSingle h5 {
  font-size: 2.18em;
}

.portfolioLink {
  min-width: 90px;
  height: 90px;
  border-radius: 50%;
  border: solid 1px var(--secondary-color);
  display: grid;
  place-content: center;
  font-size: 18px;
  text-decoration: none;
  color: var(--secondary-color);
}

.pricingSingle {
  width: 100%;
  height: auto;
  padding: 55px 50px;
  margin-top: 45px;
  border-radius: 20px;
  background-color: var(--text-color-light);
  box-shadow: 0px 3px 60px 0px rgba(32, 42, 181, 0.11);
}

.pricingSingle h5.small {
  font-size: 2.5em;
}

.pricingSingle .discount {
  padding: 8px 20px;
  border-radius: 18px;
  background-color: var(--secondary-color);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color-light);
}

.pricingSingle h5.large {
  font-size: 3.18em;
}

.borderHeading {
  padding-top: 16px;
  border-top: solid 1px var(--secondary-color);
}

.pricing h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pricing h5 span {
  font-size: 16px;
  font-weight: 600;
}

.pricingList {
  width: 100%;
}

.pricingList li {
  font-size: 16px;
  font-family: var(--font-body);
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}



.dml-pricing::before {
  content: "";
  width: 100%;
  background-color: var(--text-color-dark);
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../../public/images/pattern.png);
  background-size: cover;
}

.pricingList li::before {
  content: "\f00c";
  font-size: 18px;
  color: rgb(255, 130, 87);
}

.pricingBtn {
  width: 100%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 65px;
  border-radius: 33px;
  margin-top: 25px;
  border: solid 1px transparent;
  background-color: var(--secondary-color);
  font-size: 17px;
  font-weight: bold;
  color: var(--text-color-light);
}

.blogSingle {
  width: 100%;
  height: auto;
  padding: 15px 20px;
  border: solid 2px rgb(221, 221, 221);
  border-radius: 25px;
  background-color: var(--text-color-light);
}

.blogImg {
  width: 100%;
  border-radius: 25px;
  background-color: rgb(37, 35, 35);
  height: 255px;
  position: relative;
}

.blogImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blogTag {
  padding: 11px 22px;
  background-color: rgb(252, 202, 68);
  font-size: 15px;
  font-weight: bold;
  color: var(--text-color-dark);
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 18px;
}

.blogDate {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color-dark);
  margin: 15px 0;
}

.morePost {
  font-weight: 600;
  font-size: 19px;
  color: var(--text-color-dark);
  text-transform: uppercase;
  text-align: center;
  display: block;
  width: 100%;
  margin: 40px 0;
  text-decoration: none;
}

.morePost i {
  margin-left: 5px;
}

.socialSingle {
  width: 100%;
  position: relative;
  height: 93px;
  border-radius: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  gap: 10px;
  font-size: 25px;
  font-weight: 700;
  color: var(--text-color-light);
  text-transform: uppercase;
  text-decoration: none;
  margin: 15px 0;
}

.socialSingle i {
  transform: rotate(-45deg);
}

.s1 {
  background-color: #1877F2;
  /* Facebook Blue */
  transition: all 0.3s ease;
}

.s1:hover {
  background-color: #0d65d9;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.s2 {
  background-color: #E4405F;
  /* Instagram Pink - Flat */
  transition: all 0.3s ease;
}

.s2:hover {
  background-color: #d62e4c;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.s3 {
  background-color: #0A66C2;
  /* LinkedIn Blue */
  transition: all 0.3s ease;
}

.s3:hover {
  background-color: #0856a3;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.4);
}

.s4 {
  background-color: #24292e;
  /* GitHub Dark */
  transition: all 0.3s ease;
}

.s4:hover {
  background-color: #1a1e22;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(36, 41, 46, 0.4);
}

.inputField {
  width: 100%;
  height: 62px;
  background-color: rgb(241, 248, 252);
  margin-bottom: 20px;
  border-radius: 30px;
  position: relative;
}

.inputField input,
.inputField select,
.inputField textarea {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: inherit;
  font-size: 16px;
  border: 0;
  color: rgb(159, 164, 175);
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 30px;
}

.inputField select {
  appearance: none;
  cursor: pointer;
}

.inputField.textareaField {
  height: 140px !important;
}

.inputField.textareaField textarea {
  padding-top: 30px;
  resize: none;
}

.inputField span {
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-color: rgb(209, 238, 255);
  color: var(--text-color-dark);
  font-size: 15px;
  display: grid;
  place-content: center;
}

.inputField input::placeholder,
.inputField select::placeholder,
.inputField textarea {
  font-size: 16px;
  color: rgb(159, 164, 175);
  text-transform: uppercase;
  font-weight: 400;
}

.dml-form {
  background-color: rgb(27, 27, 26);
  background-image: url(../../../public/images/pattern3.png);
  background-size: cover;
}

.dml-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.dml-btn i {
  font-size: 12px;
  margin-right: 12px;
  transform: rotate(-45deg);
}

.dml-footer {
  width: 100%;
  height: auto;
  background-color: var(--secondary-color);
}

.footerInner {
  max-width: 1620px;
  margin-left: auto;
  overflow: hidden;
  height: auto;
}

.footerHeading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color-light);
  text-transform: uppercase;
  margin-bottom: 33px;
}

.footerLinks li {
  padding: 15px 0;
  border-bottom: solid 1px rgb(43, 43, 43);
}

.footerLinks li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footerLinks li a {
  font-size: 18px;
  font-family: var(--font-body);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.footerLinks li a img {
  width: 14px;
}

.footerTag {
  font-weight: 200;
  font-size: 20px;
  color: var(--primary-color);
}

.Footergallery {
  width: 100%;
  height: 100px;
  margin: 20px 0;
}

.Footergallery .swiper {
  width: 100%;
  height: 100%;
}

.Footergallery .swiper>.swiper-wrapper {
  transition-timing-function: linear;
}

.Footergallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-socialSingle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 600;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-socialSingle i {
  font-size: 20px;
  color: var(--primary-color);
}

.footerSocial {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
  margin-top: 15px;
}

.footer-socialSingle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-socialSingle:hover {
  color: var(--primary-color);
}

.footer-email {
  display: block;
  font-size: 2.2em;
  font-weight: 600;
  margin: 10px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: var(--primary-color);
}

.copyright-bottom {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color-light);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Secret Admin Links - Easter Egg Style */
.admin-secret-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.admin-secret-links .secret-btn {
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 12px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.admin-secret-links .secret-btn:hover {
  color: var(--primary-color);
  background-color: rgba(97, 102, 228, 0.1);
  border-color: var(--primary-color);
}

.copyright {
  display: none;
}



.dml-btn::before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  border: solid 1px var(--text-color-dark);
  border-radius: inherit;
  top: -1px;
  left: -1px;
  background-color: var(--text-color-dark);
  opacity: 0;
  clip-path: circle(0% at 50% 100%);
  transition: var(--transitionFast);
}

.dml-btn:hover:before {
  opacity: 1;
  clip-path: circle(100% at 50% 100%);
}

.dml-btn span {
  position: relative;
  z-index: 2;
  transition: var(--transitionFast);
}

.dml-btn:hover span {
  color: var(--primary-color);
}

.dml-buttonHover {
  position: relative;
}

.dml-buttonHover::before {
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  /* border: solid 1px var(--text-color-dark) */
  border-radius: inherit;
  top: -1px;
  left: -1px;
  background-color: var(--text-color-light);
  opacity: 0;
  clip-path: circle(0% at 50% 100%);
  transition: var(--transitionFast);
}

.dml-buttonHover:hover:before {
  opacity: 1;
  clip-path: circle(100% at 50% 100%);
}

.dml-buttonHover span {
  transition: var(--transitionFast);
}

.dml-buttonHover:hover span {
  color: var(--text-color-dark);
}

.dml-buttonHover span {
  position: relative;
  z-index: 2;
}

.portfolioLink:before {
  background-color: var(--text-color-dark);
}

.portfolioLink:hover span {
  color: var(--text-color-light);
}

/* button hover inspiration */
/* https: ; //html.themewant.com/invena/index-two.html */
.dmlMask {
  width: 110%;
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 1;
  transform: translateX(-10%);
  background: linear-gradient(270deg,
      rgba(255, 255, 255, 1) 90%,
      rgba(237, 221, 83, 0) 100%);
}

.animateImg {
  transform: scale(2);
}

.portflio.dmlMask {
  background: linear-gradient(270deg,
      rgba(239, 230, 217, 1) 90%,
      rgba(237, 221, 83, 0) 100%);
}

.navOverlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--text-color-dark);
  opacity: 0.5;
  z-index: 1;
}

.sideNav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999999;
}

.navInner {
  width: 30%;
  height: 100%;
  padding: 20px 40px;
  position: relative;
  z-index: 3;
  background-color: var(--text-color-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.navInner .dml-navLinks {
  flex-direction: column;
  text-align: center;
}

.navInner .dml-navLinks li::after {
  display: none;
}

.navInner .dml-navLinks li {
  font-size: 60px;
}

.sideNav {
  pointer-events: none;
}

.navInner .dml-navLinks {
  padding: 0;
}

.navInner {
  transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(-100%);
}

.navOverlay {
  display: none;
}

.sideNav.activeNav {
  pointer-events: all;
}

.sideNav.activeNav .navInner {
  transform: translateX(0);
}

.sideNav.activeNav .navOverlay {
  display: block;
}

.closeNav {
  width: 30px;
  height: 30px;
  color: var(--text-color-dark);
  background-color: var(--primary-color);
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.closeNav:hover {
  transform: rotate(90deg);
}

/* Side Nav Enhancement */
.navInner {
  width: 380px;
  max-width: 90vw;
  padding: 60px 40px 40px;
}

.side-nav-desc {
  text-align: right;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px 0;
  padding-top: 20px;
}

.side-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.side-nav-menu li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  position: relative;
  cursor: pointer;
}

.side-nav-menu li a {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.side-nav-menu li:hover a {
  color: var(--primary-color);
}

/* Menu Dot */
.menu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.side-nav-menu li:hover .menu-dot {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
}

/* Menu Loading Line */
.menu-line {
  flex-grow: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin-left: 10px;
}

.menu-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  transition: width 0.5s ease;
}

.side-nav-menu li:hover .menu-line::after {
  width: 100%;
}

/* Side Nav Copyright */
.side-nav-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: auto;
  padding-top: 30px;
}

/* Global Typography - Prevent Word Breaking */
h1,
h2,
h3,
h4,
h5,
h6,
.dml-h1,
.dml-h2,
.dml-h3,
.dml-h4,
.dml-h5,
.dml-h6 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}