/* USP Css */
.usp-decades {
  background: #fff;
  padding: 80px 0;
}

.usp-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.usp-box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 50px 25px 40px;
  transition: all 0.4s ease;
  border: 1px solid rgba(200, 155, 60, 0.15);
  position: relative;
  overflow: hidden;
}

.usp-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(200, 155, 60, 0.1), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
}

.usp-box:hover::before {
  left: 100%;
}

.usp-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(200, 155, 60, 0.25);
}

.usp-icon-img {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, #f9f5ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(200, 155, 60, 0.2);
  transition: all 0.4s ease;
}

.usp-icon-img img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.usp-box:hover .usp-icon-img img {
  transform: scale(1.1);
}

.usp-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.usp-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Subtle fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.usp-box {
  animation: fadeInUp 0.9s ease forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
  .usp-container {
    justify-content: center;
  }
  .usp-box {
    flex: 0 0 45%;
  }
}

@media (max-width: 600px) {
  .usp-box {
    flex: 0 0 100%;
  }
}


/* about us */

.about-decades {
  background: #f9f9f9;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image img {
  width: 92%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}

.about-content h2 span {
 background: linear-gradient(135deg, #252118 0%, #a67c2e 40%, #c89b3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  padding: 10px 28px;
  /*background: linear-gradient(135deg, #c89b3c, #a67c2e);*/
background: linear-gradient(135deg, #c89b3c 0%, #a67c2e 50%, #252118 100%);


  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(200, 155, 60, 0.3);
}

.about-btn:hover {
  background: linear-gradient(135deg, #a67c2e, #c89b3c);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200, 155, 60, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-btn {
    margin-top: 10px;
  }
}

      
      
      
/* key features */

.features-decades {
  background: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
  position: relative;
}

.features-title span {
  display: inline-block; 
  background: linear-gradient(135deg, #252118 0%, #a67c2e 40%, #c89b3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.features-title span::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c89b3c;
  margin: 10px auto 0;
  border-radius: 3px;
}

.features-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  justify-items: center;
}

.feature-box {
  background: #fff;
  border-radius: 18px;
  padding: 45px 25px 40px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  border: 1px solid rgba(200, 155, 60, 0.15);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(200, 155, 60, 0.1), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
}

.feature-box:hover::before {
  left: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(200, 155, 60, 0.25);
}

.feature-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #f7f2e9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(200, 155, 60, 0.25);
}

.feature-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon img {
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Entry animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-box {
  animation: fadeInUp 0.9s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .features-title {
    font-size: 1.8rem;
  }
  .feature-box {
    padding: 35px 20px;
  }
}

      
/* product section */

.products-grid-section {
  width: 100vw; 
  margin-left: calc(-50vw + 50%);
  /*background: #f8f9fb; */
    background: snow;
  padding: 80px 0;
}
    
.products-grid-section strong {
  display: inline-block; 
  background: linear-gradient(135deg, #252118 0%, #a67c2e 40%, #c89b3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}


.products-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 5%;
}


.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

.pc__img-wrapper {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f1f1f1;
}

.pc__img-wrapper img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.pc__img-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.pc__atc {
  opacity: 0;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
  background-color: #000;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
  position: absolute;
}

.pc__img-wrapper:hover .pc__atc {
  opacity: 1;
  bottom: 30px;
}

.pc__info {
  padding: 15px;
  text-align: center;
}

.pc__category {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.pc__title a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.pc__title a:hover {
  color: #ff6600;
}

.product-card__price {
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  font-weight: 600;
}

.price-old {
  color: #999;
  text-decoration: line-through;
  font-size: 14px;
}

.price-sale {
  color: #000;
  font-size: 15px;
}

.pc__btn-wl {
  top: 12px;
  right: 12px;
  opacity: 0.8;
  transition: all 0.3s;
}

.pc__btn-wl:hover {
  opacity: 1;
  transform: scale(1.1);
}



/* transform elegance */

  .premium-section {
    width: 100vw; 
    position: relative;
    overflow: hidden;
    background: #f8f9fb; 
    margin-left: calc(-50vw + 50%); 
    padding: 100px 0; 
  }

  .premium-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
  }

  .premium-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at center, rgba(200,155,60,0.25) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
  }

  .premium-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    position: relative;
  }

  .premium-subtext {
    text-align: center;
    font-size: 18px;
    color: #555;
    max-width: 650px;
    margin: 0 auto 60px auto;
  }

  .premium-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .premium-card {
    position: relative;
    width: 350px;
    height: 460px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    background: #fff;
    transition: all 0.6s ease;
    cursor: pointer;
  }

  .premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  .premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
  }

  .premium-card:hover img {
    transform: scale(1.1);
  }

  .premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: all 0.6s ease;
  }

  .premium-card:hover .premium-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
  }

  .premium-overlay h3 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 600;
  }

  .premium-overlay p {
    color: #ddd;
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .premium-card {
      width: 90%;
      height: 400px;
    }
    .premium-heading {
      font-size: 32px;
    }
  }


/* faqs */

.faq-section {
  background: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
    
}

    .faq-section span {
  display: inline-block; 
  background: linear-gradient(135deg, #252118 0%, #a67c2e 40%, #c89b3c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.faq-title span { color: #c89b3c; }
.faq-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.faq-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #f9f9f9;
}
.faq-item {
  border-bottom: 1px solid #e2e2e2;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: #f1f1f1;
}
.faq-icon {
  font-size: 1.4rem;
  color: #c89b3c;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fffaf2;
  transition: all 0.4s ease;
  padding: 0 25px;
}
.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  padding: 15px 0;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #a67c2e;
}


