
/*--------------- basic styling --------------- */
html, body {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      font-family: "Roboto Mono" !important;
      background: #0f0f0f !important;
      color: #fff !important;
}

.whitespace {
      width: 100%;
      height: 100px;
}

@media(max-width: 768px) {
      .whitespace {
            display: none;
      }
}

/*--------------- typewriter effect --------------- */
.line {
      width: 24em;
      top: 50%;
      margin: auto;
      border-right: 2px solid rgba(255, 255, 255, 0.75);
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      transform: translateY(-50%);
}

.hero-subtitle {
      margin-top: 30px;
      text-align: center;
}

.hero-subtitle p {
      color: #ccc;
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto;
      letter-spacing: 0.5px;
      opacity: 0.9;
}

.anim-typewriter {
      animation: typewriter 2s steps(40) 0.3s 1 normal both,
      blinkTextCussor 500ms steps(40) infinite normal;
}

@keyframes typewriter {
      from {
            width: 0;
      }
      to {
            width: 18em;
      }
}

@media(max-width: 768px) {
      @keyframes typewriter {
            from {
                  width: 0;
            }
            to {
                  width: 17em;
            }
      }
      
      .hero-subtitle p {
            font-size: 1rem;
            max-width: 90%;
            padding: 0 20px;
      }
}

@keyframes blinkTextCussor {
      from {
            border-right-color: rgba(255, 255, 255, 0.75);
      }
      to {
            border-right-color: transparent;
      }
}

/*--------------- navigation --------------- */
nav {
      width: 100%;
      background: #0f0f0f;
      height: 80px;
      position: fixed;
      z-index: 1;
}

nav #brand {
      float: left;
      display: block;
      margin-left: 82px;
      line-height: 80px;
      font-weight: bold;
}

nav #brand a {
      color: #fff;
      transition: all 0.3s ease-out;
}

nav #brand a:hover {
      text-decoration: none;
}

nav #menu {
      float: left;
      right: 80px;
      position: fixed;
}

nav #menu li {
      padding-left: 40px;
      display: inline-block;
      cursor: pointer;
      font-weight: 300;
      line-height: 80px;
      position: relative;
      transition: all 0.3s ease-out;
}

nav #menu li span {
      font-weight: 700;
}

nav #menu li a {
      color: #fff;
}

nav #menu li a:hover {
      text-decoration: none;
}

#toggle {
      position: absolute;
      right: 30px;
      top: 20px;
      font-weight: 300;
      z-index: 2;
      width: 30px;
      height: 30px;
      cursor: pointer;
      float: right;
      transition: all 0.3s ease-out;
      visibility: hidden;
      opacity: 0;
}

.close-btn {
      position: absolute;
      right: 16px;
      font-weight: 300;
      z-index: 2;
      cursor: pointer;
      top: -2px;
      line-height: 80px;
}

#resize {
      z-index: 1;
      top: 0px;
      position: fixed;
      background: #0f0f0f;
      width: 100%;
      height: 100%;
      visibility: hidden;
      opacity: 0;
      transition: all 1s ease-out;
}

#resize #menu {
      height: 90px;
      position: absolute;
      left: 45%;
      transform: translateX(-40%);
      text-align: center;
      display: table-cell;
      vertical-align: center;
}

#resize #menu li {
      display: block;
      text-align: center;
      padding: 10px 0;
      font-size: 50px;
      min-height: 50px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease-out;
}

#resize li:nth-child(1) {
      margin-top: 140px;
}

#resize #menu li a {
      color: #fff;
}

#resize #menu li a:hover {
      text-decoration: none;
}

#resize.active {
      visibility: visible;
      opacity: 1;
}

@media(max-width: 768px) {
      #toggle {
            visibility: visible;
            opacity: 1;
            margin-top: 6px;
            margin-right: 4px;
      }

      nav #brand {
            margin-left: 24px;
      }

      #menu a {
            font-size: 20px;
            font-weight: 300;
      }

      #resize li span {
            font-weight: bolder;
      }

      nav #menu {
            display: none;
      }
}

@media(min-width: 768px) {
      #resize {
            visibility: hidden !important;
      }
}

/*--------------- hero section --------------- */
.hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
}

.hero h1 {
      font-weight: lighter;
      text-align: center;
      letter-spacing: -2px;
      line-height: 58px;
}

@media(max-width: 768px) {
      .header h1 {
            font-size: 26px;
      }
}

