@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 h1{
  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 h1 {
  opacity: 1;
  transform: translateY(0);
}

.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; */
  text-align: center; /* meka under construction passe remove karanna*/
  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 {
    padding: 60px 7vw;
    background-color: #f8fafc;
  }

  .contact-card-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-card {
    display: flex;
    gap: 32px;
    padding: 28px 24px;
    background-color: #ffffff;
    border-radius: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    align-items: center;
    flex-wrap: wrap;
  }

  /* left side */
  .contact-card-left {
    flex: 1 1 320px;
  }

  .contact-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin-bottom: 4px;
  }

  .contact-card-left h2 {
    /* font-size: 2rem; */
    margin-bottom: 20px;

    font-family: 'Joan', serif !important;
    font-size: 50px;
    color: #2c3e50;
    font-weight: 400 !important;
    align-items: flex-start;
    cursor: default;
  }

  .contact-card-left p {
    margin-bottom: 20px;
    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;
  }

  .contact-points {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
  }

  .contact-points li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 14px;
    font-family: 'Raleway', serif !important;
    font-size: 15px !important;
    color: #666 !important;
    font-weight: 400 !important;
  }

  .contact-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #f97316;
  }

  /* button */
  .contact-btn {
    margin-top: 30px;
    padding: 10px 22px;
    background-color: #b09359;
    color: white;
    font-family: 'Raleway', serif !important;
    border: none;
    border-radius: 8px;
    font-size: 14px !important;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .contact-btn:hover {
    background-color: #8a703e;
  }

  /* right side visual */
  .contact-card-right {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-image-box {
    width: 100%;
    height: 500px;
    border-radius: 14px;
    overflow: hidden;
  }

  .contact-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Responsive: mobile <= 768px */
  @media (max-width: 768px) {
    .section-contact {
      padding: 36px 5vw;
    }

    .contact-card {
      flex-direction: column;
      gap: 18px;
      padding: 18px;
      align-items: stretch;
    }

    .contact-card-left,
    .contact-card-right {
      flex: 1 1 100%;
      width: 100%;
    }

    .contact-card-left h2 {
      font-size: 32px;
      margin-bottom: 14px;
      line-height: 1.05;
    }

    .contact-card-left p {
      font-size: 14px !important;
      margin-bottom: 12px;
    }

    .contact-points {
      margin-bottom: 12px;
    }

    .contact-points li {
      font-size: 14px !important;
      padding-left: 12px;
    }

    .contact-btn {
      width: 100%;
      padding: 12px 16px;
      font-size: 14px !important;
      margin-top: 8px;
      border-radius: 8px;
    }

    .contact-card-right {
      flex-direction: row;
      gap: 12px;
      align-items: center;
    }

    .contact-image-box {
      flex: 1;
      height: 180px;
    }

    .contact-image-box img {
      height: 100%;
      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: 0px !important;
  }

  .hero-heading h1{
    font-size: 35px !important;
    line-height: 0px !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;
  }

  


}


/* ================================
   Cookie banner
   ================================ */

/* .cookie-banner {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  font-family: 'Raleway', sans-serif;
} */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  /* overlay eka danna one naththam background transparent karamu */
  background: transparent;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 9999;
  padding: 0;
  font-family: 'Raleway', sans-serif;
}


.cookie-banner.is-visible {
  display: flex;
}

/* .cookie-banner__panel {
  max-width: 640px;
  width: 100%;
  background: #11111a; dark panel similar to screenshot 
  color: #f9fafb;
  padding: 28px 28px 22px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);
} */

.cookie-banner__panel {
  max-width: 640px;
  width: 100%;
  /* background: #11111a; */
  background: rgba(18, 16, 12, 0.56);
  color: #f9fafb;
  padding: 24px 24px 18px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.5);

  opacity: 0;
  transform: translateX(40px);
  animation: cookieSlideIn 0.45s ease-out forwards;
}

/* animation definition */
@keyframes cookieSlideIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


.cookie-banner__title {
  font-family: 'Raleway', serif;
  font-size: 26px;
  margin-bottom: 14px;
  color: #ffffff;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #e5e7eb;
}

.lh-consent-more {
  font-size: 0.8rem;
  color: #FBBF24;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lh-consent-more:hover {
  color: #FFD700;
}

.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.cookie-btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* primary = gold block (I agree) */
.cookie-btn--primary {
  background-color: #b09359;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(176, 147, 89, 0.45);
}

.cookie-btn--primary:hover {
  background-color: #8a703e;
}

/* secondary = outline gold (I decline) */
.cookie-btn--secondary {
  background-color: transparent;
  color: #fbbf24;
  border: 1px solid #fbbf24; /* little bit more yellow to pop */
}

/* preferences = neutral light */
.cookie-btn--ghost {
  background-color: #f9fafb;
  color: #111827;
}

.cookie-btn--ghost:hover {
  background-color: #e5e7eb;
}

/* preferences panel */
.cookie-banner__prefs {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.cookie-banner__prefs-text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #e5e7eb;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.cookie-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #b09359;
}

.cookie-toggle__label {
  color: #e5e7eb;
}

.cookie-banner__prefs-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
  }

  .cookie-banner__panel {
    max-width: 100%;
  }
}


/* mobile */
@media (max-width: 640px) {
  /* .cookie-banner__panel {
    padding: 20px 18px 16px;
  } */

  .cookie-banner__title {
    font-size: 22px;
  }

  .cookie-banner__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-banner__prefs-actions {
    flex-direction: column;
  }
}

