@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
     padding: 0;
     margin: 0;
     box-sizing: border-box;
     /* #ff2200 */
}

body {
     font-family: "Inter", sans-serif;
     font-size: 16px;
     color: #999;
     background: #1f1f1f;
     line-height: 1.7;
     overflow-x: hidden;
     height: 100vh;
     max-width: 100vw;
     box-sizing: border-box;
}

body::-webkit-scrollbar {
     display: none;
}

img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

li {
     list-style: none;
}

a {
     text-decoration: none;
     cursor: pointer;
}

i {
     color: #ff2200;
}

.leftSide {
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     position: fixed;
     left: 2vh;
     height: 100vh;
     width: 25vw;
     border: 1px solid #565656;
     top: 50%;
     transform: translateY(-50%);
     padding: 10px 30px;
     border-radius: 8px;

     .head {
          justify-content: left;

          .myName {
               margin-top: 20px;
               margin-left: auto;
               margin-right: auto;
               text-align: center;
               color: #fff;
               font-size: 35px;
               font-weight: 900;

               .logo {
                    color: #ff2200;
               }
          }
     }

     .profileImg {
          width: 80%;
          height: 30vh;
          margin-left: auto;
          margin-right: auto;
          border-radius: 8px;
          overflow: hidden;
     }

     .profilInfo {
          font-size: 30px;
          color: #fff;
          text-align: center;
          font-weight: 900;
     }

     .copyright {
          font-size: 14px;
          text-align: center;
     }

     .hire {
          text-align: center;
          padding: 10px 20px;
          width: 70%;
          text-transform: uppercase;
          border: none;
          margin: 0 auto;
          outline: none;
          color: #fff;
          transition: .3s;
          font-size: 15px;
          background-color: #ff2200;
          border-radius: 8px;

          i {
               color: #fff;
          }
     }

     .hire:hover {
          background-color: transparent;
          color: #ff2200;
          border: 1px solid #ff2200;

          i {
               color: #ff2200;
          }
     }

     #typing-texts {
          color: #999;
          font-weight: 600;
          height: 100px;
     }
}

.copyright {
     font-size: 14px;
     text-align: center;
}

.btnMenu2 {
     color: #fff;
     border: #fff 1px solid;
     display: none;
     border-radius: 8px;
}

.card {
     width: fit-content;
     height: fit-content;
     background-color: transparent;
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: center;
     border: none;
     gap: 20px;

     .socialContainer {
          width: 40px;
          height: 40px;
          background-color: transparent;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          transition-duration: .3s;
          border-radius: 8px;
          border: 1px solid rgba(86, 86, 86, 0.3);
     }

     .socialContainer:hover {
          transition-duration: .3s;
          background: rgba(255, 34, 0, 0.1);
          border-color: #ff2200;

          .socialSvg path {
               fill: #ff2200;
          }
     }

     .socialContainer:active {
          transform: scale(0.9);
          transition-duration: .3s;
     }

     .socialSvg {
          width: 17px;
     }

     .socialSvg path {
          fill: #565656;
     }

     .socialContainer:hover .socialSvg {
          animation: slide-in-top 0.3s both;
     }
}

@keyframes slide-in-top {
     0% {
          transform: translateY(-50px);
          opacity: 0;
     }

     100% {
          transform: translateY(0);
          opacity: 1;
     }
}

@keyframes spin {
     0% {
          transform: rotate(0deg);
     }

     100% {
          transform: rotate(360deg);
     }
}

#navbar-example2 {
     border: 1px solid #565656;
     right: 5vh;
     gap: 10px;
     padding: 24px 10px;
     background: #1f1f1f;
     z-index: 20;
     bottom: 20%;
     border-radius: 8px;
}