/*--------------- scroll down icon animation --------------- */
.scroll-down {
      position: absolute;
      left: 50%;
      bottom: 100px;
      display: block;
      text-align: center;
      font-size: 20px;
      z-index: 0;
      text-decoration: none;
      text-shadow: 0;
      width: 13px;
      height: 13px;
      border-bottom: 2px solid #fff;
      border-right: 2px solid #fff;
      -webkit-transform: translate(-50%, 0) rotate(45deg);
      animation: fade_move_down 3s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes fade_move_down {
      0% {
            transform: translate(0, -20px) rotate(45deg);
            opacity: 0;
      }
      50% {
            opacity: 1;
      }
      100% {
            transform: translate(0, 20px) rotate(45deg);
            opacity: 0;
      }
}

/*--------------- projects section layout improvements --------------- */
.projects-section {
      padding: 0 20px;
}

.projects-section h6 {
      text-align: center;
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #fff;
      font-weight: 400;
      letter-spacing: 2px;
}

.projects-section .vertical {
      width: 2px;
      height: 60px;
      background: #fff;
      margin: 0 auto 30px;
      opacity: 0.6;
}

.projects-section .whitespace {
      height: 60px;
}

@media(max-width: 768px) {
      .projects-section .whitespace {
            height: 40px;
      }
      
      .projects-section h6 {
            font-size: 1rem;
            margin-bottom: 15px;
      }
      
      .projects-section .vertical {
            height: 40px;
            margin-bottom: 20px;
      }
}

@media(max-width: 576px) {
      .projects-section {
            padding: 0 15px;
      }
      
      .projects-section .whitespace {
            height: 30px;
      }
      
      .project-card {
            margin-bottom: 20px;
      }
}

/*--------------- projects section --------------- */
h6 {
      text-align: center;
}

.vertical {
      margin-top: 40px;
      border-left: 1px solid #fff;
      height: 80px;
      position: absolute;
      left: 50%;
}

.project {
      height: 500px;
}

.project1 {
      background: url('work0.jpg') no-repeat 50% 50%;
      background-size: cover;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.project1:hover {
      filter: grayscale(0%);
}

.project1::after {
      content: "Innovation.";
      font-family: "Roboto Mono";
      font-size: 36px;
      position: relative;
      color: #fff;
      display: block;
      top: 8%;
      left: -60%;
      right: 0;
      bottom: 0;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.project2 {
      background: url('work1.jpeg') no-repeat 50% 50%;
      background-size: cover;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.project2:hover {
      filter: grayscale(0%);
}

.project2::after {
      content: "Excellence.";
      font-family: "Roboto Mono";
      font-size: 36px;
      position: relative;
      color: #fff;
      display: block;
      top: 80%;
      left: 90%;
      right: 0;
      bottom: 0;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.project3 {
      background: url('work2.jpg') no-repeat 50% 50%;
      background-size: cover;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.project3:hover {
      filter: grayscale(0%);
}

.project3::after {
      content: "Creativity.";
      font-family: "Roboto Mono";
      font-size: 36px;
      position: relative;
      color: #fff;
      display: block;
      top: 80%;
      left: -50%;
      right: 0;
      bottom: 0;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.project4 {
      background: url('work3.png') no-repeat 50% 100%;
      background-size: cover;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.project4:hover {
      filter: grayscale(0%);
}

.project4::after {
      content: "Vision.";
      font-family: "Roboto Mono";
      font-size: 36px;
      position: relative;
      color: #fff;
      display: block;
      top: 10%;
      left: 90%;
      right: 0;
      bottom: 0;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.project5 {
      background: url('work4.jpeg') no-repeat 50% 50%;
      background-size: cover;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.project5:hover {
      filter: grayscale(0%);
}

.project5::after {
      content: "Future.";
      font-family: "Roboto Mono";
      font-size: 36px;
      position: relative;
      color: #fff;
      display: block;
      top: 50%;
      left: 50%;
      right: 0;
      bottom: 0;
      transform: translate(-50%, -50%);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

@media(max-width: 768px) {
      .project {
            width: 90% !important;
            margin: 14px auto;
      }

      .vertical {
            display: none;
      }

      .project1::after, .project2::after, .project3::after, .project4::after, .project5::after {
            display: none;
      }
}

/*--------------- project cards --------------- */
.project-card {
      background: #1a1a1a;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      height: 100%;
}

.project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      background: #252525;
}

.project-image {
      height: 250px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
}

.engiosmosis-bg {
      background-image: url('engiosmosisss.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.engiosmosis-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
}

.project-card:hover .engiosmosis-bg {
      filter: grayscale(0%);
}

.project-card:hover .engiosmosis-bg::before {
      opacity: 1;
}

.yoga-mudra-bg {
      background-image: url('yogaopencv.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.yoga-mudra-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
}

.project-card:hover .yoga-mudra-bg {
      filter: grayscale(0%);
}

.project-card:hover .yoga-mudra-bg::before {
      opacity: 1;
}

.hackathon-bg {
      background-image: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      font-weight: bold;
}

.hackathon-bg::before {
      content: "🏆";
      font-size: 3rem;
}

.ecommerce-bg {
      background-image: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      font-weight: bold;
}

.ecommerce-bg::before {
      content: "🛍️";
      font-size: 3rem;
}

.samarpanam-bg {
      background-image: url('samarpanam.JPG');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.samarpanam-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
}

.project-card:hover .samarpanam-bg {
      filter: grayscale(0%);
}

.project-card:hover .samarpanam-bg::before {
      opacity: 1;
}

.project-content {
      padding: 25px;
}

.project-content h4 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 15px;
      font-weight: 600;
}

.project-content p {
      color: #ccc;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
}

.project-tech {
      margin-bottom: 20px;
}

.tech-tag {
      display: inline-block;
      background: #333;
      color: #fff;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      margin-right: 8px;
      margin-bottom: 8px;
      transition: all 0.3s ease;
}

.tech-tag:hover {
      background: #555;
      transform: translateY(-2px);
}

.project-links {
      display: flex;
      gap: 15px;
}

.project-link {
      color: #fff;
      text-decoration: none;
      padding: 8px 16px;
      border: 2px solid #fff;
      border-radius: 25px;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      background: transparent;
}

.project-link:hover {
      background: #fff;
      color: #000;
      text-decoration: none;
      transform: translateY(-2px);
}

@media(max-width: 768px) {
      .project-card {
            margin-bottom: 30px;
      }
      
      .project-image {
            height: 200px;
      }
      
      .project-content {
            padding: 20px;
      }
      
      .project-links {
            flex-direction: column;
            gap: 10px;
      }
      
      .project-link {
            text-align: center;
      }
      
      /* Ensure single column layout on mobile */
      .col-lg-6 {
            margin-bottom: 20px;
      }
}

@media(max-width: 576px) {
      .project-card {
            margin-bottom: 25px;
      }
      
      .project-content {
            padding: 15px;
      }
      
      .project-content h4 {
            font-size: 1.3rem;
      }
      
      .project-content p {
            font-size: 0.9rem;
      }
}

/*--------------- footer section --------------- */
.collab {
      text-align: right;
}

.collab p {
      font-weight: lighter !important;
      margin-bottom: 20px;
}

.hr {
      background: rgba(255, 255, 255, 0.2);
      height: 1px;
}

.info h4 {
      font-size: 18px;
      font-weight: lighter;
}

.info p {
      color: grey;
      font-weight: lighter;
}

.info li {
      font-weight: lighter;
      color: #fff;
      font-size: 18px;
      padding-left: 20px;
}

#fb::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #3b5998;
}


#ig::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #fcaf45;
}


#tw::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #55acee;
}


#yt::before {
      display: inline-block;
      content: '';
      border-radius: 100%;
      height: 4px;
      width: 4px;
      margin-right: 6px;
      background: #c4302b;
}

#media, #address {
      text-align: right;
}

#media ul {
      list-style: none;
}

#media ul li {
      display: inline-block;
}

@media(max-width: 768px) {
      .collab, #personal, #media, #address {
            text-align: center;
      }

      .info ul {
            margin: 0 0 0 -22px;
            padding: 0;
      }
}

/*--------------- work page --------------- */

.hero-content {
      margin-left: 0%;
}

.hero-content p {
      font-weight: 300;
      line-height: 36px;
      color: grey;
}

.hero-content h6 {
      text-align: left;
}

@media(max-width: 768px) {
      .hero-content {
            padding-top: 50px;
            width: 96%;
            margin: 0 auto;
      }
}

/*---------------about page --------------- */

.about {
      height: 500px;
      margin-top: 200px;
}

.image {
      background: url('aboutmeshiv.jpg') no-repeat 50% 70%;
      background-size: cover;
}

/*--------------- about me profile photo --------------- */
.about-photo {
      text-align: center;
      margin-bottom: 30px;
}

.profile-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      border: 3px solid rgba(255, 255, 255, 0.1);
}

.profile-image:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      border-color: rgba(255, 255, 255, 0.2);
}

/*--------------- about me hero image --------------- */
.about-hero-image {
      text-align: center;
      margin-bottom: 40px;
}

.hero-profile-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 25px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease;
      filter: grayscale(100%);
      border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-profile-image:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
      filter: grayscale(0%);
      border-color: rgba(255, 255, 255, 0.3);
}

