/* ================= SAME DESIGN (NO CHANGE) ================= */

#gallery { padding: 80px 0; }

.gallery-slider {
  position: relative;
  max-width: 1100px;
  margin: 40px auto 0;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery-slide {
  flex: 0 0 100%;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .gallery-slide { flex: 0 0 33.3333%; }
}



/* Card */


.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Caption */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}

.gallery-caption h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.gallery-caption p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.slider-prev { left: 5px; }
.slider-next { right: 5px; }

/* Lightbox */
.glightbox-container .gslide-image img {
  width: 80vh !important;
  height: 80vh !important;
  object-fit: contain !important;
}
/* Remove absolute positioning first if added */
.gallery-desc {
  position: static;
  background: #fff;
  padding: 18px 15px;
  text-align: center;
  font-size: 15px;
  color: #333;
  border-radius: 0 0 14px 14px;
   box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Styling */
.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}



/* ================= MOBILE FIX ================= */

@media (max-width: 767px) {

  .gallery-slide {
    flex: 0 0 100%;
    padding: 10px;
  }

  .gallery-card {
    border-radius: 16px;
  }

  .gallery-img-box {
    aspect-ratio: 4 / 3; /* Same ratio mobile */
  }

  .gallery-desc {
    min-height: 60px;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    padding: 12px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

}


.td_card_title {
  font-size: 22px;
}

.td_card.td_style_3 .td_card_title,
.td_card.td_style_3 .td_card_subtitle {
  display: block;
  overflow: visible;
  text-overflow: unset;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: unset;
  white-space: normal;
}

/* SECTION */
.td_contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #eaf3ff 100%);
}

/* ROW STRETCH */
.td_contact .row {
  align-items: stretch;
}

/* CONTACT FORM */
.contact-form-wrapper {
  background: #ffffff;
  border: 2px dotted #ff9b24;
  padding: 40px 35px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);

  width: 100%;
  height: 100%;
  min-height: 500px;              

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
}

/* FORM INPUT */
.contact-form-wrapper .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
}

.contact-form-wrapper .form-control:focus {
  border-color: #ff9b24;
  box-shadow: 0 0 0 0.2rem rgba(255,155,36,0.25);
}

.contact-img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}



.office-section {
  background: #f9fafc;
}

.office-card {
  border-radius: 20px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}


    .logo{
      width: 80px;
      height: auto;
    }
    @media (max-width: 767px) {
  .logo {
    width: 60px; /* smaller width for mobile */
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
  .logo {
    width: 80px;
  }
}

/* === Horizontal Notification Bar === */
.td_notification_bar {
  background: #fff8e1;
  border-top: 2px solid #ffb703;
  border-bottom: 2px solid #ffb703;
  padding: 18px 0;   /* Increase height here */
  white-space: nowrap;
  width: 50%;
  border-radius: 8px;

  position: relative;
  top: -150px;   /* keep this if required */
  margin: 0 auto;
}




.td_notification_inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.td_notify_title {
  font-weight: 600;
  color: #ff6700;
  font-size: 18px;
  flex-shrink: 0;
}

.td_notification_scroll {
  overflow: hidden;
  flex: 1;
  position: relative;
  max-width: 80%;
}

.td_scroll_content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLeft 30s linear infinite;
  color: #333;
  font-size: 16px;
}

/* Smooth left scroll */
@keyframes scrollLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* Pause animation on hover */
.td_scroll_content:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .td_notification_bar {
    width: 100%;
    top: -90px;
   
  }
.td_scroll_content {

  font-size: 14px;
}
 .td_notify_title {
  
  font-size: 16px;
}
}

