:root {
  --dark-blue: #13274F;
  --dark-coffee: #4A2C2A;
  --light-coffee: #8B5A2B;
  --gold: #D4AF37;
  --cream: #F5F5DC;
}

body {
  background-color: #f8f9fa;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 80px !important;
}
  
/* Top Navbar Styles */
.top-navbar {
  background-color: #f8f9fa;
  padding: 5px 0;
  border-bottom: 1px solid #e7e7e7;
  font-size: 0.85rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1031;
  height: 40px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}

.top-navbar.hide {
  opacity: 0;
  transform: translateY(-100%);
}

.top-navbar .social-icons a {
  margin-right: 12px;
  color: #555;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.top-navbar .social-icons a:hover {
  color: #d4af37;
}

.top-navbar .contact-info {
  display: flex;
  align-items: center;
}

.top-navbar .contact-info i {
  margin-right: 5px;
  color: #d4af37;
  font-size: 0.85rem;
}

.top-navbar .contact-info a {
  color: #555;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.top-navbar .contact-info a:hover {
  color: #d4af37;
}

.top-navbar .search-form {
  position: relative;
}

.top-navbar .search-form input {
  padding-right: 30px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 0.8rem;
  height: 28px;
}

.top-navbar .search-form button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #555;
  padding: 0;
  font-size: 0.8rem;
}

.navbar.top-navbar-hidden {
  top: 0 !important;
}

@media (max-width: 767.98px) {
  .top-navbar {
    display: none !important;
  }
  
  .navbar {
    top: 0 !important;
  }
  
  body {
    padding-top: 56px !important;
  }
}

.navbar {
  background: linear-gradient(to right, var(--dark-blue), var(--dark-coffee)) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 1030;
  top: 40px !important;
  transition: top 0.3s ease;
}