@media(max-width: 768px) {
      .about-photo {
            margin-bottom: 20px;
      }
      
      .profile-image {
            max-width: 300px;
            border-radius: 15px;
      }

      .about-hero-image {
            margin-bottom: 30px;
      }
      
      .hero-profile-image {
            max-width: 350px;
            border-radius: 20px;
      }
}

/*--------------- about me connect section --------------- */
.about-connect {
      text-align: center;
      margin-top: 40px;
      padding: 40px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      position: relative;
      overflow: hidden;
}

.about-connect::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
      z-index: -1;
}

.about-connect p {
      color: #e0e0e0;
      font-size: 1.2rem;
      margin-bottom: 30px;
      font-weight: 300;
      letter-spacing: 0.5px;
}

.linkedin-connect-btn {
      display: inline-block;
      background: transparent;
      color: #ffffff;
      text-decoration: none;
      padding: 18px 40px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.4s ease;
      border: 2px solid rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
}

.linkedin-connect-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s ease;
}

.linkedin-connect-btn:hover {
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      text-decoration: none;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.linkedin-connect-btn:hover::before {
      left: 100%;
}

.linkedin-connect-btn span {
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
      z-index: 2;
}

@media(max-width: 768px) {
      .about-connect {
            margin-top: 30px;
            padding: 30px 25px;
      }
      
      .linkedin-connect-btn {
            padding: 15px 30px;
            font-size: 0.9rem;
      }
}

/*--------------- contact form --------------- */

#contact-form {
      margin: 5% 1.4%;
}

