* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     
}

/* ///////////////////////////////////////////////////////////////-1-////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////-1-////////////////////////////////////////////////////////// */

.history-section {
    width: 100%;
    padding: 4rem 0;
}

.history-content {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0 4rem;
}

.history-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #194798;
}

.history-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.history-text a {
  color: #194798;
  text-decoration: none;
}

.history-text a:hover {
    text-decoration: underline;
}

.history-highlight {
  color: #194798;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
    .history-content {
        padding: 0 3rem;
    }
}

@media screen and (max-width: 992px) {
    .history-content {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {

    .history-title {
        font-size: 40px;
    }
    .history-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .history-content {
        padding: 0 1rem;
    }
    .history-title {
        font-size: 32px;
    }
    .history-text {
        font-size: 14px;
    }
}



/* ///////////////////////////////////////////////////////////////-2-////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////-2-////////////////////////////////////////////////////////// */

.history-timeline {
    padding: 4rem;
    max-width: 1820px;
    margin: 0 auto;
  }
  
  .timeline-container {
    justify-content: space-between;
    display: flex;
    gap: 2rem;
  }
  
  .timeline-header {
    flex: 0 0 30%;
    padding-top: 1rem;
    width: 100%;
  }
  
  .timeline-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .timeline-subtitle {
    font-size: 18px;
    color: #666;
  }
  
  .timeline-content {
    flex: 1;
    max-width: 720px;
  }
  
  .timeline {
    position: relative;
    border-left: 3px solid #E6AF2E;
    padding-left: 4rem;
  }
  
  .timeline-item {
    margin-bottom: 3rem;
    position: relative;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    left: -5.05rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #E6AF2E;
    border: 8px solid white;
    border-radius: 50%;
  }
  
  .timeline-year {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
  }
  
  .timeline-event {
    font-size: 32px;
    margin-bottom: 0.5rem;
  }
  
  .timeline-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 1rem;
  }
  
  .timeline-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #00DFAA;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .timeline-button:hover {
    color: #00DFAA;
    padding: 10px 22px;
    border: 2px solid #00DFAA;
    background-color: transparent;
  }

  @media (max-width: 1200px) {
    .history-timeline{
       padding: 3rem; 
    }

    .timeline-title {
      font-size: 40px;
    }

    .timeline {
      padding-left: 3rem;
    }

    .timeline-item::before {
        left: -3.75rem;
      }
    
    .timeline-subtitle {
      font-size: 16px;
    }
    
    .timeline-year {
      font-size: 36px;
    }
    
    .timeline-event {
      font-size: 28px;
    }
    
    .timeline-description {
      font-size: 16px;
    }
  }
  
  @media (max-width: 992px) {
    .timeline-container {
      flex-direction: column;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: -3.05rem;
      }

    .history-timeline{
        padding: 2rem; 
    }
    
    .timeline-header {
      flex: 0 0 100%;
      margin-bottom: 2rem;
    }
    
    .timeline-content {
      max-width: 100%;
    }
    
    .timeline-title {
      font-size: 36px;
    }
    
    .timeline-year {
      font-size: 32px;
    }
    
    .timeline-event {
      font-size: 24px;
    }
  }
  
  @media (max-width: 768px) {
    .history-timeline {
      padding: 3rem 2rem;
    }
    
    .timeline-title {
      font-size: 32px;
    }
    
    .timeline-subtitle {
      font-size: 15px;
    }
    
    .timeline-year {
      font-size: 28px;
    }
    
    .timeline-event {
      font-size: 22px;
    }
    
    .timeline-description {
      font-size: 15px;
    }
    
    .timeline-button {
      font-size: 15px;
      padding: 10px 20px;
    }
  }
  
  @media (max-width: 480px) {

    .history-timeline{
        padding: 1rem; 
     }

     .timeline-item::before {
        left: -1.75rem;
      }

    .history-timeline {
      padding: 2rem 1rem;
    }
    
    .timeline {
      padding-left: 1rem;
    }
    
    .timeline-item::before {
      left: -3.75rem;
    }
    
    .timeline-title {
      font-size: 28px;
    }
    
    .timeline-subtitle {
      font-size: 14px;
    }
    
    .timeline-year {
      font-size: 24px;
    }
    
    .timeline-event {
      font-size: 20px;
    }
    
    .timeline-description {
      font-size: 14px;
    }
    
    .timeline-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  }

  
