* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fff;
}

/* Main header */
.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
  height: 120px;
  border-bottom: 2px solid #000;
  background-color: #fff;
  padding-right: 0px;



  position: sticky;
  top: 0;
  z-index: 1000; /* Make sure it stays on top */
  background-color: white; /* Ensure background isn't transparent */
}

/* Left section: logo + divider */
.header-left {
  display: flex;
  align-items: flex-end;


     height: 100%;   
      align-items: center;
      justify-content: center;
      text-align: center;
}

/* Logo */
.header-logo {
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 4px;
    color: #111;
    margin-right: 75px;
    line-height: 1;
     
}

/* Divider that touches the bottom border */
.header-divider {
  width: 2px;
  height: 120px;
  background-color: #000;
  align-self: flex-end;
}

/* Right-side nav */

.nav-link:hover{
    background-color: black;
}


/* Nav links */
.nav-link {
  font-size: 63px;
  font-weight: bold;
  text-decoration: none;
  color: #111;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #007acc;
}




/* .nav-item {
  padding: 47px 30px;
  background-color: white;
  color: black;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
  z-index: 1;
  overflow: hidden;
} */
.header-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 00px;
  background: #fff;
}

.nav-item {
  position: relative;
  width: 140px;
  height: 120px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item span {
  position: relative;
  z-index: 1;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  transition: color 0.4s ease;
}

/* Background hover animation */
.nav-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease-in-out;
  z-index: 0;
}

/* Hover state */
.nav-item:hover::before {
  transform: scaleY(1);
}

.nav-item:hover span {
  color: white;
}



/* 
.gap{
  height: 10vh;
} */


.liam-section-container {
  display: flex;
  height: 100vh;
  overflow: hidden;

 
}