.contents {
     margin-right: 5vh;
     margin-top: 25vh;
     margin-left: 30vw;
     padding-bottom: 20px;
     box-sizing: border-box;

     section {
          padding-right: 30px;
          max-width: 100%;
          box-sizing: border-box;
     }

     /* Available */
     .available-link-wrap {
          -webkit-backdrop-filter: blur(26.25249671936035px);
          backdrop-filter: blur(26.25249671936035px);
          background-color: #2c2c2c;
          width: max-content;
          position: absolute;
          right: 0;
          top: 0;
          border-radius: 8px;
     }

     .time {
          left: 30vw;
     }

     .available-link {
          color: #999;
          line-height: 1;
          font-size: 13px;
          display: flex;
          align-items: center;
          gap: 14px;
          padding: 13px 21px 13px 20px;
          flex: none;
     }

     .online-dot {
          width: 6px;
          height: 6px;
          background: #00A34C;
          border-radius: 50%;
          position: relative;
          flex: none;
     }

     .online-dot::before {
          content: '';
          background: rgb(0, 163, 76);
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          border-radius: 50%;
          animation: onlineAnim 1s infinite linear;
     }
}

@keyframes onlineAnim {
     0% {
          transform: scale(1);
     }

     100% {
          transform: scale(5);
          opacity: 0;
     }
}

.btnMenu {
     float: right;
     margin-right: 20px;
     border: 1px solid #565656;
     color: #fff;
     padding: 10px 15px;
     border-radius: 8px;
}

.btnMenu:hover {
     border: #ff2200 1px solid;
}

.offcanvas {
     background-color: #1f1f1f;
     color: #565656;
     border-radius: 8px;
}

.offcanvas-body {
     .nav-item {
          cursor: pointer;
     }

     .active {
          color: #fff;

          i {
               color: #ff2200;
          }
     }

     .nav-item:hover {
          color: #fff;

          i {
               color: #ff2200;
          }
     }

     .card {
          width: fit-content;
          height: fit-content;
          background-color: transparent;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          border: none;
          gap: 20px;

          .socialContainer {
               background-color: transparent;
               display: flex;
               align-items: center;
               justify-content: center;
               overflow: hidden;
               transition-duration: .3s;
               border-radius: 8px;
               border: 1px solid rgba(86, 86, 86, 0.3);
          }

          .socialContainer:hover {
               transition-duration: .3s;
               background: rgba(255, 34, 0, 0.1);
               border-color: #ff2200;

               .socialSvg path {
                    fill: #ff2200;
               }
          }

          .socialContainer:active {
               transform: scale(0.9);
               transition-duration: .3s;
          }

          .socialSvg {
               width: 17px;
          }

          .socialSvg path {
               fill: #565656;
          }

          .socialContainer:hover .socialSvg {
               animation: slide-in-top 0.3s both;
          }
     }
}

/* Introduction */
.introduction {
     .introHead {
          width: max-content;
          font-size: 12px;
          color: #fff;
          font-weight: 300;
          border: 1px solid #565656;
          padding: 5px 15px !important;
          margin-bottom: 53px;
          border-radius: 8px;
     }

     .introBody {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          color: #fff;
          gap: 10px;
          font-size: 78px;
          letter-spacing: -0.2px;
          line-height: 90px;
          font-weight: 300;

          span {
               color: #ff2200;
          }
     }

     #typing-text {
          font-size: 78px;
          color: #fff;
          white-space: wrap;
          overflow: hidden;
          width: 90%;
          height: 180px;
          margin-top: -20px;
     }

     .introCatch {
          font-size: 16px;
          color: #999;
          width: 70%;
     }
}

/* Go to Project Rotating Button */
.go-to-project-btn {
     width: 175px;
     height: 175px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-left: auto;
     position: relative;
     overflow: hidden;
     margin-right: 15px;

     img {
          object-fit: contain;
          width: 85%;
          display: block;
          animation: rotating 6s infinite linear;
     }

     i {
          position: absolute;
          font-size: 40px;
          display: block;
     }
}

