:root {
  --brand-from: #e040fb;
  --brand-to: #7c3aed;
}

body {
  font-family: 'Times New Roman', Times, serif;
  background-color: #f9fafb;
}

/* ===== HEADER ===== */
header {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 50;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;

}

.brand-logo {
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none !important;
}

.top-bar {
  height: 65px;
  padding-top: 15px;
}

/* ===== HAMBURGER ====*/
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #1f2937;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

#hamburger-btn {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
}

#hamburger-btn:hover {
  background-color: #f3f4f6;
}

#hamburger-btn.open #line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburger-btn.open #line2 {
  opacity: 0;
}

#hamburger-btn.open #line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== DROPDOWN NAV MENU ===== */
#nav-menu {
  position: absolute;
  top: 64px;
  right: 85px;
  width: 200px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  display: none;
}

#nav-menu.show {
  display: block;
}

#nav-menu nav {
  padding: 0.5rem 0.75rem;
}

#nav-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}

#nav-menu a:hover {
  background-color: #f5f3ff;
  color: #7c3aed;
}

/* Mobile only: full width dropdown */
@media (max-width: 575px) {
  #nav-menu {
    right: 0;
    width: 100%;
    border-radius: 0;
  }

  .top-bar {
    padding: 10px 15px;
  }
}

/* ===== DESKTOP BOTTOM NAVBAR ===== */
.desktop-nav {
  border-top: 1px solid #f0f0f0;
  display: none;
  padding: 8px 0px;
}


@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }

}

@media (max-width: 1366px) {
  .top-bar {
    padding: 10px 15px;
  }

  .desktop-nav {
    padding: 0px 15px;
  }

  .event-img {
    width: 250px;
    height: 165px;
  }
}

.desktop-nav nav {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #7c3aed;
}

/* ===== SLIDER ===== */
#carouselExampleIndicators {
  cursor: grab;
  user-select: none;
}

#carouselExampleIndicators:active {
  cursor: grabbing;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0;
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s, background 0.3s;
}

#carouselExampleIndicators:hover .carousel-control-prev,
#carouselExampleIndicators:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.carousel-indicators li.active {
  background: #fff;
  transform: scale(1.3);
}

.carousel-item {
  transition: transform 0.5s ease !important;
}

/* ===== PRODUCT GRID ===== */
.product-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

#product-grid>div {
  padding: 0 10px !important;
  margin-bottom: 20px !important;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* ===== Lightbox ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lb-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

/* buttons */
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  user-select: none;
}

.lb-close {
  top: 20px;
  right: 30px;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}



/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lb-prev, .lb-next {
    font-size: 35px;
  }

  .lb-close {
    font-size: 35px;
  }

  #lb-img {
    max-width: 95%;
  }
}

/* ======== tittel and tex er mobile er size fix ========= */
@media (max-width: 576px) {
  .head_margin {
    margin-top: 25px;
  }

  .font-weight-bold {
    font-size: 18px !important;
  }

  .section-heading {
    font-size: 28px !important;
  }

  .reliable-section,
  .bg-white {
    padding-top: 0px !important;
  }

  .font-weight-bolder {
    font-size: 28px !important;
  }

  .flag-circle {
    width: 50px !important;
    height: 50px !important;
  }

  .badge-yellow {
    font-size: 10px !important;
  }

  .coustom_font {
    font-size: 11px !important;
  }

  .location_font {
    font-size: 14px !important;
  }

  .bold_font {
    font-size: 22px !important;
  }
}

/* ==========tablate er responsive============ */
@media (min-width: 768px) and (max-width: 991px) {
  .desktop-nav {
    display: block;
    padding: 0px 15px;
  }

  .desktop-nav nav {
    gap: 15px !important;
  }

  .header-inner .top-bar {
    padding: 15px 15px;
  }

  header #nav-menu {
    right: 16px;
  }
  .event_para {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .font-weight-bold {
    font-size: 15px !important;
  }

  .text-secondary {
    font-size: 12px !important;
  }

    .section-heading {
    font-size: 35px !important;
  }

  .tittle_second {
    font-size: 30px !important;
    margin-top: 20px;
  }

  .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .text-secondary {
    font-size: 17px !important;
  }

  .reliable-section {
    padding-top: 0px !important;
  }
  .golobal_tittle{
    font-size: 31px !important;
  }
}
/* =========Laptop responsive============ */
@media (min-width: 992px) and (max-width: 1400px) {
    .event_para {
    display: -webkit-box;
    -webkit-line-clamp:5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

  /* ========iPad Pro========== */
@media (min-width: 1024px) 
       and (max-width: 1366px) 
       and (orientation: portrait) {

  .tittle_second,
  .golobal_tittle {
    font-size: 35px;
  }

  .event-card {
    flex-direction: column;
  }

  .event_para {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .event-img{
    width: 180px !important;
    height: 145px !important;
  }
}

/* ===== RELIABLE SECTION ===== */


.reliable-section h2 em {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== GLOBAL BUSINESS ===== */
.flag-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-yellow {
  background-color: #facc15;
  color: #713f12;
  font-size: 16px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 9999px;
  display: inline-block;
}

.office-image{
  height: 350px;
}
.office-img-tall {
  width: 100%;
  min-height: 15rem;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.office-img-small {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) and (max-width: 991px) {
  .office-img-small {
    height: 160px;
  }
}

.country-flow {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.arrow-icon {
  padding-top: 1rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.col-7 {
  flex: 100;
  max-width: 100%;
  height: 330px;
}

.wholesale-section {
  overflow: hidden;
}

/* ===== EVENTS ===== */
.event-img {
  width: 350px;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .event-img {
    width: 130px;
    height: 110px;
  }
}

.heart-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 9999px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.event-card {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1.25rem;
}

@media (max-width: 576px) {
  .event-card {
    display: block;
    flex-direction: row;
    gap: 0.75rem;
    align-items: flex-start;
    border-bottom: 1px solid #f3f4f6;

  }

  .event-img {
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
  }

  .justify-content-end {
    justify-content: center;
  }

  .country-flow {
    gap: 0px;
  }

  .row .col-12 {
    padding-right: 0px;
    padding-left: 0px;
  }
}

.event-meta {
  flex: 1;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #d1d5db;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
}

.see-more-btn:hover {
  background-color: #f9fafb;
  color: #374151;
  text-decoration: none;
}

/* ===== TABLET TWEAKS ===== */
@media (min-width: 768px) and (max-width: 991px) {
  .section-heading {
    font-size: 1.6rem;
  }

  .wholesale-col {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}


/* footer er code  */

.custom-footer {
  background-color: #1f1d1d;
  color: #f0f0f0;
  padding: 60px 0 20px;
  font-family: 'Times New Roman', Times, serif;
  width: 100%;
  margin: 0;
}

.custom-footer .container-fluid {
  width: 100%;
}

.custom-footer .row {
  display: flex;
  flex-wrap: wrap;
}

/* Logo */
.footer-logo {
  font-size: 35px;
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 15px;
  display: block;
}

/* Title */
.footer-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #cccccc;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-icons a img {
  width: 18px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Copyright */
.copyright-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #FFFFFF;
}

/* Custom 5 column layout */
@media (min-width: 992px) {
  .col-lg-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 15px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }

  .custom-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}