
:root{
  --color-1: #ffc200;
}

/* Sansation Font Face Declarations */
@font-face {
  font-family: 'Sansation';
  src: url('../font/Sansation/Sansation-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sansation';
  src: url('../font/Sansation/Sansation-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sansation';
  src: url('../font/Sansation/Sansation-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Sansation", "Inter", sans-serif;
  padding-top: 70px;
}
body::-webkit-scrollbar{
  width: 6px;
  background-color: white;
}
body::-webkit-scrollbar-thumb{
  background-color: rgb(161, 161, 235);
  border-radius: .2rem;
}
.full-screen {
  padding: 8rem 0;
}

.small-text {
  color: #5b5b5b;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  font-weight: normal;
  text-decoration: none !important;
  transition: all 0.4s ease;
}
a:hover {
  color: var(--color-1) !important;
}

.navbar-brand .uil {
  font-size: 40px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #5b5b5b;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: -1px;
}

h1 {
  color: #212121;
  font-size: 2.8em;
  margin: 24px 0;
}

h2 {
  color: #353535;
  font-size: 2.4em;
  font-weight: bold;
}

h3 {
  color: #484848;
}

h3,
b, strong {
  font-weight: bold;
}

.custom-btn {
  background: #eee;
  color: #5b5b5b;
  font-weight: bold;
  border-radius: 50px;
  padding: 13px 29px;
  font-size: 14px;
  line-height: normal;
  overflow: hidden;
  transition: all 0.4s ease;
}
.custom-btn:hover {
  color: var(--color-1);
}
.custom-btn.custom-btn-bg {
  background: #474559;
  color: #ffffff;
}
.custom-btn.custom-btn-bg:hover {
  background: var(--color-1);
  color: #ffffff !important;
}

.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  min-width: 360px;
  position: relative;
}

.animated-item {
  color: var(--color-1);
}

.animated-item {
  font-size: 38px;
  line-height: inherit;
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}
.animated-item:nth-child(2n+2) {
  animation-delay: 2s;
}
.animated-item:nth-child(3n+3) {
  animation-delay: 4s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  will-change: transform;
  transition: transform 200ms linear;
}
.navbar[class*="-unpinned"] {
  transform: translate(0, -150%);
}
.navbar[class*="-pinned"] {
  transform: translate(0, 0);
}
.navbar[class*="headroom--not-top"] {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  font-weight: bold;
}

.navbar-expand-sm .navbar-nav .nav-link {
  padding: 0 20px;
}

.nav-link {
  font-weight: bold;
  font-size: 16px;
  overflow: hidden;
}
.nav-link span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.nav-link span:before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: var(--color-1);
  font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:focus span,
.navbar-light .navbar-nav .nav-link:hover span {
  transform: translateY(-100%);
}

.navbar-light .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
}
.navbar-toggler:focus {
  outline: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
  transform: rotate(45deg);
  top: 6px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
  transform: rotate(-45deg);
  bottom: 1px;
}
.navbar-toggler .navbar-toggler-icon {
  background: #212121;
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  transition: all 0.4s ease;
  position: relative;
}

.copyright-text {
  font-size: 16px;
  font-weight: normal;
  display: block;
}

.color-mode {
  font-weight: bold;
  cursor: pointer;
}

.color-mode-icon {
  position: relative;
  right: 6px;
}
.color-mode-icon:after {
  font-family: 'unicons';
  content: '\ea9f';
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
}
.color-mode-icon.active:after {
  font-family: 'unicons';
  content: '\eb65';
  font-size: 30px;
  color: #ffffff;
}

.dark-mode {
  background: #0c0c0d;
}
.dark-mode .navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.dark-mode .navbar-light .navbar-nav .nav-link:hover {
  color: var(--color-1);
}
.dark-mode .navbar[class*="headroom--not-top"] {
  background: #0c0c0d;
  border-bottom: 1px solid #1f1f1f;
}
.dark-mode .small-text {
  background: #0d0c15;
  color: #ffffff;
}
.dark-mode .feature-card .uil,
.dark-mode .navbar-light .navbar-brand,
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6,
.dark-mode .color-mode {
  color: #ffffff;
}
.dark-mode .owl-carousel .owl-nav button.owl-next,
.dark-mode .owl-carousel .owl-nav button.owl-prev,
.dark-mode .owl-carousel button.owl-dot {
  color: #ffffff;
}
.timeline{

}
.timeline-wrapper {
  position: relative;
  padding: .6rem .6rem;
  /* border: 1px solid rgb(226, 218, 218); */
  border-radius: .4rem;
  margin-top: 1rem;
}
.timeline-wrapper:last-child:before {
  height: 0;
}
.timeline-wrapper:before {
  content: "";
  /* background: #ffffff; */
  width: 3px;
  height: 100%;
  position: absolute;
  left: 38px;
}

.timeline-yr {
  /* background: #ffffff; */
  border-radius: .4rem;
  position: absolute;
  width: 4rem;
  height: 4rem;
  line-height: 75px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .5s;
  cursor: pointer;
  /* border: 1px solid rgb(226, 218, 218); */
}
.timeline-yr:hover{
  transition: .5s;

}
.timeline-yr span {
  color: #67666b;
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 75px;
}

.timeline-info {
  display: inline-block;
  vertical-align: top;
  max-width: 432px;
}
.timeline-info small {
  color: #474559;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
.container-main-img-remix-example{
  width: 100%;
  height: auto;
  /* background-color: #0c0c0d; */
  overflow: hidden;
  border-radius: .6rem;
}
.container-main-img-remix-example img{
  max-width: auto;
  max-height: auto;
  object-fit: cover;
}

.owl-carousel .owl-nav span {
  display: none;
}
.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
  background: none;
  padding: 0;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-family: 'unicons';
  font-size: 100px;
  line-height: normal;
}
.owl-carousel .owl-nav .owl-prev:before {
  content: '\e833';
  left: -45px;
}
.owl-carousel .owl-nav .owl-next:before {
  content: '\e836';
  right: -45px;
}

.owl-theme .owl-nav [class*=owl-] {
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-size: inherit;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: var(--color-1);
}
.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #5b5b5b;
}
.google-map{
  border-radius: .6rem .6rem 0 0;

}
.google-map iframe {
  width: 100%;
  border-radius: .6rem .6rem 0 0;
}