.navbar-brand, .nav-link {
  color: var(--cream) !important;
  font-weight: 500;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
  margin-right: 15px;
  margin-left: 20px;
  cursor: pointer;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.navbar-logo:hover {
  transform: rotate(360deg);
  opacity: 0.9;
}

.nav-link:hover {
  color: var(--gold) !important;
  text-decoration: underline;
}

.btn-link {
  color: var(--cream) !important;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
}

.btn-link:hover {
  color: var(--gold) !important;
}

.alert {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
}

/* Container adjustments */
.container {
  padding: 20px 15px;
  max-width: 1800px;
  margin: 0 auto;
  width: 100%;
}

.container-fluid {
  padding: 0;
  margin: 0;
  width: 100%;
}

.card {
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header {
  background: linear-gradient(to right, var(--dark-blue), var(--dark-coffee));
  color: white;
  border-radius: 10px 10px 0 0 !important;
}

.btn-primary {
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-primary:hover {
  background-color: var(--dark-coffee);
  border-color: var(--dark-coffee);
}

.btn-outline-primary {
  color: var(--dark-blue);
  border-color: var(--dark-blue);
}

.btn-outline-primary:hover {
  background-color: var(--dark-blue);
  color: white;
}

/* About Image Container */
.about-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-image-container .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  text-align: center;
}

p {
  text-align: justify;
}
.about-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    border-radius: 10px 10px 0 0;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Button Styling */
.btn-primary {
  background: linear-gradient(to right, #13274F, #4A2C2A);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(to right, #4A2C2A, #13274F);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Card Styling */
.card {
  border: none;
  border-radius: 10px;
}

.card-header {
  border-radius: 10px 10px 0 0 !important;
}

/* News section */
.news-section {
  padding: 20px;
}

.main-news-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.main-news-card:hover {
  transform: translateY(-5px);
}

.main-news-img {
  height: 350px;
  object-fit: cover;
}

.news-list-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.news-list-card:hover {
  transform: translateY(-3px);
}

.news-list-img {
  height: 180px;
  object-fit: cover;
}

.read-all-news {
  background: linear-gradient(to right, #13274F, #4A2C2A);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-all-news:hover {
  background: linear-gradient(to right, #4A2C2A, #13274F);
  transform: translateY(-2px);
  color: #f8f9fa;
}

.feedback-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.feedback-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 95px;
  margin: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: transform 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
}

.customer-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position:top;
  border: 4px solid #fff;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feedback-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 20px;
}

.feedback-text:before,
.feedback-text:after {
  content: '"';
  font-size: 50px;
  color: rgba(255,255,255,0.2);
  position: absolute;
  line-height: 1;
}

.feedback-text:before {
  top: -20px;
  left: 0;
}

.feedback-text:after {
  bottom: -40px;
  right: 0;
}

.customer-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

.customer-position {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.carousel-control-prev, 
.carousel-control-next {
  width: 5%;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}
/* Partners section styling */
.partners-title {
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-blue);
  font-weight: 700;
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.partners-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 15px auto;
  border-radius: 2px;
}

.partner-logo-container {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  margin: 0 auto;
}

.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.9;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.partner-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo-container:hover .partner-logo {
  opacity: 1;
  transform: scale(1.05);
}

.partners-row-container {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.partners-row {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.partner-item {
  flex: 0 0 auto;
  width: 160px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-row:first-child {
  animation-duration: 35s;
}

.partners-row:last-child {
  animation-duration: 40s;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-row-container:hover .partners-row {
  animation-play-state: paused;
}

@media (max-width: 768px) {
    .partners-title {
        margin-bottom: 30px;
        font-size: 1.75rem;
    }
    
    .partners-title:after {
        width: 60px;
        margin: 10px auto;
    }
    
    .partner-logo-container {
        width: 100px;
        height: 100px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .partner-item {
        width: 120px;
        margin: 0 15px;
    }
    
    .partners-row-container {
        padding: 15px 0;
    }
    
    .partners-row {
        animation-duration: 25s;
    }
    
    .partners-row:first-child {
        animation-duration: 28s;
    }
    
    .partners-row:last-child {
        animation-duration: 32s;
    }
}

@media (max-width: 480px) {
    .partners-title {
        margin-bottom: 25px;
        font-size: 1.5rem;
    }
    
    .partner-logo-container {
        width: 80px;
        height: 80px;
        padding: 12px;
        border-radius: 12px;
    }
    
    .partner-item {
        width: 100px;
        margin: 0 12px;
    }
    
    .partners-row-container {
        padding: 12px 0;
    }
    
    .partners-row {
        animation-duration: 20s;
    }
    
    .partners-row:first-child {
        animation-duration: 22s;
    }
    
    .partners-row:last-child {
        animation-duration: 25s;
    }
    
    .partner-logo {
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .partner-logo-container {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .partner-item {
        width: 90px;
        margin: 0 10px;
    }
}

@media (hover: none) {
    .partner-logo-container:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .partner-logo-container:hover .partner-logo {
        transform: none;
    }
    
    .partner-logo-container:active {
        transform: scale(0.95);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-row {
        animation: none;
    }
    
    .partner-logo-container {
        transition: none;
    }
}

footer {
  background: linear-gradient(to right, var(--dark-blue), var(--dark-coffee)) !important;
  color: var(--cream);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 0 !important;
  opacity: 8;
}

.copyrights {
  background-color: #1a1a1a;
  padding: 20px 0;
  font-size: 14px;
  bottom: 0;
}

.copyrights a {
  color: #d4af37;
  text-decoration: none;
}

.copyrights a:hover {
  text-decoration: underline;
}
/* end of footer */
.form-control:focus {
  border-color: var(--light-coffee);
  box-shadow: 0 0 0 0.25rem rgba(139, 90, 43, 0.25);
}

.table th {
  background-color: var(--dark-blue);
  color: white;
}

.badge-primary {
  background-color: var(--dark-blue);
}

.text-gold {
  color: var(--gold);
}

/* Contact Us */
.contact-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0;
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 10px;
}

.contact-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-header p {
  font-size: 1.2rem;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.contact-item i {
  color: #c29d40;
  font-size: 1.2rem;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #c29d40;
  box-shadow: 0 0 0 0.2rem rgba(194, 157, 64, 0.25);
  outline: none;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 25px;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-form-container {
    padding: 25px;
  }
}

/* Services */
.services-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('{% static "images/services.jpg" %}');
  background-size: cover;
  background-position: center;
  color: white;
  border-radius: 10px;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-section {
  margin-bottom: 50px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-section:hover {
  transform: translateY(-5px);
}

.service-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.service-image {
  flex: 0 0 300px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}

.service-section:hover .service-image img {
  transform: scale(1.05);
}

.service-details {
  flex: 1;
}

.service-details h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c29d40;
}

.service-details ul {
  list-style: none;
  padding: 0;
}

.service-details li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.service-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c29d40;
  font-weight: bold;
}

@media (max-width: 992px) {
  .service-content {
    flex-direction: column;
  }

  .service-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }
}

/* About us */
.about-section {
  padding: 60px 0;
}

.section-title {
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c29d40;
  margin: 10px auto;
}

.about-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-image {
  height: 250px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-card:hover .about-image img {
  transform: scale(1.05);
}

.about-content {
  padding: 25px;
}

.about-content h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-content p {
  color: #555;
  line-height: 1.6;
}

.icon-container {
  text-align: center;
  margin-bottom: 30px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c29d40, #a67c00);
  border-radius: 50%;
  margin-bottom: 15px;
}

.icon-circle i {
  font-size: 2rem;
  color: white;
}

/* Vision Section with Background Image */
.vision-section .about-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.vision-section .icon-circle {
  background: linear-gradient(135deg, #ffffff, #e6e6e6);
}

.vision-section .icon-circle i {
  color: #c29d40;
}

.vision-section h2,
.vision-section h3,
.vision-section p {
  color: white;
}

.vision-content {
  position: relative;
  z-index: 2;
}

/* BASE.HTML */
/* Footer Styles */
footer {
  background: linear-gradient(to right, #1a1a1a, #2d2d2d) !important;
  padding: 50px 0 20px !important;
}

.footer-title {
  color: #c29d40;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.2rem;
}

.footer-title:after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #c29d40;
  margin-top: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #c29d40;
  transform: translateX(5px);
}

.footer-links i {
  margin-right: 8px;
  color: #c29d40;
  width: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #c29d40;
  transform: translateY(-3px);
}

.contact-info {
  color: #ccc;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  color: #c29d40;
  margin-right: 10px;
  margin-top: 5px;
  min-width: 20px;
}

.copyright {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 30px;
}

.news-sidebar {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.sidebar-title {
  font-weight: 600;
  color: #2c3e50;
  padding-bottom: 15px;
  border-bottom: 2px solid #3498db;
  margin-bottom: 20px;
}

.news-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.2s ease;
}

.news-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-item:hover {
  background-color: #f8f9fa;
  padding-left: 10px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.news-date {
  font-size: 0.85rem;
  color: #7f8c8d;
}

.read-all-news {
  background: linear-gradient(to right, #3498db, #2c3e50);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-all-news:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.news-content {
  color: #34495e;
  line-height: 1.6;
}

/* ----------------------- */
/* --- Chabbot Assistant ---*/
/* ---------------------- */

.chatbot-container {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 1000;
  font-family: inherit;
}

.chatbot-button {
  width: 60px;
  height: 60px;
  background-color: #d4af37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.chatbot-button:hover {
  transform: scale(1.05);
  background-color: #c19b2e;
}

.chatbot-button i {
  color: white;
  font-size: 24px;
}

.chatbot-window {
  width: 350px;
  height: 400px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  visibility: hidden;
  position: absolute;
  bottom: 70px;
  right: 0;
}

.chatbot-window.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.chat-header {
  background: linear-gradient(to right, #3498db, #2c3e50);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h5 {
  margin: 0;
  font-size: 16px;
}

.close-chat {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.4;
}

.bot-message {
  background-color: #f1f1f1;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.user-message {
  background-color: #d4af37;
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input {
  display: flex;
  padding: 15px;
  border-top: 1px solid #eee;
  background-color: white;
}

.chat-input input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
}

.send-button {
  background-color: #d4af37;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.typing-indicator {
  display: none;
  align-self: flex-start;
  background-color: #f1f1f1;
  padding: 10px 15px;
  border-radius: 18px;
  margin-bottom: 10px;
}

.typing-indicator span {
  height: 8px;
  width: 8px;
  background-color: #999;
  border-radius: 50%;
  display: inline-block;
  margin: 0 2px;
  animation: typing 1.3s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 576px) {
  .chatbot-window {
    width: 300px;
    right: -10px;
  }
}
/* Loading Spinner Styles */
#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  color: #c29d40;
}

/* Back to Top Button Styles */
#back-to-top {
  position: fixed;
  bottom: 150px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #c29d40;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

#back-to-top:hover {
  background: #a67c00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===============================
 clientele-section
=============================== */
.clientele-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  margin-bottom: -75;
  margin-top: -50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.clientele-image-container {
  position: relative;
}

.clientele-img {
  width: 100%;
  border: 5px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #d4af37, #bf9b30);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.experience-badge .years {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.clientele-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.clientele-category {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clientele-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.category-icon {
  font-size: 20px;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.category-description {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
  padding-left: 55px;
}

@media (max-width: 992px) {
  .clientele-list {
    grid-template-columns: 1fr;
  }
  
  .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    display: inline-block;
  }
}

/* ===============================
  why-choose-section
=============================== */
.why-choose-section {
  padding: 80px 0;
  background: linear-gradient(to right, #f8f9fa 70%, #ffffff 30%);
  margin-bottom: -110px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.highlight-text {
  font-size: 1rem;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 40px;
  border-left: 4px solid #d4af37;
  padding-left: 15px;
}

.features-list {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 24px;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 15px;
}

.feature-content h4 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.feature-content p {
  color: #555;
  line-height: 1.6;
}

.image-stack {
  position: relative;
  margin-left: 30px;
}

.img-stack-main {
  width: 85%;
  border: 5px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  z-index: 1;
  position: relative;
}

.img-stack-secondary {
  width: 70%;
  border: 5px solid white;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: 2;
}

@media (max-width: 992px) {
  .why-choose-section {
    background: #f8f9fa;
  }
  
  .image-stack {
    margin: 40px 0 0 0;
  }
}

/* ===============================
  EVENT
=============================== */
  
  /* Consistent image sizing */
.event-card .card-img-top {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
}

.event-detail-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
}

/* Image placeholder styling */
.image-placeholder {
  width: 100%;
  height: 400px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}

.event-detail-image.image-placeholder {
  height: 500px;
}

/* Event card styling */
.event-card {
  height: 100%;
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.event-card .card-body {
  padding: 1.5rem;
}

.event-card .card-title {
  font-weight: 600;
  color: #13274F;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.event-description {
  margin-bottom: 1rem;
}

.event-description.collapsed {
  max-height: 60px;
  overflow: hidden;
  position: relative;
}

.event-description.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: linear-gradient(transparent, white);
}

.event-date {
  color: #6c757d;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.read-more-btn {
  background: linear-gradient(to right, #13274F, #4A2C2A);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: linear-gradient(to right, #4A2C2A, #13274F);
  transform: translateY(-2px);
}

/* Event detail view styling */
.event-detail-view {
  display: none;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  margin-bottom: 2rem;
}

.event-detail-content {
  display: flex;
  flex-direction: column;
}

.event-detail-text {
  padding: 2rem;
}

.event-detail-text h3 {
  color: #13274F;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.event-detail-text p {
  line-height: 1.6;
  color: #495057;
}

/* Refresh button */
.refresh-button {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(to right, #13274F, #4A2C2A);
  color: white;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.refresh-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.refresh-button i {
  font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .event-card .card-img-top {
    height: 300px;
  }
  
  .event-detail-image {
    height: 300px;
  }
  
  .image-placeholder {
    height: 300px;
  }
  
  .event-detail-image.image-placeholder {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .event-card .card-img-top {
    height: 250px;
  }
  
  .event-detail-image {
    height: 250px;
  }
  
  .image-placeholder {
    height: 250px;
  }
  
  .event-detail-image.image-placeholder {
    height: 250px;
  }
}
  
/* ===============================
  Upload Video
=============================== */
.video-feedback-title {
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  display: inline-block;
}

.video-feedback-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-container {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-details {
  color: white;
}

.video-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video-customer {
  font-style: italic;
  margin-bottom: 0.3rem;
}

.video-date {
  opacity: 0.7;
  font-size: 0.9rem;
}

.no-videos {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  color: white;
}

.thumbnail-preview {
  object-fit: cover;
  border-radius: 3px;
}

.custom-file-upload {
  position: relative;
  overflow: hidden;
}

.custom-file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-info {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f8f9fa;
  min-height: 38px;
}

.progress {
  height: 20px;
}

.thumbnail-placeholder {
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 10px;
}

.table th {
  border-top: none;
  font-weight: 600;
}

.btn-group .btn {
  border-radius: 5px;
}

.badge {
  font-size: 0.75em;
}

@media (max-width: 992px) {
  .video-feedback-container {
    margin-top: 30px;
  }
}

/* ===============================
  Consistent Carousel Sizing 
  =============================== */
  .carousel-section {
  margin-bottom: 3rem;
}

.advertisement-section {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.ad-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  height: 400px;
}

.ad-item {
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s ease;
  position: absolute;
  width: 100%;
  left: 0;
  height: 180px;
}

/* First ad - starts at top */
.ad-slide-1 {
  top: 0;
  animation: slideExchangeTop 10s ease-in-out infinite;
}

/* Second ad - starts at bottom */
.ad-slide-2 {
  bottom: 0;
  animation: slideExchangeBottom 10s ease-in-out infinite;
}

.ad-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation-play-state: paused;
}

@keyframes slideExchangeTop {
  0%, 40% {
    transform: translateY(0);
    z-index: 2;
  }
  50%, 90% {
    transform: translateY(220px);
    z-index: 1;
  }
  100% {
    transform: translateY(0);
    z-index: 2;
  }
}

@keyframes slideExchangeBottom {
  0%, 40% {
    transform: translateY(0);
    z-index: 1;
  }
  50%, 90% {
    transform: translateY(-220px);
    z-index: 2;
  }
  100% {
    transform: translateY(0);
    z-index: 1;
  }
}

.ad-image-container {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.ad-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.ad-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.75rem;
  text-align: center;
}

#royalCarousel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin: 0 auto 30px;
  max-width: 100%;
}

/* Fixed container for consistent sizing */
.carousel-image-wrapper {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
}

/* Consistent image sizing */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.carousel-caption {
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)) !important;
  padding: 20px !important;
  border-radius: 8px;
}

.carousel-image {
  transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-image {
  animation: zoomInOut 1.5s ease forwards;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile adjustments - */
@media (max-width: 991.98px) {
  .carousel-section .col-lg-8 {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .carousel-image-wrapper {
    height: 450px;
  }
  .ad-container {
    height: 380px;
  }
  @keyframes slideExchangeTop {
    0%, 40% { transform: translateY(0); }
    50%, 90% { transform: translateY(200px); }
    100% { transform: translateY(0); }
  }
  @keyframes slideExchangeBottom {
    0%, 40% { transform: translateY(0); }
    50%, 90% { transform: translateY(-200px); }
    100% { transform: translateY(0); }
  }
}

@media (max-width: 992px) {
  .carousel-image-wrapper {
    height: 400px;
  }
  .ad-container {
    height: 360px;
  }
  @keyframes slideExchangeTop {
    0%, 40% { transform: translateY(0); }
    50%, 90% { transform: translateY(180px); }
    100% { transform: translateY(0); }
  }
  @keyframes slideExchangeBottom {
    0%, 40% { transform: translateY(0); }
    50%, 90% { transform: translateY(-180px); }
    100% { transform: translateY(0); }
  }
}

@media (max-width: 768px) {
  .carousel-image-wrapper {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .carousel-image-wrapper {
    height: 300px;
  }
}

.carousel-control-prev, 
.carousel-control-next {
  width: 5%;
  opacity: 0.7;
  z-index: 20;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 20px;
  background-size: 50% 50%;
}

@media (max-width: 992px) {
  .carousel-caption h5 {
    font-size: 0.75rem;
  }
  
  .carousel-caption p {
    font-size: 0.66rem;
    display: none;
  }
}

@media (max-width: 768px) {
  .carousel-caption{
    bottom: 0px;
  }
  .carousel-caption {
    padding: 1.5rem 0.75rem 1rem;
    bottom: 0;
  }
  
  .carousel-caption h5 {
    font-size: 0.75rem;
  }
  
  .carousel-caption p {
    font-size: 0.66rem;
  
  }
}

@media (max-width: 576px) {
   .carousel-caption {
    bottom: 0;
  }
  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 15px;
  }
}

.carousel-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.carousel-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #f8f9fa;
}

/* Video carousel styling - matching image carousel size */
#videoCarousel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin: 0 auto;
  max-width: 100%;
}

.video-feedback-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 500px;
  display: flex;
  flex-direction: column;
}

.video-container {
  position: relative;
  height: 400px; 
  background: #000;
  flex-shrink: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.video-details {
  color: white;
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.video-customer {
  font-style: italic;
  margin-bottom: 0.3rem;
  color: #ddd;
}

.video-date {
  opacity: 0.7;
  font-size: 0.9rem;
  color: #ccc;
}

/* Ensure both carousels have the same control styling */
#royalCarousel .carousel-control-prev,
#royalCarousel .carousel-control-next,
#videoCarousel .carousel-control-prev,
#videoCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#royalCarousel .carousel-control-prev {
  left: 20px;
}

#royalCarousel .carousel-control-next {
  right: 20px;
}

#videoCarousel .carousel-control-prev {
  left: 10px;
}

#videoCarousel .carousel-control-next {
  right: 10px;
}

#royalCarousel .carousel-control-prev:hover,
#royalCarousel .carousel-control-next:hover,
#videoCarousel .carousel-control-prev:hover,
#videoCarousel .carousel-control-next:hover {
  opacity: 0.9;
  background: rgba(0,0,0,0.5);
}

/* Consistent indicator styling */
#royalCarousel .carousel-indicators,
#videoCarousel .carousel-indicators {
  bottom: 0px;
}

#royalCarousel .carousel-indicators button,
#videoCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .carousel-image {
    height: 400px;
  }
  
  .video-feedback-card {
    height: 450px;
  }
  
  .video-container {
    height: 350px;
  }
   .carousel-indicators{
    bottom: 0px;
  }
}

@media (max-width: 768px) {
  .carousel-image {
    height: 350px;
  }
  
  .video-feedback-card {
    height: 400px;
  }
  
  .video-container {
    height: 300px;
  }
  
  .carousel-caption {
    bottom: 30px;
    padding: 15px !important;
  }
  
  .carousel-title {
    font-size: 1.4rem;
  }
  
  .carousel-description {
    font-size: 1rem;
  }
  .carousel-indicators{
    bottom: 0px;
    display: none;
  }
}

@media (max-width: 576px) {
  .carousel-image {
    height: 300px;
  }
  
  .video-feedback-card {
    height: 350px;
  }
  
  .video-container {
    height: 250px;
  }
  
  .carousel-caption {
    width: 90%;
    bottom: 20px;
    padding: 10px !important;
  }
  
  .carousel-title {
    font-size: 1.2rem;
  }
  
  .carousel-description {
    font-size: 0.9rem;
  }
  
  .video-title {
    font-size: 1rem;
  }

}

/* No videos placeholder styling */
.no-video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  background: #333;
}

.no-videos {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  color: white;
  text-align: center;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

  /* Ensure text feedback carousel has consistent height */
  #feedbackCarousel .feedback-card {
    height: auto;
    min-height: 300px;
    margin: 20px auto;
    max-width: 600px;
  }

.table th {
    border-top: none;
    font-weight: 600;
}

.btn-group .btn {
    border-radius: 5px;
}

.badge {
    font-size: 0.75em;
}
@media (max-width: 992px) {
  .video-feedback-container {
    margin-top: 30px;
  }
}


/* Gallery Section Styles */
.gallery-section {
    background-color: #f8f9fa;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img-container .gallery-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
}

.gallery-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border: 3px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ccc;
}

.lightbox-caption {
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

/* Simple Job Notification Styles */
.job-notification-simple {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 300px;
    animation: slideInUp 0.5s ease-out;
    border-left: 4px solid #f59e0b;
    font-family: inherit;
}

.job-notification-simple.hidden {
    animation: slideOutDown 0.5s ease-in forwards;
}

.job-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.job-notification-icon {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.job-notification-text {
    flex: 1;
}

.job-notification-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 0 4px 0;
    color: white;
    line-height: 1.2;
}

.job-notification-message {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.3;
}

.job-notification-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.job-notification-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.job-notification-btn-primary {
    background-color: #f59e0b;
    color: white;
}

.job-notification-btn-primary:hover {
    background-color: #e6900b;
    transform: translateY(-1px);
}

.job-notification-btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.job-notification-btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.job-notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
}

.job-notification-close:hover {
    background-color: rgba(255,255,255,0.2);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Pulse animation for attention */
@keyframes pulse-gentle {
    0% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }
    100% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }
}

.job-notification-pulse {
    animation: pulse-gentle 3s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .job-notification-simple {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        margin: 0 10px;
    }
    
    .job-notification-content {
        gap: 10px;
    }
    
    .job-notification-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .job-notification-title {
        font-size: 0.9rem;
    }
    
    .job-notification-message {
        font-size: 0.8rem;
    }
    
    .job-notification-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .job-notification-simple {
        padding: 12px 15px;
    }
    
    .job-notification-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .job-notification-actions {
        flex-direction: column;
        gap: 6px;
    }
    
    .job-notification-btn {
        width: 100%;
    }
    
    .job-notification-close {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}

/* WhatsApp Chat Button Styles */
.whatsapp-chat-container {
    position: fixed;
    bottom: 50%;
    right: 30px;
    z-index: 1000;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.whatsapp-chat-button {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-chat-button i {
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background-color: #075E54;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border-width: 5px;
    border-style: solid;
    border-color: #075E54 transparent transparent transparent;
}

.whatsapp-chat-button:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animation for appearing/disappearing */
.whatsapp-chat-container.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