@keyframes rotating {
     0% {
          transform: rotate(0);
     }

     100% {
          transform: rotate(360deg);
     }
}

/* Years of Experience */
.yearss {
     gap: 100px;
     margin-top: 55px;
     margin-bottom: 55px;

     .years {
          font-size: 72px;
          color: #ff2200;
          line-height: 56px;
          margin-bottom: 38px;
     }

     .textx {
          font-size: 14px;
          line-height: 24px;
          text-transform: uppercase;
     }
}

/* About */
.about {
     .aboutHead {
          font-size: 48px;
          line-height: 60px;
          color: #fff;
          font-weight: 300;
          margin-bottom: 33px;
          width: 80%;

          span {
               color: #ff2200;
          }
     }

     .about-image-wrap {
          height: 50vh;
     }

     .about-image,
     .about-bg {
          width: 100%;
          height: 100%;
     }

     .about-image {
          right: 1;
     }

     .about-bg {
          height: 100%;
          border-radius: 8px;
          background-image: linear-gradient(315deg, #5656569b 5%, #5656569b 95%)
     }

     .storyGan {
          padding-bottom: 10px;
          margin-bottom: 10px;
          border-bottom: 1px solid #ff2200;
     }

     .info1 {
          color: #fff;

          span {
               color: #999;
          }
     }

     #downloadButton {
          margin-top: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          outline: none;
          cursor: pointer;
          width: 150px;
          height: 50px;
          background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
          border-radius: 8px;
          border: 1px solid #8F9092;
          transition: all 0.2s ease;
          font-family: "Source Sans Pro", sans-serif;
          font-size: 14px;
          font-weight: 600;
          color: #606060;
          text-shadow: 0 1px #fff;
     }

     #downloadButton:hover {
          box-shadow: 0 4px 3px 1px #ff2200, 0 6px 8px #ff2200cc, 0 -4px 4px #e82c1799, 0 -6px 4px #e82c1766, inset 0 0 3px 3px #999;
     }

     #downloadButton:active {
          box-shadow: 0 4px 3px 1px #ff2200, 0 6px 8px #ff2200cc, 0 -4px 4px #e82c1799, 0 -6px 4px #e82c1766, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
     }

     #downloadButton:focus {
          box-shadow: 0 4px 3px 1px #ff2200, 0 6px 8px #ff2200cc, 0 -4px 4px #e82c1799, 0 -6px 4px #e82c1766, inset 0 0 5px 3px #999, inset 0 0 30px #aaa;
     }
}

/* Resume */
.resume {
     margin-top: 150px;

     .resume-timeline .item {
          position: relative;
          padding-left: 74px;
          padding-bottom: 68px;

          h3 {
               font-size: 24px;
               font-weight: 300;
               margin-bottom: 5px;
               color: #fff;
          }

          p {
               font-size: 13px;
               color: #999;
               margin-bottom: 18px;
          }

          .date {
               display: block;
               margin-bottom: 28px;
               transition: .3s;
          }
     }

     .resume-timeline .item:hover .date {
          color: #ff2200;
     }

     .resume-timeline .item::after {
          content: '';
          background: #565656;
          width: 1px;
          height: 100%;
          position: absolute;
          left: 0;
          top: 10px;
          z-index: -1;
     }

     .resume-timeline .item:hover::before {
          background: #ff2200;
     }

     .resume-timeline .item::before {
          content: '';
          position: absolute;
          width: 12px;
          height: 12px;
          background: #656565;
          left: -6px;
          top: 7px;
          transition: .3s;
          border-radius: 50%;
     }

     .resume-timeline .item:last-child {
          padding-bottom: 0;
     }

     .resume-lines__item {
          padding: 1em;
          background-color: #161616;
          margin: 10px 0;
          border-radius: 8px;
     }

     .resume-lines__date {
          display: block;
          font-weight: 400;
          font-variant-numeric: lining-nums;
          color: #ff2200;
     }

     .resume-lines__source a {
          font-weight: 400;
          color: #ff2200;
     }

     .resume-lines__title {
          font-weight: 700;
          color: #fff;
     }

     .resume-lines__descr {
          color: #999;
     }

     .resume-lines__descr .remaining-text {
          display: none;
     }

     .read-more-btn {
          color: #ff2200;
          border: none;
          cursor: pointer;
          background-color: transparent;
          font-size: 10px;
          font-weight: 400;
          text-decoration: underline;
          border-radius: 8px;
          padding: 2px 4px;
          transition: all 0.3s ease;

          &:hover {
               color: #fff;
               background: rgba(255, 34, 0, 0.1);
          }
     }
}