.contact-form {
  position: relative;
}
.contact-form .form-control {
  background: transparent;
  border-radius: .4rem;
  outline: none;
  box-shadow: none;
  font-weight: bold;
  margin: 16px 0;
}
.contact-form .form-control:not(textarea) {
  height: 48px;
}
.contact-form .form-control:hover, .contact-form .form-control:focus {
  border-color: var(--color-1);
}
.contact-form .submit-btn {
  background: var(--color-1);
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.contact-form .submit-btn:hover {
  background: #474559;
}

.contact-info {
  background: #474559;
  border-radius: 0 0 .6rem .6rem;
  position: relative;
  bottom: 8px;
}
.contact-info p, .contact-info a {
  color: #f7f3f3;
}

.social-links .uil {
  color: #f7f3f3;
  font-size: 20px;
  display: block;
  margin: 5px 0;
}
.social-links .uil:hover {
  color: var(--color-1);
}
.container-icon-main{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: .3rem;
}
.container-icon-main img{
  width: 3.5rem;
}
.container-details-more-info{
 
}
.container-actions-contact-form{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: .4rem;
  padding: 0 .8rem;
}
.owl-carousel{
  border-radius: .8rem;
  /* padding: 1rem; */
  /* box-shadow: 10px 10px 60px rgb(170, 173, 190); */
}
.owl-carousel .item{

}
.owl-carousel .item .project-info {
  border-radius: .8rem;
  overflow: hidden;
  height: 70dvh;
  padding: 1rem;
}
.about-image{
  background-color: #0d0c15;
  overflow: hidden;
  max-width: 18rem;
  border: 8px solid rgb(32, 107, 147); /*var(--color-1);*/
  position: relative;
  animation: waveBorder 5s linear infinite;
}

@keyframes waveBorder {
  0% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1);
    box-shadow: 0 0 25px rgb(173, 203, 219);
  }
  25% {
    border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
    transform: scale(1.04);
    box-shadow: 0 0 30px rgb(173, 203, 219);
  }
  50% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1.02);
    box-shadow: 0 0 35px rgb(173, 203, 219);
  }
  75% {
    border-radius: 65% 35% 35% 65% / 65% 65% 35% 35%;
    transform: scale(1.04);
    box-shadow: 0 0 30px rgb(173, 203, 219);
  }
  100% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1);
    box-shadow: 0 0 25px rgb(173, 203, 219);
  }
}
@media (min-width: 1270px) {
  .owl-theme .owl-dots {
    position: relative;
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .full-screen {
    padding-bottom: 4rem;
  }

  .color-mode {
    display: none;
  }

  .about-image {
    margin-top: 4em;
  }

  .mobile-mt-2,
  .contact-form {
    margin-top: 2em;
  }

  .contact-info {
    padding: 0 2rem;
  }
  .container-main-img-remix-example img{
    
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
  }

  .animated-item {
    font-size: 28px;
  }

  .navbar-collapse {
    background: #ffffff;
    text-align: center;
    padding-bottom: 20px;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding: 3px 20px;
  }
}
@media (max-width: 580px) {
	.animated-info {
		min-width: 200px;
	}
  .animated-item {
    font-size: 30px;
  }

  .custom-btn-group {
    text-align: center;
  }

  .custom-btn {
    display: block;
    margin: 10px 0;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .timeline-info small {
    display: block;
    margin: 10px 0 0 0;
  }
}
@media (max-width: 320px) {
  .animated-text {
    margin-top: 0;
  }

  .about-text {
    text-align: center;
  }

  .full-screen {
    padding: 4rem 0;
  }

  .mobile-block {
    display: block;
  }

  .contact-info {
    flex-direction: column;
  }

  .social-links li {
    display: inline-block;
    vertical-align: top;
  }
}

/* Enhanced Contact Section Styles */
.contact-info-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-1) 0%, #ff6b6b 25%, #4ecdc4 50%, #45b7d1 75%, var(--color-1) 100%);
}