@media (max-width: 768px) {
  .faq-title { font-size: 2rem; }
  .faq-question { font-size: 1rem; padding: 18px 20px; }
  .faq-answer p { font-size: 0.95rem; }
}


/* pop up */


.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 34, 34, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 9999;
}


.welcome-content {
  background: linear-gradient(135deg, #1b1b1b, #333);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transform: scale(0.8);
  animation: popupScale 0.8s forwards;
  position: relative;
}


.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #ffcc33;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  color: #ffb347;
  transform: scale(1.2);
}


.welcome-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #ffb347;
  animation: bounceText 1.5s infinite;
}

.welcome-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.welcome-content h2 span {
  color: #ffcc33;
}

.welcome-content p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.5;
}


.welcome-content button {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background: #ffb347;
  color: #1b1b1b;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.welcome-content button:hover {
  background: #ffcc33;
  transform: scale(1.05);
}


@keyframes popupScale {
  0% { transform: scale(0.8); opacity: 0;}
  100% { transform: scale(1); opacity: 1;}
}

@keyframes bounceText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}


/* contact us */

.contact-section {
  background: linear-gradient(135deg, #1b1b1b, #2b2b2b, #1b1b1b);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.contact-title span {
  background: linear-gradient(135deg, #c89b3c 0%, #a67c2e 40%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 50px;
  animation: fadeInUp 1.2s ease;
}

.contact-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 25px;
  flex: 1 1 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: fadeInUp 1s ease forwards;
}

.contact-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(200,155,60,0.4);
}

.icon {
  font-size: 40px;
  color: #c89b3c;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.contact-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.contact-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.contact-box a {
  color: #ffcc33;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: #fff;
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}


@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
  .contact-box {
    padding: 30px 20px;
  }
}


/* Why Choose Us */
.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}
.why-choose-us h2 span { color: #c89b3c; }
.why-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200,155,60,0.25);
}
.why-card img { margin-bottom: 15px; border-radius: 50%; }
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; color: #222; }
.why-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* Vision & Mission */
.vision-mission .vision-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
.vision-card, .mission-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vision-card:hover, .mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200,155,60,0.25);
}
.vision-card img, .mission-card img {
  margin-bottom: 20px;
  border-radius: 50%;
}


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .why-container { flex-direction: column; align-items: center; }
  .vision-mission .vision-container { flex-direction: column; align-items: center; }
}





.company-history-premium {
  position: relative;
}
.history-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}
.history-title span { color: #c89b3c; }


.timeline-horizontal {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-horizontal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #c89b3c, #a67c2e);
  transform: translateX(-50%);
  border-radius: 2px;
}
.timeline-horizontal-item {
  position: relative;
  margin-bottom: 80px;
}
.timeline-card {
  position: relative;
  width: 45%;
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px 25px 60px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(200,155,60,0.25);
}
.timeline-card.left { left: 0; margin-left: 0; }
.timeline-card.right { left: 50%; padding-left: 20px; padding-right: 60px; }
.timeline-card.right::before, .timeline-card.left::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 4px;
  background: #c89b3c;
}
.timeline-card.left::before { right: -20px; }
.timeline-card.right::before { left: -20px; }

.timeline-icon {
  position: absolute;
  top: 20px;
  left: -60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #c89b3c;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(200,155,60,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card.right .timeline-icon { left: auto; right: -60px; }
.timeline-icon img { width: 100%; height: 100%; object-fit: cover; }

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}


@media (max-width: 768px) {
  .timeline-horizontal::before { left: 20px; }
  .timeline-card, .timeline-card.right, .timeline-card.left {
    width: 90%;
    left: 0 !important;
    padding: 20px 20px 20px 60px;
    margin: 40px auto;
  }
  .timeline-card.right::before, .timeline-card.left::before { left: 0; right: auto; }
  .timeline-card.right .timeline-icon, .timeline-card.left .timeline-icon { left: -60px; right: auto; }
}


      
      
/* session dropdown menu dwsktop */

.header-tools__item.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown menu */
.header-tools__item .dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Exactly below the icon */
    right: 0;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Show dropdown on hover */
.header-tools__item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.header-tools__item .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.header-tools__item .dropdown-menu a:hover {
    background: #fcd34d; /* Tailwind yellow-300 */
    color: #000;
}

.header-tools__item .dropdown-menu a.logout:hover {
    background: #f87171; /* Tailwind red-400 */
    color: #fff;
}





/* session dropdown menu mobile */

.header-tools__item.dropdown {
    position: relative;
    display: inline-block;
}

.header-tools__item .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .header-tools__item.dropdown:hover .dropdown-menu {
      display: block;
  }
}

@media (max-width: 767px) {
  .header-tools__item .dropdown-menu {
      left: 50%;
      right: auto;
      transform: translateX(-50%);
      width: 120px;
      text-align: center;
  }
}

.dropdown-menu.active {
    display: block;
}

.header-tools__item .dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.header-tools__item .dropdown-menu a:hover {
    background: #fcd34d;
    color: #000;
}

.header-tools__item .dropdown-menu a.logout:hover {
    background: #f87171;
    color: #fff;
}