#contact-form ul {
      list-style: none;
      border-radius: 5px;
      margin-bottom: 40px;
}

#contact-form li {
      padding: 10px;
}

#contact-form li:last-of-type {
      border-bottom: none;
}

#contact-form label {
      display: block;
      font-size: .8em;
      color: #999;
      padding-left: 5px;
}

#contact-form input, #contact-form textarea {
      width: 100%;
      padding: 5px;
      border: none;
      resize: vertical;
      background: transparent;
      color: #fff;
      font-weight: bolder;
}

input:focus {
      outline: none;
      border: none;
}

textarea:focus {
      outline: none;
      border: none;
}

.textarea {
      border-bottom: 1px solid #dfdfdf;
}

.send {
      margin-left: 50px;
      text-transform: uppercase;
      padding: 20px 30px;
      background: transparent;
      color: #dfdfdf;
      font-size: 14px;
      letter-spacing: 2px;
}

.send:hover {
      background: #dfdfdf;
      color: #101010;
}

@media(max-width: 768px) {
      #contact-form {
            margin: 5% -8%;
            width: 98%;
      }
}

/*--------------- project page --------------- */

.prev, .next p {
      color: grey;
}

.prev p {
      text-align: left;
}

.next p {
      text-align: right;
}

.face-mesh-bg {
      background-image: url('face-mesh-detection.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.face-mesh-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
}

.project-card:hover .face-mesh-bg {
      filter: grayscale(0%);
}

.project-card:hover .face-mesh-bg::before {
      opacity: 1;
}

.ml-models-bg {
      background-image: url('ml.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
}

.ml-models-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
}

.project-card:hover .ml-models-bg {
      filter: grayscale(0%);
}

.project-card:hover .ml-models-bg::before {
      opacity: 1;
}

/*--------------- experience section --------------- */
.experience-item {
      margin-bottom: 20px;
      padding: 0;
      border: none;
      background: transparent;
      transition: none;
}

.experience-item:hover {
      background: transparent;
      border: none;
      transform: none;
}

.experience-header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 15px;
      margin-bottom: 0;
      border-bottom: none;
      padding-bottom: 0;
}

.role {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 400;
      margin: 0;
      letter-spacing: 0.5px;
}

.company {
      color: #4facfe;
      font-weight: 400;
      font-size: 0.85rem;
      background: transparent;
      padding: 0;
      border-radius: 0;
      border: none;
      position: relative;
}

.company::after {
      display: none;
}