.show {
     display: inline !important;
}

/* Services */
.services-items {
     .service-item {
          background-color: #161616;
          transition: .3s;
          position: relative;
          padding: 44px 48px 41px 48px;
          margin-bottom: 10px;
          cursor: pointer;
          border-radius: 8px;

          h3 {
               font-size: 24px;
               font-weight: 300;
               margin-bottom: 8px;
               color: #fff;
          }

          p {
               font-size: 14px;
               color: #999;
               margin-bottom: 30px;
          }

          .projects {
               font-size: 12px;
               color: #fff;
               text-transform: uppercase;
               display: inline-block;
          }

          i {
               position: absolute;
               font-size: 30px;
               color: #ff2200;
               top: 45px;
               right: 50px;
          }
     }

     .service-item:last-child {
          margin-bottom: 0;
     }

     .service-item:hover {
          h3 {
               color: #ff2200;
          }

          .projects {
               text-decoration: underline;
          }
     }
}

/*  Skills */
.skills-area {
     padding-top: 90px;
     padding-bottom: 40px;
}

.skills .skill {
     margin-bottom: 50px;

     p {
          font-size: 14px;
          color: #fff;
          margin: 0;
     }
}

.skills .skill .skill-inner {
     border: 2px solid #565656;
     padding: 30px 0;
     margin-bottom: 20px;
     transition: .3s;
     border-radius: 8px;

     h2 {
          font-size: 30px;
          color: #ff2200;
          font-weight: 300;
          margin: 0;
     }

     i {
          font-size: 100px;
          margin-bottom: 20px;
          color: #fff;
     }
}

.skills .skill:hover .skill-inner {
     border-color: #ff2200;

     h2 {
          color: #fff;
     }

     i {
          color: #ff2200;
     }
}

/*  Portfolio */
#portfolio {
     .portfolio-area {
          padding-top: 90px;
          padding-bottom: 90px;
     }

     .portfolio-item {
          margin-bottom: 62px;
     }

     .portfolio-items>div:last-child .portfolio-item {
          margin-bottom: 0;
     }

     .portfolio-item-inner {
          height: 370px;
          overflow: hidden;
          position: relative;
          margin-bottom: 30px;
     }

     .portfolio-item-inner {
          height: 410px;
     }

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

     .portfolio-categories {
          position: absolute;
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          align-items: center;
          bottom: 20px;
          left: 20px;
     }

     .portfolio-categories li a {
          display: block;
          font-size: 14px;
          background: #ff2200;
          color: #fff;
          padding: 7px 20px;
          transition: .3s;
     }

     .portfolio-item:hover .portfolio-item-inner .portfolio-categories li a {
          background: #1f1f1f;
          color: #fff;
     }

     h3 {
          font-size: 24px;
          font-weight: 300;
          margin: 0;
     }

     h3 a {
          color: #fff;
          display: inline-block;
          border-bottom: 1px solid transparent;
          transition: .3s;
     }

     .portfolio-items .portfolio-item:hover h3 a {
          border-color: #fff;
     }
}

/* Modern Portfolio Section Styles */
.portfolio-filter-tabs {
     margin: 40px 0;
     display: flex;
     justify-content: center;
}