.contact-info-section h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.contact-info-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-1);
  border-radius: 2px;
}

.contact-info-section > p {
  text-align: center;
  font-size: 1.1rem;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

.contact-info-item {
  background: linear-gradient(135deg, #fff 0%, #f1f3f4 100%);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--color-1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.contact-info-item h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info-item h4::before {
  content: '📞';
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

.contact-info-item p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #495057;
}

.contact-info-item strong {
  color: #2c3e50;
  font-weight: 600;
}

.contact-info-item a {
  color: var(--color-1);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: #e6ac00;
}

.social-contact-section {
  margin-top: 2rem;
}

.social-contact-section h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-contact-section h4::before {
  content: '🌐';
  margin-right: 0.5rem;
  font-size: 1.4rem;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-contact-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.social-contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--color-1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.social-contact-item:hover::before {
  transform: translateX(0);
}

.social-contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: #333 !important;
}

.social-contact-item.whatsapp:hover {
  border-color: #25D366;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.social-contact-item.linkedin:hover {
  border-color: #0A66C2;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.1) 0%, rgba(10, 102, 194, 0.05) 100%);
}

.social-contact-item.facebook:hover {
  border-color: #1877F2;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.1) 0%, rgba(24, 119, 242, 0.05) 100%);
}

.social-contact-item.twitter:hover {
  border-color: #000;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.social-icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
  padding: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.social-contact-item:hover .social-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.social-info h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.social-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.4;
}

/* Projects Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  width: 100%;
}

.project-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-1) 0%, #ffdd44 50%, var(--color-1) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: var(--color-1);
}

/* Project Images Uniform Styling */
.project-info {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fefbfb;
  position: relative;
}

.project-info img {
  width: auto;
  height: auto;
  max-height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-info img {
  transform: scale(1.05);
}

/* Project Content Styling */
.project-content {
  padding: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  text-align: left;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  text-align: left;
}

.project-card:hover .project-title {
  color: var(--color-1);
}

.project-description {
  font-size: 0.9rem;
  color: #5a6c7d;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: flex-start;
}

.skill-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #495057;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.skill-tag:hover {
  background: linear-gradient(135deg, rgba(255, 194, 0, 0.1) 0%, rgba(255, 221, 68, 0.05) 100%);
  color: var(--color-1);
  border-color: var(--color-1);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(255, 194, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-links-grid {
    grid-template-columns: 1fr;
  }
  
  .social-contact-item {
    padding: 0.8rem;
  }
  
  .social-icon {
    margin-right: 0.8rem;
  }
  
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  
  .project-info {
    height: 200px;
  }
  
  .project-content {
    padding: 1.2rem;
  }
  
  .project-title {
    font-size: 1.1rem;
  }
  
  .project-description {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }
  
  .skill-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .project-info {
    height: 180px;
  }
  
  .project-content {
    padding: 1rem;
  }
  
  .project-title {
    font-size: 1rem;
  }
  
  .project-description {
    font-size: 0.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .skill-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
  
  .project-card {
    border-radius: 10px;
  }
}

/* Project Section Height */
.project {
  min-height: 80dvh;
  display: flex;
  align-items: center;
}

/* Enhanced Timeline Styles */
.timeline-period {
  display: flex;
  align-items: center;
  margin: 0.5rem 0 1rem 0;
  color: #6c757d;
  font-size: 0.9rem;
}

.timeline-period i {
  margin-right: 0.5rem;
  color: var(--color-1);
}

.timeline-skills {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.timeline-skills li {
  margin: 0.8rem 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.timeline-skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, var(--color-1) 0%, #ffdd44 100%);
}

.timeline-skills li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  border-color: var(--color-1);
}

.timeline-skills li:nth-child(1)::before {
  background: linear-gradient(135deg, #3498db 0%, #5dade2 100%);
}

.timeline-skills li:nth-child(2)::before {
  background: linear-gradient(135deg, #e74c3c 0%, #ec7063 100%);
}

.timeline-skills li:nth-child(3)::before {
  background: linear-gradient(135deg, #2ecc71 0%, #58d68d 100%);
}

.timeline-skills li:nth-child(4)::before {
  background: linear-gradient(135deg, #9b59b6 0%, #bb8fce 100%);
}

.timeline-skills li:nth-child(5)::before {
  background: linear-gradient(135deg, #f39c12 0%, #f7dc6f 100%);
}

.timeline-skills li:nth-child(6)::before {
  background: linear-gradient(135deg, #1abc9c 0%, #76d7c4 100%);
}

.timeline-skills li strong {
  color: #2c3e50;
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.timeline-skills li strong::before {
  content: '⚡';
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.timeline-skills li:nth-child(1) strong::before { content: '🏗️'; }
.timeline-skills li:nth-child(2) strong::before { content: '🎨'; }
.timeline-skills li:nth-child(3) strong::before { content: '⚙️'; }
.timeline-skills li:nth-child(4) strong::before { content: '🗄️'; }
.timeline-skills li:nth-child(5) strong::before { content: '✨'; }
.timeline-skills li:nth-child(6) strong::before { content: '🚀'; }

.timeline-skills li p {
  margin: 0;
  color: #5a6c7d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.timeline-achievements {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 10px;
  border-left: 4px solid var(--color-1);
}

.timeline-achievements h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.timeline-achievements p {
  margin: 0;
  line-height: 1.8;
  color: #495057;
}

.timeline-info h3 span {
  color: #2c3e50;
  font-weight: bold;
}

.timeline-info h3 small {
  color: var(--color-1);
  font-weight: 600;
  background: rgba(255, 194, 0, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-left: 1rem;
}

/* Full width timeline adjustments */
.timeline {
  max-width: 100%;
  width: 100%;
}

.timeline-wrapper {
  max-width: 100%;
  width: 100%;
}

.timeline-info {
  max-width: 100% !important;
  width: 100%;
}

/* Enhanced timeline layout for full width */
.timeline-skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.timeline-skills li {
  margin: 0;
}

/* Responsive timeline adjustments */
@media (max-width: 768px) {
  .timeline-skills {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .timeline-skills li {
    padding: 0.4rem 0.8rem;
    margin: 0;
  }
  
  .timeline-achievements {
    padding: 1rem;
  }
  
  .timeline-info h3 small {
    display: block;
    margin: 0.5rem 0 0 0;
  }
  
  /* Contact section responsive */
  .contact-info-section {
    padding: 2rem 1.5rem;
  }
  
  .contact-info-section h2 {
    font-size: 1.8rem;
  }
  
  .social-links-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-contact-item {
    padding: 1.2rem;
  }
  
  .social-icon {
    margin-right: 1rem;
  }
  
  .contact-info-item {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-info-section {
    padding: 1.5rem 1rem;
  }
  
  .contact-info-section h2 {
    font-size: 1.6rem;
  }
  
  .social-contact-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .social-icon {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}
