/* Add this to your CSS file */
.container,
.container-about,
.container-service,
.experience-container,
.container-portfolio,
.container-price {
  transition: margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

body {
  margin: 0;
  font-family: "Montserrat", serif;
  display: block;
  background-color: #1E2329;
}




/* Add to your CSS file */
.animation_left.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.animation_left.animate-out {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.animation_right.animate-in {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}
.animation_right.animate-out {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.3s ease-out, transform 1.3s ease-out;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.iamclass{
  width: 320PX;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.iamclass h5{
  font-weight: 500;
}

.typewrite1 { 
  color: #FDC101;
  text-decoration: none;
}

.typewrite { 
  font-size: 30px;
  font-weight: 500;
  color: #FDC101;
  text-decoration: none;
}

.navbar_logo {
  display: flex;

  
}
.navbar_logo img {
  width: auto;
  margin: 10px;
  transition: 
    transform 0.3s,
    box-shadow 0.3s; 
}
.navbar_logo img:hover {
  animation-delay: 0.5ms;
  transform: scale(1.05);
  transition: 
    transform 0.3s,
    box-shadow 0.3s;
}

.navbar-menu {
  display: none;
  gap: 1rem;
}

.navbar-menu a {
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  color: white;
  padding: 15px;
  font-size: 15px;
  transition: 0.5s;
}



.navbar-menu a:hover{
  transition: 0.5s;
  color: #FDC101;
  font-weight: 550;
}

.menu-button {
  display: none;
  background: none;
  color: #FDC101;
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid #FDC101; 
  transition: 0.8s;
}
.menu-button:hover {
  background-color: #FDC101;
  color: #1E2329;
  border: 1px solid #FDC101;
  transition: 0.5s;
}

.dropdown-menu {
  display: none;
  flex-direction: column;
  background-color: 31E2329;
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100vw;
  right: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 999;
  background-color: #2f3742;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.dropdown-menu.show {
  display: flex;
  opacity: 1;

}

.dropdown-menu a {
  text-decoration: none;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 18px;
  box-sizing: border-box;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover{
  color: #FDC101;
}

@media (max-width: 1000px) {
  .navbar-menu {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

@media (min-width: 1001px) {
  .dropdown-menu {
    display: none !important;
  }
  .navbar-menu {
    display: flex !important;
  }
}

/* Hero Page */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px 0px 50px; 

}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  flex-direction: row;
}

.left-column, .right-column {
  width: 700px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

h1 {
  font-size: 2.5em;
  color: white;
  margin: 0;
}

.buttonHero button{
  font-family: "Montserrat", serif;
  text-decoration: none;
}

button {
  margin: 10px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  background-color: #007BFF;
  color: white;
  border-radius: 5px;
}



.right-column-hero {
  width: auto;
  height: 550px;
}


/* Button */

.buttonHero{
  width: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_download_cv{
  width: 200px;
  height: 50px;
  margin: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: #FDC101;
  color: #1E2329;
  border-radius: 24px;
  transition: 0.5s;
}
.btn_download_cv:hover{
  animation-delay: 0.5ms;
  font-size: large;
  transition: 0.5s;
}

.btn_contectme{
  width: 200px;
  height: 50px;
  margin: 10px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: #FDC101;
  border-radius: 24px;
  border: 2px solid #FDC101;
  transition: 0.5s;
}
.btn_contectme:hover{
  background-color: #FDC101;
  color: #1E2329;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
  transition: 
    background-color 0.3s,
    color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  font-size: large;
  transition: 0.3s;
}


.imgHero_box{
  display: flex;
  justify-content: center;
  align-items: center;

}


.imgHero{
  height: auto;
  width: 650px;
  transition: 0.5s;

}

/* Hero container full screen and responsive */

.container#heropage {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 40px 5vw;
  gap: 40px;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .container#heropage {
    flex-direction: column;
    min-height: auto;
    padding: 40px 2vw;
    gap: 20px;
  }
  .left-column, .right-column {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1000px) {
  .container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: auto;
    height: auto;
  }
  .left-column{
      width: 100%;
  }

  .right-column {
    width: 100%;
  }
  .imgHero{
    margin-top: 20px;
    width: 80%;
    height: auto;
  }
  .buttonHero {
    margin-top: 30px;
    margin-bottom: 20px;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
}


/* ...existing code... */

/* Animation for left column */
.left-column {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77,0,0.175,1);
}

.left-column.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.left-column.animate-out {
  opacity: 0;
  transform: translateX(-60px);
}

/* Animation for right column */
.right-column {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77,0,0.175,1);
}

.right-column.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.right-column.animate-out {
  opacity: 0;
  transform: translateX(60px);
}

/* Reusable scroll-in/out animation classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.out-view {
  opacity: 0;
  transform: translateY(40px);
}





/* About Page */

.container-about{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 50px 0 10px 0;
}
.about-text{
  font-size: 18px;
  color: white;
  padding: 20px;
}

.about-left-column{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.about-right-column h1{
  color: white;
  font-size: 24px;

}
.about-right-column h1 span {
  color: #FDC101;
}

.about-right-column h4 {
  margin: 0;
  padding: 0;
  text-align: left;
}
.about-text{
  width: 600px;
  text-align: left;
  font-size: 18px;
}

.aboutimghero{
  height: 500px;
  border-radius: 16px;
  transition: 0.5s;
}

.aboutimghero:hover{
  animation-delay: 0.5ms;
  transform: scale(1.05);
  transition: 
    transform 0.3s, 
    box-shadow 0.3s;
}


.about-right-column{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Skill progress */

.progress-bar {
  background-color: #2f3742;
  border-radius: 5px;
  overflow: hidden;
  height: 10px;
  margin-top: 5px;
}

.progress {
  height: 100%;
  background-color: #FDC101;
  transition: width 0.5s ease-in-out;
}
.skill {
  margin-bottom: 15px;
  margin-top: 20px;
}
.skill span {
  color: #FDC101;
  font-size: 14px;
  float: right;
}

/* Initial state for progress bars */
.progress {
  width: 0;
  transition: width 2s ease-in-out;
}

/* State when element is in view */
.progress.in-view {
  width: var(--progress-width);
}

@media (max-width: 1000px) {
  .about-left-column {
    display: none;
  }

  .about-right-column {
    width: 80%;
    height: auto;
  }
  .about-text {
    text-align: center;
    width: 100%;
  }
}

/* -- Service -- */

.container-service{
  display: block;
  padding-top: 50px;
}

.service-header{
  justify-content: center;
  align-items: center;
  padding: 0 0 40px 0;
}
.service-header h1{
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  color: white;
}
.service-header h1 span {
  color: #FDC101;
}

.service-header p {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  color: white;
}
.service-header p span {
  color: #FDC101;
  font-weight: 800;
}

.container-item{
  display: flex;
  justify-content: center;
  padding: 20px 0 40px 0;
}

.service-item {
  background-color: #2f3742;
  width: 280px;
  height: 240px;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin: 0 30px 0 30px;

  transition: 0.5s;

}
.service-item img {
  width: 90px;
  border-radius: 16px;
}

.service-item h3 {
  font-size: 20px;
  color: #ffffff;
  margin: 10px 0 10px 0;
}
.service-item p {
  font-size: 16px;
  color: white;
  margin: 0;
}

/* service box hover */
.service-item:hover {
  transform: translateY(-10px);
  border: #FDC101 1px solid;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}


/* Responsive design for screens less than 1000px */
@media (max-width: 1000px) {
  .container-service {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container-item {
    flex-direction: column;
    align-items: center;
    width: 80%;

  }

  .service-item {
    width: 100%;
    margin: 20px 0 0 0;
  }
}



/* Experience */

.experience-header {
padding: 50px 0 50px 0;
}
.experience-header h1{
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
}

.experience-header h1 span {
  color: #FDC101;
}

.experience-header p {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  color: white;
}

.experience-header p span {
  color: #FDC101;
  font-weight: 800;
}





.timeline {
  padding: 0px 5%;
  max-width: 1300px;
  margin: 0 auto;
}
.timeline > .timeline-item {
  display: flex;
  align-items: flex-start;
}
.timeline > .timeline-item > div {
  flex: 1;
  padding: 20px 40px;
}
.timeline > .timeline-item > div:last-child {
  text-align: left;
  padding-bottom: 40px !important;
}
.timeline > .timeline-item > div:first-child::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FDC101;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(247, 182, 54, 0.2);
}
.timeline > .timeline-item:nth-child(odd) > div:first-child {
  text-align: right;
  position: relative;
}
.timeline > .timeline-item:nth-child(odd) > div:first-child::after {
  right: -17px;
}
.timeline > .timeline-item:nth-child(odd) > div:last-child {
  text-align: left;
  border-left: 2px solid #e0e0e0;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-date > div {
  margin-right: 0px;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-date > img {
  right: 11%;
  left: inherit;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-content > h2 {
  text-align: left !important;
  padding-bottom: 20px;
}
.timeline > .timeline-item:nth-child(odd) > .timeline-content > p > img {
  right: 0;
}
.timeline > .timeline-item:nth-child(even) > div:first-child {
  order: 2;
  text-align: left;
  position: relative;
  
}
.timeline > .timeline-item:nth-child(even) > div:first-child::after {
  left: -1px;
}
.timeline > .timeline-item:nth-child(even) > div:last-child {
  order: 1;
  text-align: left;
  border-right: 2px solid #e0e0e0;
}
.timeline > .timeline-item:nth-child(even) > .timeline-date > div {
  margin-left: 0px;
}
.timeline > .timeline-item:nth-child(even) > .timeline-date > img {
  left: 11%;
  right: inherit;
}
.timeline > .timeline-item:nth-child(even) > .timeline-content > h2 {
  text-align: right !important;
  padding-bottom: 20px;
}
.timeline > .timeline-item:nth-child(even) > .timeline-content > p > img {
  right: inherit;
  left: 0;
  transform-origin: bottom left;
}
.timeline > .timeline-item:nth-child(even) > .timeline-content > p > button {
  right: inherit;
  left: 15px;
}
.timeline > .timeline-item .timeline-date {
  position: relative;
}
.timeline > .timeline-item .timeline-date > img {
  position: absolute;
  filter: grayscale(100%);
  opacity: 0.06;
  transform: scale(1.2);
  transform-origin: center;
  left: 11%;
}
.timeline > .timeline-item .timeline-date > div {
  background-color: #FDC101;
  border-radius: 50px;
  color: #1E2329;
  text-align: center;
  max-width: max-content;
  margin: auto;
  padding: 10px 30px;
}
.timeline > .timeline-item .timeline-content .fa-icon {
  font-size: 10;
}
.timeline > .timeline-item .timeline-content > h2 {
  color: #FDC101;;
  margin: 0px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 7px;
}
.timeline > .timeline-item .timeline-content > h2 span {
  color: #FDC101;
  font-weight: bold;
  font-size: 0.6em;
  letter-spacing: 2px;
  margin-left: 5px;
}
.timeline > .timeline-item .timeline-content > p {
  color:white;
  font-size: 16px;
  padding: 20px;
  background-color: #2f3742;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  line-height: 35px;
  padding-bottom: 60px;
  min-height: 100px;
}




.timeline > .timeline-item .timeline-content > p > button {
  background: no-repeat;
  outline: none;
  color: #FDC101;
  border: none;
  padding: 7px 15px;
  position: absolute;
  bottom: 15px;
  border-radius: 30px;
  left: 15px;
  box-shadow: 0 0px 2px rgba(103, 58, 183, 0.1);
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 0.9em;
  font-weight: normal;
  transition: all 0.5s ease;
}
.timeline > .timeline-item .timeline-content > p > button:hover {
  background: #FDC101;
  color: #1E2329;
  box-shadow: 0 5px 10px rgba(103, 58, 183, 0.1);

}
@media (max-width: 767px) {
  .timeline > .timeline-item {
    flex-direction: column;
    border-left: 2px solid #e0e0e0;
  }
  .timeline > .timeline-item .timeline-date > img {
    display: none;
  }
  .timeline > .timeline-item > div {
    border-width: 0px !important;
    text-align: left !important;
    order: unset !important;
  }
  .timeline > .timeline-item > div::after {
    left: 0% !important;
  }
  .timeline > .timeline-item:nth-child(odd) > .timeline-content > h2 {
    text-align: left !important;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > h2 {
    text-align: left !important;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > p > img {
    right: 0;
    left: inherit;
    transform-origin: bottom right;
  }
  .timeline > .timeline-item:nth-child(even) > .timeline-content > p > button {
    left: 15px;
    right: inherit;
  }
}


/* Education page */


.education_header{
  padding: 50px 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}


.education_header h1 {
  text-transform: uppercase;
  text-align: left;
  font-size: 24px;
  color: white;
}
.education_header h1 span {
  color: #FDC101;
}
.education_header p {
  text-align: left;
  font-weight: 700;
  font-size: 32px;
  color: white;
}
.education_header p span {
  color: #FDC101;
  font-weight: 800;
}



.container_education{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}


.education_part{
  width: 600px;
}

.education_part_header{
  border: #2f3742 1px solid;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  margin-right: 10px;
}

.education_part_right{

  width: 600px;
  border: #2f3742 1px solid;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  margin-left: 10px;
}

.education_part_right h2{
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 0 10px 0;
}




.education_part_header h2{
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  padding: 0 0 10px 0;
}



.education_part_header p{
  font-size: 14px;
  color: white;
  padding: 0 0 10px 0;
}
.education_part_header a{
  font-size: 12px;
  text-decoration: none;
  color: #FDC101;
  border: #FDC101 1px solid;
  border-radius: 24px;
  padding: 10px 10px;
  transition: 0.5s;
}

.education_part_header a:hover{
  font-size: 14px;
  background-color: #FDC101;
  color: #1E2329;
  font-weight: 500;
  transition: 0.5s;
}




.technical_skill_items{
  padding-top: 10px;

}



.technical_skill_items img{
  width: 50px;
  margin-right: 15px;
}



@media (max-width: 1000px) {
  .container_education {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .education_part {
    width: 80%;
    
  }

  .education_part_header {
    margin: 0 0 20px 0;
  }


  .education_part_right {
    width: 80%;
    margin: 0 0 20px 0;
  }
  .education_part_right h2 {
    font-size: 18px;
  }
  .education_part_header p {
    font-size: 14px;
  }


}


/* Portfolio page */


.portfolio-header {
  justify-content: center;
  align-items: center;
  padding: 50px 0 10px 0;
}
.portfolio-header h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  color: white;
}
.portfolio-header h1 span {
  color: #FDC101;
}
.portfolio-header p {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  color: white;
}
.portfolio-header p span {
  color: #FDC101;
  font-weight: 800;
}


.container_portfolio_item{
  display: flex;
  justify-content: center;
  padding: 20px 0 40px 0;
  flex-wrap: wrap;
}

.wrapper {
  width: 100%;
  padding: 20px 0;

}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  letter-spacing: 3px;
  cursor: pointer;
  line-height: 30px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-right: 10px;
  margin-left: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type="radio"]:checked + label {
  color: #FDC101;
  border-radius: 16px;
  border: 2px solid #FDC101;
  transition-delay: 0.5ms;
}


.seperator {
  width: 100%;
  height: 30px;
}

.cards {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.project {
  border-radius: 16px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.3s linear;
}

.cards  img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.cards  img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}


.project.js,
.project.html,
.project.react,
.project.vue,
.project.angular {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  padding: 0;
  margin: 0;
  visibility: hidden;
  border-width: 0;
}

.checkbox-all:checked ~ .cards .project.js,
.checkbox-all:checked ~ .cards .project.html,
.checkbox-all:checked ~ .cards .project.react,
.checkbox-all:checked ~ .cards .project.vue,
.checkbox-all:checked ~ .cards .project.angular,
.checkbox-js:checked ~ .cards .project.js,
.checkbox-html:checked ~ .cards .project.html,
.checkbox-react:checked ~ .cards .project.react,
.checkbox-vue:checked ~ .cards .project.vue,
.checkbox-angular:checked ~ .cards .project.angular {
  opacity: 1;
  height: 420px;
  width: 420px;
  transform: scale(1);
  padding: 0 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  visibility: visible;
  border-width: 3px;
}

@media only screen and (max-width: 1000px) {
  .container {
    width: 100%;
  }

  label {
    display: block;
  }

  .cards {
    flex-direction: column;
    width: auto;
  }

  .cards .project {
    width: 50%;
    height: auto;
    margin: 0;
    padding: 0;
  }
}





/* price page */


.price-header {
  justify-content: center;
  align-items: center;
  padding: 10px 0 40px 0;
}
.price-header h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  color: #FDC101;
}
.price-header p {
  text-align: center;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
}
.price-header p span {
  color: #FDC101;
  font-weight: 800;
}

.price-item-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}


.price-item-header h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 35px;  
  color: #FDC101;
  padding: 0 0 20px 0;
}
.price-item-header p {
  font-size: 18px;
  text-align: center;
  color: #FDC101;
}

.price-item {
  display: flex;
  flex-direction: column;
  width: 340px;
  height: auto;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #2f3742; 
  margin: 0 20px 0 20px;
  transition: 0.8s;
  margin-top: 20px;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}


.btn_more_information{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.btn_more_information button{
  width: 200px;
  height: 50px;
  padding: 10px 10px;
  cursor: pointer;
  border: 1.5px solid #FDC101;
  background-color: transparent;
  color: #FDC101;
  border-radius: 24px;
  transition: 0.5s;
}

.btn_more_information button:hover{
  background-color: #FDC101;
  color: #1E2329;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
  transition: 
    background-color 0.5s,
    color 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  transition: 0.3s;
}


.price-item-content{
  margin-top: 60px;
}

.price-item-list{
  font-size: 18px;
  color: #ffffff;
}

.price-item-list li {
  padding: 14px 0;
  list-style-type: none;
} 


/* conntect page */

.container_contact_header_box{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0 10px 0;
}



.container_contact{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 10px 0 10px 0;
}

.contact_box_left {
  width: 400px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #2f3742;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(1, 88, 180, 0.2);
  
}

.contact_box_left_Image img {
  width: 400px;
  height: auto;
  border-radius: 16px;
}

.contact_box_left_text{
  padding: 20px;

}

.contact_box_left_text h2 {
  color: #FDC101;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 10px;
}

.contact_box_left_text h2 span {
  color: #FDC101;
  font-weight: 400;
  font-size: 14px;

}
.contact_box_left_text p {
  color: #ffffff;
  font-size: 14px;
  padding: 0 0 10px 0;
}


.social-icons a {
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #FDC101;
}



.contact_box_right {
  width: 680px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  
}

.contact_box_right button:active {
  transform: scale(0.96);
}

/* Form sned message */


    .form-group {
      margin-bottom: 20px;
      
    }

    .form-row {
      display: flex;
      gap: 20px;
    }

    .form-row .form-group {
      flex: 1;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #ffffff;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      background-color: #1e1f26;
      border: 1px solid #444;
      border-radius: 5px;
      color: #ffffff;
      font-size: 16px;
    }

    textarea {
      height: 150px;
      resize: none;
    }

   .contact_box_right .btn_submit {
      width: 200px;
      height: 50px;
      cursor: pointer;
      border: 1.5px solid #FDC101;
      background-color: transparent;
      color: #FDC101;
      border-radius: 24px;
      transition: 0.5s;
    }

    .btn_submit:hover {
      background-color: #FDC101;
      color: #1E2329;
      transform: scale(1.05);
      transition: 
        background-color 0.5s,
        color 0.3s,
        transform 0.2s,
        box-shadow 0.3s;
      transition: 0.3s;
    }






@media (max-width: 1000px) {
  .container_contact {
    flex-direction: column;
    align-items: center;
  }
  

  
  .contact_box_left, .contact_box_right {
    width: 90%;
    height: auto;
    margin-bottom: 20px;
  }
  .contact_box_right {
   padding-top: 50px ;
  }

  .contact_box_left_Image img {
    width: 100%;

    height: auto;
  }
}


/* Footer */

.container-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 60px 0 10px 0;
}
.container-footer p {
  text-align: center;
  font-size: 14px;
  color: #ffffff;
}
.container-footer p a {
  text-decoration: none;
  color: #FDC101;
}

@media (max-width: 1000px) {
  .experience-left-column{
    display: none;
  }
}