.filter-tabs-container {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     background: rgba(22, 22, 22, 0.95);
     padding: 10px;
     border-radius: 8px;
     border: 1px solid rgba(86, 86, 86, 0.5);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     backdrop-filter: blur(10px);
}

.filter-tab {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 12px 20px;
     background: rgba(31, 31, 31, 0.7);
     border: 1px solid rgba(86, 86, 86, 0.5);
     border-radius: 8px;
     color: #999;
     cursor: pointer;
     transition: all 0.3s ease;
     font-size: 14px;
     font-weight: 500;
     position: relative;
     overflow: hidden;
     backdrop-filter: blur(5px);
}

.filter-tab:before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #ff2200, #ff4422);
     transition: left 0.3s ease;
     z-index: -1;
}

.filter-tab.active,
.filter-tab:hover {
     color: #fff;
     border-color: rgba(255, 34, 0, 0.7);
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(255, 34, 0, 0.3);
}

.filter-tab.active:before,
.filter-tab:hover:before {
     left: 0;
}

.filter-tab i {
     font-size: 16px;
     color: inherit;
}

.portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
     margin-top: 50px;
     max-width: 100%;
     width: 100%;
     box-sizing: border-box;
}

.portfolio-card {
     background: linear-gradient(145deg, #161616, #1a1a1a);
     border-radius: 8px;
     border: 1px solid rgba(86, 86, 86, 0.3);
     overflow: hidden;
     transition: all 0.4s ease;
     position: relative;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-card:hover {
     transform: translateY(-10px);
     border-color: rgba(255, 34, 0, 0.6);
     box-shadow: 0 20px 40px rgba(255, 34, 0, 0.15),
          0 0 20px rgba(255, 34, 0, 0.1);
     background: linear-gradient(145deg, #181818, #1c1c1c);
}

.portfolio-card-inner {
     height: 100%;
     display: flex;
     flex-direction: column;
}

.portfolio-image {
     position: relative;
     height: 250px;
     overflow: hidden;
     border-radius: 8px 8px 0 0;
}

.portfolio-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.4s ease;
}

.portfolio-image iframe {
     width: 100%;
     height: 100%;
     border: none;
     border-radius: 8px 8px 0 0;
     transition: transform 0.4s ease;
     object-fit: cover;
     display: block;
     max-width: 100%;
     box-sizing: border-box;
}

.portfolio-card:hover .portfolio-image img {
     transform: scale(1.1);
}

.portfolio-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(255, 34, 0, 0.9);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.4s ease;
     border-radius: 8px 8px 0 0;
}

.portfolio-card:hover .portfolio-overlay {
     opacity: 1;
}

.portfolio-overlay-content {
     text-align: center;
     color: #fff;
}

.portfolio-link {
     display: inline-block;
     width: 60px;
     height: 60px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
     transition: all 0.3s ease;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-link:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: scale(1.1);
     border-color: #fff;
}

.portfolio-link i {
     font-size: 20px;
     color: #fff;
}

.portfolio-info h4 {
     color: #fff;
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 5px;
}

.portfolio-info p {
     color: rgba(255, 255, 255, 0.8);
     font-size: 14px;
}

.portfolio-content {
     padding: 25px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
}

.portfolio-category-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     padding: 6px 12px;
     border-radius: 8px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     border: 1px solid;
     backdrop-filter: blur(10px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.frontend-badge {
     background: rgba(255, 34, 0, 0.9);
     color: #fff;
     border-color: rgba(255, 255, 255, 0.3);
}

.backend-badge {
     background: rgba(31, 31, 31, 0.9);
     color: #ff2200;
     border-color: rgba(255, 34, 0, 0.5);
}

.fullstack-badge {
     background: rgba(255, 255, 255, 0.9);
     color: #1f1f1f;
     border-color: rgba(31, 31, 31, 0.3);
}

.portfolio-content h3 {
     color: #fff;
     font-size: 20px;
     font-weight: 600;
     margin: 15px 0 10px;
     line-height: 1.3;
}

.portfolio-content p {
     color: #999;
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 20px;
     flex-grow: 1;
}

.portfolio-tech-stack {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: auto;
}

.tech-tag {
     background: #1f1f1f;
     color: #999;
     padding: 4px 10px;
     border-radius: 8px;
     border: 1px solid #565656;
     font-size: 12px;
     font-weight: 500;
     transition: all 0.3s ease;
}

.tech-tag:hover {
     background: #ff2200;
     color: #fff;
     border-color: #ff2200;
     transform: translateY(-2px);
}

/* Backend Placeholder Styles */
.portfolio-placeholder {
     height: 250px;
     background: #1f1f1f;
     border: 2px dashed #565656;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     color: #999;
     text-align: center;
     border-radius: 8px 8px 0 0;
     transition: all 0.3s ease;
}

.portfolio-placeholder:hover {
     border-color: #ff2200;
}

.portfolio-placeholder:hover i,
.portfolio-placeholder:hover h4,
.portfolio-placeholder:hover p {
     color: #ff2200;
}

.portfolio-placeholder i {
     font-size: 40px;
     margin-bottom: 15px;
     color: #565656;
     transition: all 0.3s ease;
}

.portfolio-placeholder h4 {
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 8px;
     color: #999;
     transition: all 0.3s ease;
}

.portfolio-placeholder p {
     font-size: 14px;
     opacity: 0.9;
     color: #999;
     transition: all 0.3s ease;
}

/* Portfolio Read More Functionality - Consistent Styling */
.remaining-text {
     display: none;
}

.remaining-text.show {
     display: inline;
}

.read-more-btn {
     background: none;
     border: none;
     color: #ff2200;
     cursor: pointer;
     text-decoration: underline;
     font-size: inherit;
     padding: 0;
     margin-left: 5px;
     transition: color 0.3s ease;
     border-radius: 8px;
}

.read-more-btn:hover {
     color: #fff;
}

/* Portfolio Filter Animation */
.portfolio-card[data-category] {
     transition: all 0.4s ease;
}

.portfolio-card.hidden {
     opacity: 0;
     transform: scale(0.8);
     pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
     .portfolio-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          margin: 0 auto;
          max-width: 100%;
          padding: 0 10px;
     }

     .filter-tabs-container {
          flex-direction: column;
          align-items: center;
          gap: 10px;
          padding: 15px;
          border-radius: 8px;
          margin: 0 10px;
     }

     .filter-tab {
          width: 100%;
          justify-content: center;
          padding: 15px 20px;
          border-radius: 8px;
     }

     .portfolio-content {
          padding: 20px;
     }

     .portfolio-image {
          height: 220px;
     }

     .portfolio-image iframe {
          height: 220px;
          width: 100%;
     }
}

@media (max-width: 480px) {
     .portfolio-grid {
          grid-template-columns: 1fr;
          gap: 15px;
          padding: 0 5px;
          margin: 0 auto;
          max-width: 100%;
     }

     .portfolio-image {
          height: 200px;
          border-radius: 8px 8px 0 0;
     }

     .portfolio-image iframe {
          height: 200px;
          width: 100%;
     }

     .portfolio-overlay {
          border-radius: 8px 8px 0 0;
     }

     .portfolio-content {
          padding: 15px;
     }

     .portfolio-content h3 {
          font-size: 18px;
     }

     .tech-tag {
          font-size: 11px;
          padding: 3px 8px;
     }
}

/* Tesrimonials */
swiper-container {
     width: 50%;
     height: max-content;
     margin: 0 auto;
     border-radius: 8px;

     swiper-slide {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: 50px;
          height: 60vh;
          padding: 15px;
          color: #fff;
          background: #161616;
          border: #ff2200 1px solid;
          border-radius: 8px;

          .imagg {
               width: 60px;
               height: 60px;
               border-radius: 50%;

               img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
               }
          }

          .text {
               color: #fff;
               font-size: 18px;
               font-style: normal;
               font-weight: 400;
          }
     }

     .authorName {
          font-size: 25px;
          font-weight: 700;
          color: #ff2200;

          span {
               font-size: 10px;
          }
     }
}