.duration {
      color: #888;
      font-size: 0.8rem;
      font-weight: 300;
      background: transparent;
      padding: 0;
      border-radius: 0;
      border: none;
      font-style: normal;
}

.experience-item h6 {
      color: #fff;
      font-size: 0.9rem;
      margin-bottom: 15px;
      font-weight: 400;
      border-bottom: none;
      padding-bottom: 0;
      letter-spacing: 2px;
      text-transform: uppercase;
}

@media(max-width: 768px) {
      .experience-header {
            flex-direction: row;
            align-items: center;
            gap: 10px;
            border-bottom: none;
            padding-bottom: 0;
      }
      
      .role {
            font-size: 0.85rem;
            border-bottom: none;
            padding-bottom: 0;
            width: auto;
      }
      
      .experience-item {
            margin-bottom: 15px;
      }
      
      .experience-item h6 {
            font-size: 0.8rem;
      }
}

/*--------------- contact links section --------------- */
.contact-links-section {
      text-align: center;
      padding: 60px 0;
}

.contact-header {
      margin-bottom: 50px;
}

.contact-header h6 {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 20px;
      opacity: 0.8;
}

.contact-divider {
      width: 60px;
      height: 1px;
      background: linear-gradient(90deg, transparent, #fff, transparent);
      margin: 0 auto;
      opacity: 0.4;
}

.contact-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 50px;
}

.contact-link-card {
      background: transparent;
      border-radius: 0;
      padding: 0;
      border: none;
      transition: all 0.4s ease;
      position: relative;
      overflow: visible;
}

.contact-link-card::before {
      display: none;
}

.contact-link-card:hover {
      transform: none;
      border-color: transparent;
      box-shadow: none;
}

.contact-content {
      text-align: center;
      padding: 40px 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0;
      transition: all 0.4s ease;
      position: relative;
}

.contact-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.02);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
}

.contact-link-card:hover .contact-content {
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.02);
}

.contact-link-card:hover .contact-content::before {
      opacity: 1;
}

.contact-icon {
      font-size: 2.5rem;
      margin-bottom: 25px;
      display: block;
      opacity: 0.9;
}

.contact-link-card h5 {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 15px;
      font-weight: 400;
      letter-spacing: 1px;
      text-transform: uppercase;
}

.contact-link-card p {
      color: #aaa;
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 30px;
      font-weight: 300;
      letter-spacing: 0.3px;
}

.contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 25px;
      border-radius: 0;
      text-decoration: none;
      font-weight: 400;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: transparent;
      color: #fff;
      position: relative;
      overflow: hidden;
}

.contact-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.05);
      transition: left 0.3s ease;
      z-index: -1;
}

.contact-btn:hover {
      border-color: rgba(255, 255, 255, 0.6);
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
}

.contact-btn:hover::before {
      left: 0;
}

.btn-arrow {
      font-size: 0.9rem;
      transition: transform 0.3s ease;
}

.contact-btn:hover .btn-arrow {
      transform: translateX(3px);
}

@media(max-width: 768px) {
      .contact-links-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
      }
      
      .contact-content {
            padding: 30px 25px;
      }
      
      .contact-header h6 {
            font-size: 0.8rem;
            margin-bottom: 15px;
      }
      
      .contact-icon {
            font-size: 2rem;
            margin-bottom: 20px;
      }
      
      .contact-links-section {
            padding: 40px 0;
      }
}

/* --- contact aesthetic overrides (no boxes, beautiful fonts) --- */
.contact-links-section {
      font-family: 'Inter', "Roboto Mono", monospace;
}

.contact-links-section .contact-link-card {
      padding: 0;
      border: none;
      box-shadow: none;
}

.contact-links-section .contact-content {
      border: none;
      background: transparent;
      padding: 10px 0;
}

.contact-links-section .contact-link-card:hover .contact-content {
      border-color: transparent;
      background: transparent;
      transform: none;
}

.contact-links-section .contact-icon {
      opacity: 0.9;
      margin-bottom: 10px;
}

.contact-links-section .contact-link-card h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      font-size: 1.6rem;
      letter-spacing: 0.2px;
      text-transform: none;
      margin-bottom: 8px;
}

.contact-links-section .contact-link-card p {
      font-family: 'Inter', sans-serif;
      color: #bbbbbb;
      font-size: 0.95rem;
      margin-bottom: 10px;
}

.contact-links-section .contact-btn {
      border: none;
      background: transparent;
      padding: 0;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      letter-spacing: 0.5px;
      position: relative;
}