.liam-left-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 50px;
  font-size: 48px;
  line-height: 1.2;
  background-color: #fff;
  position: relative;
  padding-bottom: 10px;
  height: auto;
}
.liam-left-scrollable::-webkit-scrollbar {
  display: none;  /* Safari and Chrome */
}
.liam-left-scrollable h1{
  font-weight: 500;
  padding-bottom: 30px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.p1{
  padding-top: 10px;
}
.p1 {
  font-size: 38px;
  font-weight: 600;
  color: #ccc; /* default color */
  line-height: 1.5;
  text-transform: uppercase;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.fade-line {
  display: block;
  opacity: 0.3;
  transform: translateY(10px);
  transition: all 0.6s ease;
  color: #ccc;
}

.fade-line.visible {
  opacity: 1;
  transform: translateY(0);
  color: #111; /* black on reveal */
}




.liam-right-sticky {
  width: 43%;
  position: sticky;
  top: 0;
  height: 115vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;



}

.liam-right-sticky img {

  width: 100%;
  max-height: 100%;
  object-fit: contain;


   

  
}




.skills-container {
  display: flex;
  justify-content: left;
  gap: 150px;
  margin-top: 70px;
}
.skills-section{
  margin-top: 100px;
  margin-bottom: 70px;
}

.skill-item {
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.skill-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.skill-item p {
  font-weight: bold;
  font-size: 21px;
  margin: 0;
  font-weight: 400;
}

.skill-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.skills-title{
  font-size: 30px;
  text-decoration: underline;
  text-underline-offset: 10px; /* Adjust spacing here */
  font-weight: 400;
}









 


/* =================================================================== */




    .custom-exp-section {
      position: relative;
      padding: 0px 40px;
      max-width: 800px;
       margin-bottom: 80px ;   /* equal vertical spacing between sections */

      background: white;
      border-left: 4px solid #e0e0e0;
      margin-top: 40px;
    }


.custom-scroll-wrapper {
  position: absolute;
  left: -4px;
  top: 0px; /* fixed typo: 00px → 0px */
  height: 150px;
  width: 4px;
  overflow: hidden;
  z-index: 5;
}

.custom-scroll-track {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #e0e0e0;
  border-radius: 2px;
}

.custom-scroll-indicator {
  position: absolute;
  left: 0;
  width: 4px;
  height: 80px; /* ✅ shorter than wrapper for animation */
  background-color: black;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
    transition: opacity 0.3s ease, transform 0.01s linear;

}


/* =============================================================================================== */
  





      .custom-exp-content {
        padding-left: 30px;
       opacity: 0;
        transform: translateY(50px);
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
      }

      .custom-exp-content.animate-in {
        opacity: 1;
        transform: translateY(0);
      }
      .custom-exp-title {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        border-bottom: 2px solid #000;
        display: inline-block;
        margin-bottom: 40px;
      }

      .custom-job-title {
        font-size: 24px;
        font-weight: bold;
      }

      .custom-job-meta {
        color: gray;
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 14px;
      }

      .custom-exp-list {
        margin-top: 10px;
        line-height: 1.6;
        font-size: 17px;
      }









            /*




         .custom-scroll-track {
    position: absolute;
    left: -4px; 
    width: 4px;
    height: 120px;
    background-color: #e0e0e0;
    top: 40px; 
    border-radius: 2px;
    z-index: 5;
    
  }



      .custom-exp-section {
        position: relative;
        padding: 0px 40px;
        max-width: 800px;
        margin: 0 auto;
        background: white;
       
        min-height: 10vh;
      }

  .custom-scroll-indicator {
    position: absolute;
    left: -4px; 
    width: 4px;
    height: 70px;
    background-color: black;
    z-index: 10;
    pointer-events: none;
    transform: translateY(0);
    opacity: 0; 
    transition: opacity 0.3s ease, transform 0.1s linear;
  }
 */










    body.dark-mode {
      background: black;
      color: white;
    }

    body.dark-mode .panel {
      background-color: black;
    }

    body.dark-mode .panel img {
      filter: brightness(0.9) contrast(1.1);
    }

    .spacer {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f0f0f0;
      font-size: 2rem;
    }

    .scroll-section {
      position: relative;
      height: 300vh; /* Number of panels (3) * 100vh */
    }

    .sticky-container {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
    }




    .panels {
      display: flex;
      width: 300vw; /* 3 panels * 100vw */
      height: 100%;
      will-change: transform;
    }

    .panel {
      flex:  0 0 50vw;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: inherit;
      transition: background 0.3s ease, color 0.3s ease;
      margin-top: 50px;
      
       
        position: relative;
     
    }


    .panel::after {
  content: "";
  position: absolute;
  top: 80px;                    /* space from top */
  right: 0;
  width: 0;
  height: 440px;                /* border height */
  border-right: 2px solid black;
}
body.dark-mode .panel::after {
  border-right: 2px solid white;
}

    .panel img {
      width: 100%;
      max-width: 500px;
      margin-bottom: 1.3rem;
   
      transition: filter 0.3s ease;
      cursor: pointer;
      
    
      
    }
body.dark-mode .panel img:hover {
  filter: brightness(0.6); /* adjust value: 1 is normal, 0 is black */
}




.panel h2 {
  position: relative;
  font-size: 2rem;
  height: 2rem; /* adjust based on font-size */
  overflow: hidden;
  line-height: 2rem;
  margin: 0;
}

.custom{
  display: flex;
  
  justify-content: space-between;


  
  align-items: center; /* vertically center items if needed */
  width: 78%; /* or set a fixed width if you want */
  gap: 1rem; /* optional, adds space between items */
}
.custom button{
  border-radius: 50px;
  border-color: #ffffff;
  color: white;
  background-color: black;
  padding: 10px;
  font-size: 12px;
  
}




/* .custom h2 {
  font-size: 1.5rem;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-origin: bottom center;
  
} */

/* .flip-wrapper {
  perspective: 1000px;
  width: 100px; 
  height: 2rem;
}


.flip-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}


.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  font-size: 2rem;
}


.flip-front {
  transform: rotateX(0deg);
}


.flip-back {
  transform: rotateX(180deg);
  position: absolute;
  top: 0;
  left: 0;
}


.panel:hover .flip-card {
  transform: rotateX(180deg);
}
 */



 /* Flip wrapper remains the same */
.flip-wrapper {
  width: 200px;
  height: 2rem;
  overflow: hidden;
  position: relative;
}

/* Flip card holds both front and back vertically */
.flip-card {
  position: absolute;
  width: 100%;
  height: 200%; /* because it holds 2 texts stacked vertically */
  transition: transform 0.4s ease-in-out;
}

/* Slide both texts vertically */
.flip-front, .flip-back {
  height: 50%; /* half of .flip-card */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.8rem;
  padding-left: 5px;
}

/* On hover, move the card up */
.panel:hover .flip-card {
  transform: translateY(-50%);
}







.testimonial-wrapper {
    background-color: #f8f8fc;
    padding: 2rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 1117px;
    margin: auto;
    overflow: hidden;
}

.title {
  position: absolute;
  top: 3rem;
  left: 3.5rem;

  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: 3px solid black;
  text-align: left;
  width: fit-content;
}

.testimonial-title {
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: 3px solid black;
  text-align: left;
  margin: 6rem 0 2rem 4.5rem;
  width: fit-content;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 250px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* 2 slides */
}

.testimonial-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.testimonial-stars {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-size: 1.7rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.testimonial-author {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.testimonial-dots {
  margin-top: 1rem;
}

.testimonial-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: grey;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-dot.active {
  background: black;
}


.portfolio-bar{
  display: none;
}




.blog-section {
  display: flex;
  gap: 4rem;
  padding: 1.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-bottom: 4rem;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state after intersection */
.blog-section.blog-section-visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-card {
  border-left: 3px solid black;
  padding-left: 1.5rem;

  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-tag {
  border: 2px solid black;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.85rem;
}

.blog-date {
  font-size: 0.85rem;
  color: #222;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.blog-readmore {
  font-weight: bold;
  text-decoration: none;
  color: #111;
}




.hr-wrapper {
  display: flex;
  justify-content: center;
}

.hr9 {
  width: 87%;
  height: 2px;
  background: black;
  border: none;
  margin-top: 70px;
}




.custom-footer {
   
    padding: 4rem 5.1rem;
    background-color: white;
    font-family: Arial, sans-serif;
    padding-top: 2.5rem;
}

.custom-footer-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.custom-footer-left {
  
  min-width: 300px;
  width: 65%;
}

.custom-footer-heading {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.custom-footer-hire {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  color: black;
  margin: 1rem 0 2rem;
}

.custom-footer-copyright {
  display: flex;
  align-items: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.custom-footer-copyright-icon {
  font-size: 7rem;
  margin-right: 1rem;
}

.custom-footer-year {
  font-size: 7rem;
  font-weight: 500;
}

.custom-footer-credit {
  font-size: 0.85rem;
  margin-top: 1rem;
  color: #333;
}

.custom-footer-link {
  color: black;
  text-decoration: underline;
  font-weight: bold;
}

.custom-footer-right {
 width: 35%;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid black;
  padding-left: 40px;
}










.icon-cross-grid {
    display: grid
;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 380px;
    height: 380px;
    position: relative;
    /* margin: 50px auto; */
}

.icon-item0 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  background-color: white;
  z-index: 1; /* ensure it's above the lines */

  border-right: 2px solid black;
  margin-bottom: 10px;
 

}
.icon-item1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  background-color: white;
  z-index: 1; /* ensure it's above the lines */
  


 
 
}
.icon-item2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  background-color: white;
  z-index: 1; /* ensure it's above the lines */
   
      border-right: 2px solid black; 
      margin-top: 20px;
     
}
.icon-item3 {
  margin-left: 20px;
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  background-color: white;
  z-index: 1; /* ensure it's above the lines */
border-top: 2px solid black;
 
}

/* Create the lines using pseudo-elements */
.icon-cross-grid::before,
.icon-cross-grid::after {
  content: "";
  position: absolute;
  background-color: black;
  z-index: 0;
  margin-left: -7px;
}

/* Vertical line — top and bottom with a middle gap */
.icon-cross-grid::before {
  width: 2px;
  height: calc(50% - 10px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 calc(100% + 20px) 0 0 black;
}

/* Horizontal line — left and right with a middle gap */
.icon-cross-grid::after {
  height: 2px;
  width: calc(50% - 10px);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: calc(100% + 20px) 0 0 0 black;
}





    body.dark-mode .header-bar {
  background: black;
  color: white;
  border-bottom: 2px solid white;
}

body.dark-mode .header-navigation{
  background-color: black;
  color: white;
}
body.dark-mode .header-logo{
  color: white;
}
body.dark-mode .header-divider{
  background-color: white;
}





.nav-bar-clone {
  display: none;
}
.menu-drawer-clone{
  display: none;
}






@media (max-width: 767px){

  .header-bar{
    display: none;
  }
  .blog-section{
    flex-direction: column;
  }
  .custom-footer-container{
    flex-direction: column;
  }
.liam-section-container {
        flex-direction: column;
        height: auto;
        overflow: hidden;
        margin-right: 20px;
        margin-left: 20px;
    }
.liam-left-scrollable{
 order: 2;


     overflow-y: auto;
    padding: 0px;
    font-size: 34px;
    line-height: 1.2;
    background-color: #fff;
    position: relative;
    padding-bottom: 10px;

}
    .liam-right-sticky {
        margin-top: 0px;
        order: 1;
        padding-top: 25px;
        width: 100%;
        height: auto;
        padding-bottom: 30px;
    }
.panels {
flex-direction: column;
   width: auto;
    height: auto;
    /* will-change: transform; */
}
.sticky-container {
    position: relative;
    top: 0;
    height: auto;
    /* overflow: hidden; */
    flex-direction: column  
; 
    align-items: center;
}
.custom-footer-copyright-icon {
    font-size: 4rem;
    margin-right: 1rem;
}
.custom-footer-year {
    font-size: 4rem;
    font-weight: 500;
}
.custom-footer-heading {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.skills-container{
  flex-direction: column;
}
.custom-footer-left {
min-width: 0px;
width: 100%;
margin-bottom: 40px;
}

.custom-footer-right {
    width: 100%;
    min-width: 250px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-left: 0px solid black;
      border-top: 2px solid black;
    padding-left: 10px;
    padding-top: 30px;
}












/* Navbar */
.nav-bar-clone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 2px solid #111;

  font-family: Arial, sans-serif;
  padding-bottom: 20px;


  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}

.logo-clone {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Hamburger Icon */
.hamburger-clone {
  width: 40px;
  height: 21px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-clone span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #111;
  transition: all 0.3s ease;
}

.hamburger-clone span:first-child {
  top: 0;
}

.hamburger-clone span:last-child {
  bottom: 0;
}

/* Animation to X */
.hamburger-clone.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger-clone.active span:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* Menu Drawer */
.menu-drawer-clone {
  position: absolute;
  top: 60px; /* Adjust based on your navbar height */
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 1.5rem 1rem;
 
  z-index: 999; /* ensures it's on top */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.menu-drawer-clone ul {
  list-style: none;
}

.menu-drawer-clone ul li {
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.menu-drawer-clone ul li a {
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
}

/* Show menu */
.menu-drawer-clone.show {
  display: flex;
}

.p1 {
    font-size: 24px;
    font-weight: 600;
    color: #ccc;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.skills-container {
    display: flex;
    justify-content: left;
    gap: 50px;
    margin-top: 70px;
}
.custom-scroll-track{
  display: none;
}
.custom-scroll-wrapper{
  display: none;
}
.custom-exp-section {
    position: relative;
    padding: 0px 0px;
    max-width: 800px;
    margin-bottom: 70px;
    background: white;
    border-left: 0px solid #e0e0e0;
    margin-top: 40px;
}
.custom-exp-content {
    padding-left: 0px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.scroll-section {
    position: relative;
    height: auto;
}

.title {
    position: absolute;
    top: -2rem;
    left: 1rem;
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 3px solid black;
    text-align: left;
    width: fit-content;
}
.custom button {
    border-radius: 50px;
    border-color: #ffffff;
    color: white;
    background-color: black;
    padding: 5px;
    font-size: 8px;
}
.flip-front, .flip-back {
    height: 50%;
    display: flex
;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    padding-left: 0px;
}
.custom {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    gap: 1rem;
}

.panel {
    flex: 0 0 50vw;
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 25px;
    position: relative;
}


.testimonial-title {
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 3px solid black;
    text-align: left;
    margin: 6rem 0 2rem 1.5rem;
    width: fit-content;
}
.blog-section {
    display: flex
;
    gap: 4rem;
    padding: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.custom-footer {
    padding: 4rem 20px;
    background-color: white;
    font-family: Arial, sans-serif;
    padding-top: 2rem;
}




}



@media (min-width: 768px) and (max-width: 991.98px){

   .header-bar{
    display: none;
  }
  .blog-section{
    flex-direction: column;
  }
  .custom-footer-container{
    flex-direction: column;
  }
.liam-section-container {
        flex-direction: column;
        height: auto;
        overflow: hidden;
        margin-right: 20px;
        margin-left: 20px;
    }
    
.liam-left-scrollable{
 order: 2;


     overflow-y: auto;
    padding: 0px;
    font-size: 34px;
    line-height: 1.2;
    background-color: #fff;
    position: relative;
    padding-bottom: 10px;

}
    .liam-right-sticky {
        margin-top: 0px;
        order: 1;
        padding-top: 25px;
        width: 100%;
        height: auto;
        padding-bottom: 30px;
    }
.panels {
flex-direction: column;
   width: auto;
    height: auto;
    /* will-change: transform; */
}
.sticky-container {
    position: relative;
    top: 0;
    height: auto;
    /* overflow: hidden; */
    flex-direction: column  
; 
    align-items: center;
}
.custom-footer-copyright-icon {
    font-size: 4rem;
    margin-right: 1rem;
}
.liam-left-scrollable h1 {
    font-size: 133px;
    font-weight: 500;
    padding-bottom: 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.custom-footer-year {
    font-size: 4rem;
    font-weight: 500;
}
.custom-footer-heading {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.skills-container{
  flex-direction: column;
}
.custom-footer-left {
min-width: 0px;
width: 100%;
margin-bottom: 40px;
}

.custom-footer-right {
    width: 100%;
    min-width: 250px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-left: 0px solid black;
      border-top: 2px solid black;
    padding-left: 10px;
    padding-top: 30px;
}












/* Navbar */
.nav-bar-clone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 2px solid #111;

  font-family: Arial, sans-serif;
  padding-bottom: 20px;


  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}

.logo-clone {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Hamburger Icon */
.hamburger-clone {
  width: 40px;
  height: 21px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-clone span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #111;
  transition: all 0.3s ease;
}

.hamburger-clone span:first-child {
  top: 0;
}

.hamburger-clone span:last-child {
  bottom: 0;
}

/* Animation to X */
.hamburger-clone.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger-clone.active span:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* Menu Drawer */
.menu-drawer-clone {
  position: absolute;
  top: 60px; /* Adjust based on your navbar height */
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 1.5rem 1rem;
 
  z-index: 999; /* ensures it's on top */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.menu-drawer-clone ul {
  list-style: none;
}

.menu-drawer-clone ul li {
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.menu-drawer-clone ul li a {
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
}

/* Show menu */
.menu-drawer-clone.show {
  display: flex;
}

    .p1 {
        font-size: 54px;
        font-weight: 600;
        color: #ccc;
        line-height: 1.4;
        text-transform: uppercase;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

.skills-container {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 150px;
    margin-top: 70px;
}
.skills-section {
    margin-top: 140px;
    margin-bottom: 120px;
}

.panel img {
    width: 100%;
    max-width: 740px;
    margin-bottom: 1.3rem;
    transition: filter 0.3s ease;
    cursor: pointer;
}
.panel::after {
    content: "";
    position: absolute;
    top: 80px;
    right: 0;
    width: 0;
    height: 440px;
    border-right: 0px solid black;
}
.custom-exp-content {
    padding-left: 0px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.scroll-section {
    position: relative;
    height: auto;
}

.title {
    position: absolute;
    top: -2rem;
    left: 1rem;
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 3px solid black;
    text-align: left;
    width: fit-content;
}
.custom button {
    border-radius: 50px;
    border-color: #ffffff;
    color: white;
    background-color: black;
    padding: 5px;
    font-size: 8px;
}
.flip-front, .flip-back {
    height: 50%;
    display: flex
;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    padding-left: 0px;
}
.custom {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    gap: 1rem;
}

.panel {
    flex: 0 0 50vw;
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 25px;
    position: relative;
}


.testimonial-title {
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 3px solid black;
    text-align: left;
    margin: 6rem 0 2rem 1.5rem;
    width: fit-content;
}
.blog-section {
    display: flex
;
    gap: 4rem;
    padding: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.custom-footer {
    padding: 4rem 20px;
    background-color: white;
    font-family: Arial, sans-serif;
    padding-top: 2rem;
}



}












@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {

    
    .header-bar{
    display: none;
  }
  .blog-section{
    flex-direction: column;
  }
  .custom-footer-container{
    flex-direction: column;
  }
.liam-section-container {
        flex-direction: column;
        height: auto;
        overflow: hidden;
        margin-right: 20px;
        margin-left: 20px;
    }
    
.liam-left-scrollable{
 order: 2;


     overflow-y: auto;
    padding: 0px;
    font-size: 34px;
    line-height: 1.2;
    background-color: #fff;
    position: relative;
    padding-bottom: 10px;

}
    .liam-right-sticky {
        margin-top: 0px;
        order: 1;
        padding-top: 25px;
        width: 100%;
        height: auto;
        padding-bottom: 30px;
    }
.panels {
flex-direction: column;
   width: auto;
    height: auto;
    /* will-change: transform; */
}
.sticky-container {
    position: relative;
    top: 0;
    height: auto;
    /* overflow: hidden; */
    flex-direction: column  
; 
    align-items: center;
}
.custom-footer-copyright-icon {
    font-size: 4rem;
    margin-right: 1rem;
}
.liam-left-scrollable h1 {
    font-size: 133px;
    font-weight: 500;
    padding-bottom: 30px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.custom-footer-year {
    font-size: 4rem;
    font-weight: 500;
}
.custom-footer-heading {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.skills-container{
  flex-direction: column;
}
.custom-footer-left {
min-width: 0px;
width: 100%;
margin-bottom: 40px;
}

.custom-footer-right {
    width: 100%;
    min-width: 250px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border-left: 0px solid black;
      border-top: 2px solid black;
    padding-left: 10px;
    padding-top: 30px;
}












/* Navbar */
.nav-bar-clone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 2px solid #111;

  font-family: Arial, sans-serif;
  padding-bottom: 20px;


  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}

.logo-clone {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Hamburger Icon */
.hamburger-clone {
  width: 40px;
  height: 21px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-clone span {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #111;
  transition: all 0.3s ease;
}

.hamburger-clone span:first-child {
  top: 0;
}

.hamburger-clone span:last-child {
  bottom: 0;
}

/* Animation to X */
.hamburger-clone.active span:first-child {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger-clone.active span:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* Menu Drawer */
.menu-drawer-clone {
  position: absolute;
  top: 60px; /* Adjust based on your navbar height */
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  padding: 1.5rem 1rem;
 
  z-index: 999; /* ensures it's on top */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.menu-drawer-clone ul {
  list-style: none;
}

.menu-drawer-clone ul li {
  margin-bottom: 1.2rem;
  font-weight: bold;
}

.menu-drawer-clone ul li a {
  text-decoration: none;
  color: #111;
  font-size: 1.1rem;
}

/* Show menu */
.menu-drawer-clone.show {
  display: flex;
}

    .p1 {
        font-size: 70px;
        font-weight: 600;
        color: #ccc;
        line-height: 1.4;
        text-transform: uppercase;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

.skills-container {
        display: flex;
        flex-direction: row;
        justify-content: left;
        gap: 257px;
        margin-top: 70px;
    }
.skills-section {
    margin-top: 140px;
    margin-bottom: 120px;
}

.panel img {
    width: 100%;
    max-width: 800px;
    margin-bottom: 1.3rem;
    transition: filter 0.3s ease;
    cursor: pointer;
}
.hr9 {
    width: 96%;
    height: 2px;
    background: black;
    border: none;
    margin-top: 70px;
}
.panel::after {
    content: "";
    position: absolute;
    top: 80px;
    right: 0;
    width: 0;
    height: 440px;
    border-right: 0px solid black;
}
.custom-exp-content {
    padding-left: 0px;
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}
.scroll-section {
    position: relative;
    height: auto;
}

.title {
    position: absolute;
    top: -2rem;
    left: 1rem;
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 3px solid black;
    text-align: left;
    width: fit-content;
}
.custom button {
    border-radius: 50px;
    border-color: #ffffff;
    color: white;
    background-color: black;
    padding: 5px;
    font-size: 8px;
}
.flip-front, .flip-back {
    height: 50%;
    display: flex
;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    padding-left: 0px;
}
.custom {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    gap: 1rem;
}

.panel {
    flex: 0 0 50vw;
    height: 100%;
    display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: inherit;
    transition: background 0.3s ease, color 0.3s ease;
    margin-top: 25px;
    position: relative;
}


.testimonial-title {
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 3px solid black;
    text-align: left;
    margin: 6rem 0 2rem 1.5rem;
    width: fit-content;
}
.blog-section {
    display: flex
;
    gap: 4rem;
    padding: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.custom-footer {
    padding: 4rem 20px;
    background-color: white;
    font-family: Arial, sans-serif;
    padding-top: 2rem;
}



}





@media (min-width: 1400px){
  /* .liam-left-scrollable h1{
    font-size: 7rem;
  } */
  .header-bar{
    padding: 0 100px;
  }
  .liam-right-sticky{
    padding-top: 0px;
    width: 48%;
  }
  .liam-right-sticky img{
    width: 85%;
  }
  /* .skills-title{
    font-weight: 400;
  }
  .skill-item p{
    font-weight: 400;
  }
  .custom-exp-title{
    font-weight: 400;
  }
  .custom-job-title{
    font-weight: 400;
  } */



  .panel img{
    max-width: 570px;
  }
  .panel::after{
    top: 160px;
    height: 60vh;
  }
  .title{
    top: 8rem;
    left: 4rem;
  }
  .testimonial-quote{
    max-width: 1000px;
  }
  .testimonial-wrapper{
    max-width: 1200px;
  }
  .testimonial-title{
    margin-left: 7.6rem;
  }
  .blog-section{
    padding-left: 7.5rem;
    padding-right: 7.5rem;
    gap: 2rem;
  }
  .custom-footer{
    padding: 4rem 7.5rem;
  }
  .hr9{
    width: 83%;
  }






}