/* ///////////////////////////////////////////////////////////////-3-////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////-3(carousel)-////////////////////////////////////////////////////////// */


.slider-section {
  padding: 50px 0 0;
  flex-direction: column;
  display: flex;
  max-width: 1820px;
  margin: 70px auto 0;
  padding: 0 4rem;

}

.slider-section h2{
  font-size: 40px;
  margin-bottom: 56px;
  font-weight: bold;
  text-align: center;
}

.slider-section p{
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.mainslide{
  display: flex;
  align-items: center;
  position: relative;
  margin: 50px auto;
  justify-content: space-between;
}

.slider {
  position: relative;
  max-width: 1692px;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
}


.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px; /* Add space between slides */
}

.slide {
  transition: opacity 1s;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.slide img {
  width: 100%;
  display: block;
}

.prev, .next {
  position: absolute;
  font-size: 25px;
  font-weight: 900;
  line-height: 0;
  bottom: 30%;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: #194798;
  border: 1px solid #194798;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1;
}

.prev{
  left: 3%;
}

.next{
  right: 3%;
}

.prev:hover, .next:hover {
  color: white;
  background-color: #194798c0;
}

.dots {
  text-align: center;
  padding: 10px 0;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.last {
  display: none;
}

.active, .dot:hover {
  background-color: #194798;
}

/* Default: show two slides at a time */
.slide {
  min-width: calc(50% - 16px); /* Adjust for spacing */
}

/* For screens smaller than or equal to 992px, show one slide at a time */
@media screen and (max-width: 992px) {
  .slider-section h2{
      font-size: 36px;
      margin-bottom: 46px;
  }
  
  .slider-section p{
      font-size: 16px;
      margin-bottom: 16px;
  }

  
  
  .mainslide{
      margin: 30px auto;
  }
  

  .slide {
      min-width: 100%; /* Show one slide at a time */
  }
  .dot.last {
      display: inline-block;
  }

  .dot{
      width: 10px;
      height: 10px;
  }

  .prev, .next {
      font-size: 15px;
      padding: 0px;
      width: 34px;
      height: 34px;
  }

  .slider-section{
      padding-top: 40px;
  }
  
  .slider-section h2{
      font-size: 36px;
      margin-bottom: 46px;
  }

  .slider-section{
      padding: 0 2rem;
  }

}

@media(max-width: 768px){
  .slider-section h2{
      font-size: 32px;
      margin-bottom: 36px;
  }
  
  .slider-section p{
      font-size: 14px;
      margin-bottom: 14px;
  }
  
  .mainslide{
      margin: 20px auto;
  }

  .slider-section h2{
      font-size: 32px;
      margin-bottom: 32px;
  }

  .slider-section{
      padding-top: 30px;
  }
  
}

@media(max-width: 480px){
  .slider-section h2{
      font-size: 28px;
      margin-bottom: 28px;
  }

  .slider-section{
      padding-top: 20px;
      padding: 0 1rem;

  }
  
}


/* ///////////////////////////////////////////////////////////////-4-////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////-4-////////////////////////////////////////////////////////// */



.evolution-section {
    padding: 50px 0;
    max-width: 1820px;
    margin: 0 auto;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 4rem;
}

.text-left {
    flex: 1;
    max-width: 612px;
    width: 40%;
}

.text-left h2 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.text-right {
    flex: 2;
    max-width: 612px;
    padding-left: 20px;
}

.text-right p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .container {
        padding: 3rem;
    }

    .text-left h2 {
        font-size: 40px;
    }

    .text-right p {
        font-size: 16px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        padding: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .text-left, .text-right {
        max-width: 100%;
        width: 100%;
    }

    .text-right {
        padding-left: 0;
        margin-top: 20px;
    }

    .text-left h2 {
        font-size: 36px;
    }

    .text-right p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .text-left h2 {
        font-size: 32px;
    }

    .text-right p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .text-left h2 {
        font-size: 28px;
    }

    .text-right p {
        font-size: 12px;
    }
}