/* Contact */
.contactForm {
     background-color: #161616;
     padding: 30px;
     border-radius: 8px;

     input {
          background-color: #2c2c2c;
          outline: 2px solid #2c2c2c;
          height: 55px;
          padding: 0 15px;
          font-size: 14px;
          color: #999 !important;
          letter-spacing: 1px;
          border-radius: 8px;
          border: none;
     }

     label {
          font-size: 12px;
          color: #999;
          font-weight: 500;
          letter-spacing: 1px;
          text-transform: uppercase;
          text-align: left;
          display: block;
     }

     textarea {
          max-height: 220px;
          background-color: #2c2c2c;
          padding: 0;
          outline: 2px solid #2c2c2c;
          padding: 10px 15px;
          font-size: 14px;
          overflow-y: scroll;
          line-height: 18px;
          color: #999;
          letter-spacing: 1px;
          resize: none;
          border-radius: 8px;
          border: none;
     }

     button {
          background: linear-gradient(145deg, #161616, #1f1f1f);
          font-size: 17px;
          text-transform: uppercase;
          font-weight: 500;
          border: 1px solid #565656;
          color: #fff;
          width: 100%;
          height: 55px;
          cursor: pointer;
          border-radius: 8px;
          transition: all 0.3s ease;
     }
}

textarea::-webkit-scrollbar {
     display: none;
}

.contactForm input:focus,
textarea:focus {
     outline: 2px solid #ff2200 !important;
}

.contactForm button:hover {
     background: #ff2200;
     border-color: #ff2200;
     color: #fff;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(255, 34, 0, 0.3);
}

/* Footer */
#footer {
     border-top: #565656 1px solid;
     padding: 20px;
     margin-top: 50px;
     background: rgba(22, 22, 22, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
     border-radius: 8px 8px 0 0;

     .copyright {
          margin-left: auto;
     }

     .contact-infos {
          width: 100%;

          ul {
               justify-content: space-around;
               padding: 25px 0;
          }

          li {
               display: flex;
               align-items: flex-start;
               gap: 18px;
          }

          .icon {
               flex: none;
               width: 52px;
               height: 52px;
               display: flex;
               align-items: center;
               justify-content: center;
               border: 1px solid rgba(86, 86, 86, 0.5);
               background: rgba(31, 31, 31, 0.7);
               backdrop-filter: blur(15px);
               border-radius: 8px;
          }

          i {
               color: #ff2200;
               font-size: 22px;
          }

          .content {
               border: 1px solid rgba(86, 86, 86, 0.3);
               padding: 15px;
               position: relative;
               word-break: break-all;
               background: rgba(22, 22, 22, 0.8);
               backdrop-filter: blur(10px);
               box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
               border-radius: 8px;
          }

          .content::before {
               content: "";
               border-bottom: 1px dashed #ff2200;
               border-left: 1px dashed #ff2200;
               top: 52px;
               height: 24px;
               left: -45px;
               width: 44px;
               position: absolute;
               box-sizing: border-box;
               border-radius: inherit;
               pointer-events: none;
          }

          h3 {
               font-size: 16px;
               letter-spacing: -0.75px;
               margin: 0 0 10px;
               color: #ff2200;
               font-weight: 400;
          }

          p {
               font-size: 12px;
               letter-spacing: 0.23px;
               line-height: 21px;
               font-weight: 300;
               margin: 0;
               color: #999;
          }

          a {
               color: #999;
          }
     }

     .socialls {
          gap: 50px;
          column-gap: 20px;
          margin-bottom: 10px;

          a {
               width: 70px;
          }

          img {
               object-fit: contain;
          }
     }
}