.contact-links-section .contact-btn::before {
      display: none;
}

.contact-links-section .contact-btn::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
}

.contact-links-section .contact-btn:hover::after {
      transform: scaleX(1);
}

.contact-links-section .contact-btn:hover {
      transform: none;
}

.contact-links-section .btn-arrow {
      font-size: 0.95rem;
}

@media(max-width: 768px) {
      .contact-links-section .contact-link-card h5 {
            font-size: 1.35rem;
      }
}

/*--------------- recruitment section --------------- */
.recruitment-cta {
      margin-top: 40px;
}

.recruitment-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
}

.recruitment-btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 0;
      text-decoration: none;
      font-weight: 400;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 1px solid rgba(255, 255, 255, 0.3);
      background: transparent;
      color: #fff;
      position: relative;
      overflow: hidden;
}

.recruitment-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.05);
      transition: left 0.3s ease;
      z-index: -1;
}

.recruitment-btn:hover::before {
      left: 0;
}

.recruitment-btn:hover {
      border-color: rgba(255, 255, 255, 0.6);
      color: #fff;
      text-decoration: none;
      transform: translateY(-2px);
}

@media(max-width: 768px) {
      .recruitment-buttons {
            flex-direction: column;
            gap: 15px;
      }
      
      .recruitment-btn {
            text-align: center;
      }
}

/*--------------- tech stack section --------------- */
.tech-stack-section {
      margin-top: 50px;
      margin-bottom: 40px;
}

.tech-stack-section h4 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 30px;
      font-weight: 400;
      letter-spacing: 1px;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 15px;
}

.tech-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 30px;
}

.tech-category {
      text-align: left;
      padding: 25px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0;
      background: rgba(255, 255, 255, 0.02);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
}

.tech-category::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.5s ease;
}

.tech-category:hover::before {
      left: 100%;
}

.tech-category:hover {
      border-color: rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.04);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.tech-category h6 {
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 20px;
      letter-spacing: 1px;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-bottom: 10px;
      position: relative;
}

.tech-category h6::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 30px;
      height: 1px;
      background: rgba(255, 255, 255, 0.4);
      transition: width 0.3s ease;
}

.tech-category:hover h6::after {
      width: 100%;
}

.tech-category ul {
      list-style: none;
      padding: 0;
      margin: 0;
}

.tech-category li {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 12px;
      font-weight: 300;
      letter-spacing: 0.3px;
      position: relative;
      padding-left: 20px;
      transition: color 0.3s ease;
}

.tech-category li:hover {
      color: #fff;
}

.tech-category li::before {
      content: '•';
      color: rgba(255, 255, 255, 0.6);
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
      transition: color 0.3s ease;
}

.tech-category li:hover::before {
      color: rgba(255, 255, 255, 0.9);
}

@media(max-width: 768px) {
      .tech-categories {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 25px;
      }
      
      .tech-category {
            padding: 20px;
      }
      
      .tech-stack-section h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
      }
      
      .tech-stack-section {
            margin-top: 40px;
            margin-bottom: 30px;
      }
}

/*--------------- work & projects link section --------------- */
.work-projects-link {
      padding: 50px 0;
      position: relative;
      overflow: hidden;
}

.work-projects-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
      border-radius: 20px;
      margin: 0 20px;
}

.link-content {
      position: relative;
      z-index: 2;
}

.work-projects-link h3 {
      font-size: 2rem;
      font-weight: 300;
      color: #fff;
      margin-bottom: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
}

.work-projects-link p {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 30px;
      font-weight: 300;
      line-height: 1.6;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
}

.cta-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 15px 30px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: #fff;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
}

.cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.6s ease;
}

.cta-button:hover::before {
      left: 100%;
}

.cta-button:hover {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
      border-color: rgba(255, 255, 255, 0.4);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-button span {
      position: relative;
      z-index: 2;
}

.button-arrow {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      position: relative;
      z-index: 2;
}

.cta-button:hover .button-arrow {
      transform: translateX(5px);
}

@media(max-width: 768px) {
      .work-projects-link {
            padding: 60px 20px;
      }
      
      .work-projects-link h3 {
            font-size: 2rem;
            margin-bottom: 15px;
      }
      
      .work-projects-link p {
            font-size: 1rem;
            margin-bottom: 30px;
            padding: 0 20px;
      }
      
      .cta-button {
            padding: 16px 30px;
            font-size: 0.9rem;
      }
}
