@import url('https://fonts.googleapis.com/css2?family=Joan&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500&family=Joan&family=Cinzel:wght@400;500&family=Montserrat:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WindSong:wght@400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

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

body {
  overflow-x: hidden !important;
  margin: 0;
  background-color: rgb(239,239,239) !important;
  color: #1e1e3f;
  
}

.slider {

  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.hero-section {
  
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-heading, .hero-sub-heading {
  position: relative;
  z-index: 2;
}

.hero-heading {
  text-align: center;
  padding-bottom: 10px;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.hero-heading h2{
  width: 100% !important;
  color: #ffffff !important;
  letter-spacing: -.8px !important;
  text-transform: uppercase !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  font-family: 'Raleway', sans-serif !important;
  font-size: 120px !important;
  font-weight: 290 !important;
  line-height: 140px !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
  display: inline-block !important;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.slide.active .hero-heading h2 {
  opacity: 1;
  transform: translateY(0);
}

.hero-sub-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.slide.active .hero-sub-heading {
  opacity: 1;
  transform: translateY(0);
}

.hero-line {
  width: auto;
  background-color: #ffffff;
  flex-grow: 1;
  height: 2px;
  min-width: 50px;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease-out 0.7s, transform 0.6s ease-out 0.7s;
}

.slide.active .hero-line {
  opacity: 1;
  transform: translateX(0);
}

.heading-text {
  width: auto;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Joan', serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease-out 0.7s, transform 0.6s ease-out 0.7s;
}

.slide.active .heading-text {
  opacity: 1;
  transform: translateX(0);
}

/* Hero section animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-dots {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* section-1 styles */
.section-1 {
  background-color: rgb(239,239,239)!important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section1-container {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1.3fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.section1-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease, transform 2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section1-image.left {
  transform: translateY(-50px);
}

.section1-image.right {
  transform: translateY(50px);
}

.section1-image.animate {
  opacity: 1;
  transform: translateY(0);
}

.section1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.section1-image:hover img {
  transform: scale(1.05);
}

/* Vertical lines */
.section1-image.left::after {
  content: '';
  position: absolute;
  top: -40px;
  bottom: -40px;
  right: -30px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  z-index: 1;
}

.section1-image.right::before {
  content: '';
  position: absolute;
  top: -40px;
  bottom: -40px;
  left: -30px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  z-index: 1;
}

.section1-text {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  opacity: 1;
}

/* Left decorative line */
.section1-text::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  transform: translateY(-50%);
  z-index: 1;
}

/* Right decorative line */
.section1-text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -30px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.main-title {
  font-family: 'Joan', serif;
  font-size: 52px !important;
  font-weight: 400 !important;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: capitalize;
  cursor: default;
}

.script-title {
  font-family: 'WindSong', serif !important;
  font-size: 40px !important;
  font-weight: 400 !important;
  color: rgb(112,112,112)!important;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  cursor: default;
}

.body-text {
  font-family: 'Raleway', serif;
  font-size: 15px!important;
  color: #666;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 30px auto;
  text-align: justify;
  cursor: default;
}

.explore-btn {
  background-color: #b09359 !important;
  color: white;
  font-family: 'Raleway', serif !important;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.explore-btn:hover {
  background-color: #8a703e !important;
}

/* section-2 styles */
.section-2 {
  background-color: rgb(241,238,226)!important;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.experience-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: wrap;
}

.experience-left {
  flex: 1;
  max-width: 480px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.experience-label {
  font-family: 'Joan', serif;
  font-size: 60px !important;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 400 !important;
}

.experience-heading {
  font-family: 'WindSong', serif !important;
  font-size: 40px !important;
  color: rgb(112,112,112)!important;
  font-weight: 400 !important;
  line-height: 1.3;
  margin-bottom: 25px;
  font-style: italic;
  cursor: default;
}

.experience-desc {
  font-family: 'Raleway', serif;
  font-size: 15px !important;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
  text-align: justify;
  cursor: default;
}

.more-btn {
  background-color: #b09359!important;
  color: white;
  font-family: 'Raleway', serif !important;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.more-btn:hover {
  background-color: #8a703e!important;
}

.experience-left {
  position: relative;
}

.experience-left::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  transform: translateY(-50%);
  z-index: 1;
}

/* Slider styles */
.experience-slider {
  flex: none;
  width: 700px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  margin-right: 10px;
}

.slide-track {
  display: flex;
  animation: scrollLoop 25s linear infinite;
  align-items: stretch;
}

.experience-card {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.experience-card img {
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.experience-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-weight: 500 !important;
  font-family: 'Raleway', serif;
  text-shadow: 0 2px 5px rgba(0,0,0,0.6);
}

/* Loop animation */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.experience-slider:hover .slide-track {
  animation-play-state: paused;
}

/* section-3 styles */
.section-3 {
  background-color: rgb(239,239,239)!important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 0;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.text {
  flex: 1;
  max-width: 480px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: relative;
}

.text::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #d4af37, transparent);
  transform: translateY(-50%);
  z-index: 1;
}

.text h2 {
  font-family: 'Joan', serif;
  font-size: 60px !important;
  margin-bottom: 30px;
  color: #2c3e50;
  letter-spacing: 1px;
  font-weight: 400 !important;
  cursor: default;
}

.text p {
  font-family: 'Raleway', serif;
  font-size: 15px !important;
  line-height: 1.8;
  margin-top: 10px !important;
  margin-bottom: 30px !important;
  color: #666;
  text-align: justify;
  cursor: default;
}

.About-btn {
  background-color: #b09359!important;
  color: white;
  font-family: 'Raleway', serif !important;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px !important;
}

.About-btn:hover {
  background-color: #8a703e!important;
}

.image {
  flex: 1 1 500px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 12px;
}

.image img {
  width: 100%;
  height: 500px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Overlapping image setup*/
.image-group {
  position: relative;
  width: 700px;
  max-width: 700px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  margin-right: 10px;
}

.image-group img.bg-img {
  width: 100%;
  border-radius: 12px;
  max-height: 550px !important;
}

.image-group img.overlay-img {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 65%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-height: 250px;
  max-width: 350px;
  object-fit: cover;
}

/* section-4 styles */
.logo-loop-section {
  background-color: rgb(255, 255, 255) !important;
  padding: 60px 0 !important;
  overflow: hidden !important;
  /* margin-bottom: 30px; */
}

.partnership-inline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1800px;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 0 40px;
}

.partnership-heading {
  font-size: 25px !important;
  font-weight: 500 !important;
  font-family: "Raleway", serif !important;
  color: #1e1e3f !important;
  line-height: 1.8;
  white-space: nowrap;
  text-align: right;
  background-color: rgb(255, 255, 255) !important;
  text-transform: uppercase !important;
}

.partnership-heading p {
  margin: 0;
}

.logo-loop-container {
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  padding: 40px 0;
  /* flex: 1; */
}

.logo-track {
  display: flex;
  /* width: calc(200%); */
  width: max-content;
  /* animation: infiniteScroll 30s linear infinite; */
}

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-shrink: 0; */
  animation: infiniteScroll 30s linear infinite;
  will-change: transform;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}

.logo-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5%;
  height: 100%;
  width: 1px;
  background-color: #ccc;
  opacity: 0.7;
}

.logo-item img {
  height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

  /* Event Section */
  .event-section {
    padding: 0;
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .event-left,
  .event-right {
    width: 50%;
    height: 100vh;
  }

  .event-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 0 10vw;
    gap: 30px;
    background-color: rgb(239,239,239) !important;
  }

  .event-left h2 {
    font-family: 'Joan', serif !important;
    font-size: 60px;
    color: #2c3e50 !important;
    font-weight: 400 !important;
    align-items: flex-start;
    cursor: default;
  }

  .event-left p {
    font-family: 'Raleway', serif !important;
    font-size: 15px !important;
    color: #666 !important;
    font-weight: 400 !important;
    /* max-width: 500px; */
    line-height: 1.8;
    justify-items: justify;
    cursor: default;
  }

  .event-left button {
    background-color: #b09359;
    color: white;
    font-family: 'Raleway', serif !important;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px !important;
    cursor: pointer;
    max-width: fit-content;
    transition: background-color 0.3s;
  }

  .event-left button:hover {
    background-color: #8a703e;
    
  }

  .event-right img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .event-left h2,
  .event-left p {
    transition: all 0.3s ease;
  }

  .event-left h2:hover,
  .event-left p:hover {
    color: #b09359;
  }

  /* careers section */
  .careers-section {
    padding: 0;
    display: flex;
    height: 100vh;
    width: 100%;
  }

  .careers-left,
  .careers-right {
    width: 50%;
    height: 100vh;
  }

  .careers-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    padding: 0 10vw;
    gap: 30px;
    background-color: rgb(241,238,226)!important;
  }

  .careers-right h2 {
    font-family: 'Joan', serif !important;
    font-size: 60px;
    color: #2c3e50;
    font-weight: 400 !important;
    align-items: flex-start;
    cursor: default;
  }

  .careers-right p {
    font-family: 'Raleway', serif !important;
    font-size: 15px !important;
    color: #666 !important;
    font-weight: 400 !important;
    line-height: 1.8;
    justify-items: justify;
    cursor: default;
  }

  .careers-right button {
    background-color: #b09359;
    color: white;
    font-family: 'Raleway', serif !important;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px !important;
    cursor: pointer;
    max-width: fit-content;
    transition: background-color 0.3s;
  }

  .careers-right button:hover {
    background-color: #8a703e;
  }

  .careers-left img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* section-contact styles */
  .section-contact {
    background-color: rgb(239,239,239)!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .section-contact .text-contact {
    flex: 1;
    margin-left: 20px;
    max-width: 480px;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .section-contact .text-contact::before {
    content: '';
    margin-left: 20px;
    position: absolute;
    top: 50%;
    left: -60px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
    transform: translateY(-50%);
    z-index: 1;
  }

  .section-contact h2 {
    font-family: 'Joan', serif;
    font-size: 60px !important;
    margin-bottom: 30px;
    color: #2c3e50;
    letter-spacing: 1px;
    font-weight: 400 !important;
    cursor: default;
  }

  .section-contact p {
    font-family: 'Raleway', serif;
    font-size: 15px !important;
    line-height: 1.8;
    margin-top: 10px !important;
    margin-bottom: 30px !important;
    color: #666;
    text-align: justify;
    cursor: default;
  }

  .contact-btn {
    background-color: #b09359!important;
    color: white;
    font-family: 'Raleway', serif !important;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px !important;
  }

  .contact-btn:hover {
    background-color: #8a703e!important;
  }

  .section-contact .image {
    flex: 1 1 500px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
  }

  .section-contact .image img {
    width: 100%;
    height: 500px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  /* Overlapping image setup*/
  .section-contact .image-set {
    position: relative;
    width: 700px;
    max-width: 700px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    margin-left: 0px;
  }

  .section-contact .image-set img.big-img {
    width: 100%;
    border-radius: 12px;
    max-height: 550px !important;
  }

  .section-contact .image-set img.small-img {
    position: absolute;
    bottom: -40px;
    right: -40px !important;
    width: 65%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    max-height: 250px;
    max-width: 350px;
    object-fit: cover;
  }


  /* event and careers sections responsive styles */
  @media screen and (max-width: 768px) {
    .event-section {
      flex-direction: column;
      height: auto;
    }

    .event-left,
    .event-right {
      width: 100%;
      height: auto;
    }

    .event-right img {
      height: 50vh;
    }

    .event-left {
      padding: 40px 8vw;
      gap: 20px;
      align-items: flex-start;
    }

    .event-left h2 {
      font-size: 36px;
    }

    .event-left p {
      font-size: 14px;
    }

    .event-left button {
      font-size: 13px;
      padding: 10px 18px;
    }

    /* careers section */
    .careers-section {
      flex-direction: column;
      height: auto;
    }

    .careers-left,
    .careers-right {
      width: 100%;
      height: auto;
    }

    .careers-left img {
      height: 50vh;
    }

    .careers-right {
      padding: 40px 8vw;
      gap: 20px;
      align-items: flex-start;
    }

    .careers-right h2 {
      font-size: 36px;
    }

    .careers-right p {
      font-size: 14px;
    }

    .careers-right button {
      font-size: 13px;
      padding: 10px 18px;
    }
  }



/* Logo loop mobile responsive styles */
@media (max-width: 768px) {
  .logo-loop-section {
    padding: 30px 0 !important;
  }
  .partnership-inline-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    align-items: flex-start;
  }
  .partnership-heading {
    font-size: 16px !important;
    text-align: center;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 10px;
    width: 100%;
    white-space: normal;
  }
  .logo-loop-container {
    padding: 15px 0 10px 0;
    max-width: 100%;
    border-radius: 10px;
  }
  .logo-track {
    gap: 10px;
  }
  .logo-item {
    padding: 0 15px;
  }
  .logo-item img {
    height: 30px;
  }
  .logo-item:not(:last-child)::after {
    width: 0.5px;
    top: 15%;
    height: 70%;
  }
}


@media (max-width: 768px) {
  .hero-heading h2{
    font-size: 35px !important;
    line-height: 40px !important;
  }
  
  .hero-sub-heading {
    gap: 10px !important;
    padding: 6px 12px !important;
  }
  
  .hero-line {
    min-width: 25px !important;
  }
  
  .heading-text {
    font-size: 10px !important;
  }

  .nav-dots {
    top: auto !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex-direction: row !important;
    gap: 15px !important;
    justify-content: center !important;
  }

  .dot {
    width: 10px !important;
    height: 10px !important;
  }

  /* section Design */
  
  .section1-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
    text-align: center;
  }

  .section1-image {
    max-width: 100%;
    height: 250px;
    margin: 0 auto;
  }

  .section1-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .section1-image.left,
  .section1-image.right {
    transform: translateY(0);
  }

  .section1-image.left::after,
  .section1-image.right::before {
    display: none;
  }
  
  .section1-text::before,
  .section1-text::after {
    display: none;
  }

  .section1-image.right {
    max-height: none;
    height: auto;
  }

  .section1-image.right img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block;
  }

  .experience-left::after {
    display: none;
  }

  .script-title {
    font-size: 40px;
  }

  .main-title {
    font-size: 36px;
  }

  .body-text {
    font-size: 14px;
    text-align: justify;
  }

  /* section-2 styles */
  .experience-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .experience-label {
    text-align: center;
    font-size: 40px;
  }
  .experience-heading {
    font-size: 32px;
    text-align: center;
  }

  .experience-left {
    max-width: 100%;
    align-items: center;
  }

  .experience-desc {
    text-align: justify;
  }

  .experience-slider {
    width: 100%;
  }

  .slide-track {
    gap: 10px;
  }

  .experience-card {
    width: 160px;
    margin-right: 12px;
  }

  .experience-card img {
    width: 160px;
    height: 200px;
  }

  /* section-3 style */
  .section-3 {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    gap: 30px;
    max-width: 100%;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text {
    max-width: 100%;
    align-items: center;
  }

  .text::after {
    display: none;
  }

  .text h2 {
    font-size: 40px !important;
    text-align: center;
    margin-bottom: 15px;
  }

  .text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
  }

  .image-group {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    position: relative;
  }

  .image-group img.bg-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .image-group img.overlay-img {
    display: none !important;
  }

  .logo-loop-container {
    border-radius: 12px;
    padding: 15px 5px 10px 5px;
    margin: 0 auto 40px auto;
    max-width: 85%;
  }

  .logo-track {
    gap: 20px;
  }

  .logo-track img {
    height: 35px;
  }

  .logo-text {
    font-size: 12px;
    margin-top: 10px;
    padding: 0 5px;
    text-align: center;
  }

  /* section-contact style mobile */
  @media (max-width: 768px) {
    .section-contact {
      overflow-x: hidden !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 20px !important;
      padding: 60px 20px !important;
      text-align: center !important;
    }

    .section-contact .text-contact {
      margin-left: 0 !important;
      align-items: left !important;
      max-width: 600px !important;
      padding: 0 10px !important;
    }
    .section-contact .text-contact::before {
      display: none !important;
    }

    .section-contact .image-set {
      position: static !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 ;
      display: block !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 12px !important;
      max-width: 100% !important;
      overflow-x: hidden !important;
    }

    .section-contact .image-set img {
      max-width: 100% !important;
      height: auto !important;
      object-fit: cover !important;
      border-radius: 12px !important;
      box-shadow: none !important;
      position: static !important;
    }

    .section-contact .image-set .big-img  {
      order: 1 !important;
    }
    .section-contact .image-set .small-img{
      order: 2 !important;
    }

    .section-contact h2 {
      font-size: 36px !important;
    }

    .section-contact p  {
      font-size: 14px !important;
    }

    /* remove the negative right offset on mobile */
    .section-contact .image-set img.small-img {
      right: auto !important;
      left: auto !important;
      position: static !important;
      margin-top: 12px !important;
      order: 2 !important;
    }
  }


}
