/* ========================================
   TOPBAR - Desktop & Mobile
   ======================================== */

.topbar {
  background: #ff6b6b;
  color: #fff;
  position: relative;
  z-index: 1100;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 1rem;
  gap: 1.5rem;
}

.topbar .left,
.topbar .center,
.topbar .right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 14px;
}

.topbar a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity 0.2s;
}

.topbar a:hover {
  opacity: 0.8;
}

.topbar .social {
  display: flex;
  gap: 0.75rem;
}

.topbar .social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.25s;
}

.topbar .social a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Hide condensed elements on desktop */
.topbar-condensed-toggle,
.topbar-condensed {
  display: none;
}

/* ========================================
   MAIN NAVIGATION - Desktop
   ======================================== */

.main-nav {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1050;
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
}

.main-nav .brand img {
  display: block;
  height: 56px;
  transition: transform 0.3s;
}

.main-nav .brand img:hover {
  transform: scale(1.05);
}

.main-nav .menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
}

.main-nav .menu a {
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s;
}

.main-nav .menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b6b;
  transition: width 0.3s ease;
}

.main-nav .menu a:hover {
  color: #ff6b6b;
}

.main-nav .menu a:hover::after {
  width: 100%;
}

.main-nav .actions .cta {
  background: #ff6b6b;
  color: #fff;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.main-nav .actions .cta:hover {
  background: #e23c3c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.menu-toggle {
  display: none;
}

/* Mobile menu close button - hidden on desktop */
.menu-close {
  display: none;
}

/* Mobile CTA - hidden on desktop */
.main-nav .menu .mobile-cta {
  display: none;
}

/* Mobile overlay backdrop */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE (768px and below)
   ======================================== */

@media (max-width: 768px) {

  /* ===== TOPBAR MOBILE ===== */
  .topbar .container {
    padding: 8px 1rem;
  }

  /* Hide all desktop topbar content */
  .topbar .left,
  .topbar .center,
  .topbar .right {
    display: none;
  }

  /* Show info toggle button in topbar */
  .topbar-condensed-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    gap: 6px;
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 500;
  }

  .topbar-condensed-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .topbar-condensed-toggle i {
    font-size: 16px;
  }

  /* Condensed contact info panel */
  .topbar-condensed {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ff6b6b;
    padding: 1rem 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1110;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .topbar-condensed.active {
    transform: translateY(0);
  }

  .topbar-condensed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .topbar-condensed-header h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
  }

  .topbar-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .topbar-close:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  .topbar-condensed-content > div {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .topbar-condensed-content > div:last-child {
    border-bottom: none;
  }

  .topbar-condensed-content i {
    width: 20px;
    text-align: center;
    opacity: 0.9;
  }

  .topbar-condensed-social {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .topbar-condensed-social a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.2s;
  }

  .topbar-condensed-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }

  /* ===== MAIN NAV MOBILE ===== */
  .main-nav .container {
    padding: 0.75rem 1rem;
  }

  .main-nav .brand img {
    height: 44px;
  }

  /* Hide desktop menu and actions */
  .main-nav .menu,
  .main-nav .actions {
    display: none;
  }

  /* Show hamburger button */
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6b6b;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  }

  .menu-toggle:hover {
    background: #e23c3c;
    transform: scale(1.05);
  }

  .menu-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
  }

  .menu-toggle.active svg {
    transform: rotate(90deg);
  }

  /* Mobile menu panel - slide from right */
  .main-nav .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 1060;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .main-nav .menu.active {
    transform: translateX(0);
  }

  .main-nav .menu a {
    padding: 1rem 0;
    font-size: 16px;
    border-bottom: 1px solid #f1f5f9;
  }

  .main-nav .menu a::after {
    display: none;
  }

  .main-nav .menu a:hover {
    padding-left: 10px;
  }

  /* Close button inside mobile menu */
  .menu-close {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }

  .menu-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
  }

  .menu-close svg {
    width: 20px;
    height: 20px;
  }

  /* CTA button in mobile menu */
  .main-nav .menu .mobile-cta {
    display: block;
    margin-top: 1.5rem;
    padding: 0.85rem 1.5rem;
    background: #ff6b6b;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
    border-bottom: none;
  }

  .main-nav .menu .mobile-cta:hover {
    background: #e23c3c;
    padding-left: 1.5rem;
  }

  /* Show overlay when menu is open */
  .mobile-overlay {
    display: block;
  }

  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* ========================================
   EXTRA SMALL MOBILE (480px and below)
   ======================================== */

@media (max-width: 480px) {
  .main-nav .brand img {
    height: 38px;
  }

  .menu-toggle {
    padding: 8px;
  }

  .topbar-condensed-toggle {
    padding: 6px 10px;
    font-size: 13px;
  }

  .main-nav .menu {
    width: 100%;
    max-width: 100%;
  }
}

/* ========================================
   OTHER SECTIONS (keeping your existing styles)
   ======================================== */

/* Our Clients Section */
.clients-section { padding:3.5rem 0 2.5rem; background:#fff; }
.clients-title { font-size:2.1rem; font-weight:800; color:#111827; margin-bottom:2.5rem; }
.client-logo { max-width:180px; max-height:90px; object-fit:contain; filter:drop-shadow(0 2px 12px rgba(0,0,0,0.08)); background:#fff; border-radius:12px; padding:12px; }
.carousel-indicators [data-bs-target] { width:12px; height:12px; border-radius:50%; background:#d1d5db; margin:0 4px; }
.carousel-indicators .active { background:#111827; }
.clients-section .carousel-control-prev, .clients-section .carousel-control-next { background:transparent; width:44px; height:44px; top:50%; transform:translateY(-50%); }
.clients-section .carousel-control-prev-icon, .clients-section .carousel-control-next-icon { background-color:#f3f4f6; border-radius:50%; }

@media (max-width: 768px) {
  .client-logo { max-width:120px; max-height:60px; padding:8px; }
  .clients-title { font-size:1.3rem; }
}

/* Highlights of Services Section */
.highlights-section { padding:4rem 0 2.5rem; background:#fff; }
.highlights-row { display:flex; gap:2.5rem; align-items:center; justify-content:center; }
.highlights-content { flex:1 1 520px; display:flex; flex-direction:column; justify-content:center; }
.highlights-label { color:#ff6b6b; font-size:1.1rem; font-weight:600; margin-bottom:1.2rem; }
.highlights-title { font-size:2.5rem; font-weight:800; color:#111827; margin-bottom:1.2rem; line-height:1.12; }
.highlights-desc { font-size:1.15rem; color:#64748b; margin-bottom:2.2rem; line-height:1.7; }
.highlights-btn {
    display: inline-block;
    width: auto;
    background: #ff6b6b;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(255,107,107,0.10);
    transition: background 180ms;
}
.highlights-btn:hover { background:#e23c3c; }
.highlights-img { flex:0 0 480px; max-width:480px; }
.highlights-img img { width:100%; border-radius:18px; box-shadow:0 10px 32px rgba(15,23,42,0.10); }

@media (max-width: 992px) {
  .highlights-row { flex-direction:column-reverse; gap:1.5rem; }
  .highlights-img, .highlights-content { max-width:100%; flex:1 1 100%; }
  .highlights-title { font-size:1.5rem; }
}

/* Featured Section: Image + Text */
.featured-section { padding:4rem 0 2.5rem; background:#fff; }
.featured-row { display:flex; gap:2.5rem; align-items:center; justify-content:center; }
.featured-img { flex:0 0 420px; max-width:420px; }
.featured-img img { width:100%; border-radius:18px; box-shadow:0 10px 32px rgba(15,23,42,0.10); }
.featured-content { flex:1 1 480px; }
.featured-title { font-size:2.2rem; font-weight:800; color:#0f172a; margin-bottom:1.2rem; }
.featured-desc { font-size:1.15rem; color:#334155; line-height:1.7; }

@media (max-width: 992px) {
  .featured-row { flex-direction:column; gap:1.5rem; }
  .featured-img, .featured-content { max-width:100%; flex:1 1 100%; }
  .featured-title { font-size:1.5rem; }
}

/* Hero and carousel */
.carousel-item img { filter: saturate(0.95) contrast(0.95); max-height:600px; object-fit:cover; }
.carousel-caption h3 { font-size:2.25rem; font-weight:700; color:#fff; text-shadow:0 6px 18px rgba(0,0,0,0.45); }

/* Partners marquee tweaks */
.partners-marquee { padding:1.5rem 0; }
.partners-track { display:flex; align-items:center; gap:2rem; }
.partners-track .partner-item img { max-height:96px; }

/* Footer */
.site-footer { background:#17062a; color:#ffffff; padding:4rem 0 2rem; }
.site-footer a { color:#ff6b6b; text-decoration:none; }
.site-footer .footer-widgets { display:flex; gap:2rem; flex-wrap:wrap; }
.site-footer .widget { flex:1 1 220px; }
.site-footer .widget h4 { color:#ff6b6b; margin-bottom:0.75rem; }
.site-footer .search-box input { width:100%; padding:0.8rem; border-radius:6px; border:0; }
.site-footer .search-box button { margin-top:0.75rem; background:#ff6b6b; color:#fff; border:0; padding:0.6rem 1rem; width:100%; border-radius:6px; }
.site-footer .bottom-bar { background:#ff6b6b; text-align:center; padding:0.75rem 0; color:#fff; margin-top:1.5rem; }

@media (max-width: 768px) {
  .site-footer .footer-widgets { flex-direction:column; }
}

/* Footer responsive enhancements */
@media (max-width: 992px) {
  .site-footer { padding:3rem 0 1.5rem; }
  .site-footer .footer-widgets { gap:1rem; }
  .site-footer .widget { flex:1 1 100%; }
  .site-footer .widget h4 { font-size:1.05rem; }
  .site-footer .search-box { display:flex; gap:0.5rem; }
  .site-footer .search-box input { flex:1 1 auto; margin:0; }
  .site-footer .search-box button { width:auto; margin-top:0; padding:0.55rem 0.9rem; align-self:flex-start; }
  .site-footer .bottom-bar { font-size:0.95rem; padding:0.65rem 0; }
}

@media (max-width: 480px) {
  .site-footer { padding:2rem 0 1rem; }
  .site-footer .search-box { flex-direction:column; }
  .site-footer .search-box button { width:100%; }
  .site-footer .bottom-bar { font-size:0.9rem; }
}

/* Scroll-to-top button */
.scroll-to-top { position:fixed; right:1rem; bottom:1rem; background:#ff6b6b; color:#fff; width:44px; height:44px; display:flex; align-items:center; justify-content:center; border-radius:999px; box-shadow:0 8px 24px rgba(2,6,23,0.18); z-index:1300; text-decoration:none; }
.scroll-to-top i { font-size:1.1rem; }
.scroll-to-top:hover { transform:translateY(-4px); transition:transform 180ms ease; }

.carousel-item { position:relative; overflow:hidden; }
.carousel-item .bg-image { position:absolute; inset:0; background-size:cover; background-position:center; filter: blur(10px) brightness(0.6); transform: scale(1.03); -webkit-transform:scale(1.03); z-index:1; }

/* Hero slider custom layout to match design */
.hero-slide { position:relative; min-height:520px; display:flex; align-items:center; z-index:5; }
.hero-slide:before { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(255,107,107,0.45), rgba(236,72,153,0.22)); mix-blend-mode:overlay; z-index:2; }
.hero-slide .slide-inner { position:relative; z-index:5; width:100%; }
.hero-slide .slide-row { display:flex; align-items:center; gap:2rem; }
.hero-slide .slide-image { flex:0 0 48%; display:flex; align-items:center; justify-content:center; }
.hero-slide .slide-image .img-wrap { border-radius:24px; padding:1rem; border:4px dashed rgba(255,255,255,0.85); background:rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.25); position:relative; z-index:6; }
.hero-slide .slide-image img { display:block; width:100%; height:auto; border-radius:16px; object-fit:cover; }
.hero-slide .slide-caption { flex:1 1 52%; color:#fff; padding:1rem 2rem; }
.hero-slide .slide-caption h2 { font-size:3rem; line-height:1.05; font-weight:800; margin-bottom:0.5rem; }
.hero-slide .slide-caption p { opacity:0.95; color:rgba(255,255,255,0.9); margin-bottom:1rem; }
.hero-slide .slide-caption .btn-hero { background:#ff6b6b; color:#fff; padding:0.75rem 1.25rem; border-radius:30px; border:none; }

/* Carousel controls style */
.carousel-control-prev, .carousel-control-next { width:56px; height:56px; background:rgba(255,255,255,0.14); border-radius:999px; display:flex; align-items:center; justify-content:center; top:50%; transform:translateY(-50%); }
.carousel-control-prev-icon, .carousel-control-next-icon { filter:drop-shadow(0 6px 12px rgba(0,0,0,0.25)); }

@media (max-width: 992px) {
  .hero-slide .slide-row { flex-direction:column-reverse; }
  .hero-slide .slide-image, .hero-slide .slide-caption { flex:1 1 100%; }
  .hero-slide .slide-caption h2 { font-size:2rem; }
}

/* Events grid styling (date badge + overlapping info card) */
.events-grid .event-card { position:relative; overflow:visible; margin-bottom:3.5rem; }
.events-grid .event-card .img-wrap { border-radius:6px; overflow:hidden; box-shadow:0 6px 18px rgba(15,23,42,0.06); }
.events-grid .event-card .img-wrap img { width:100%; height:320px; object-fit:cover; display:block; }
.events-grid .event-card .date-badge { position:absolute; top:12px; left:12px; background:#fff; border-radius:8px; padding:8px 10px; text-align:center; box-shadow:0 8px 22px rgba(15,23,42,0.12); }
.events-grid .event-card .date-badge .day { display:block; font-weight:700; color:#ef4444; font-size:1.25rem; line-height:1; }
.events-grid .event-card .date-badge .mon { display:block; font-size:0.72rem; color:#6b7280; text-transform:uppercase; letter-spacing:0.06em; }
.events-grid .event-card .event-info { background:#fff; border-radius:20px; padding:18px 20px; margin-top:-48px; box-shadow:0 20px 40px rgba(2,6,23,0.08); position:relative; z-index:6; }
.events-grid .event-card .event-info h5 {
  color: #ef4444;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-decoration: none;
  border-bottom: none;
}
.events-grid .event-card .event-info p {
  color: #334155;
  margin-bottom: 0;
  text-decoration: none;
  border-bottom: none;
}

@media (max-width: 768px) {
  .events-grid .event-card .img-wrap img { height:220px; }
  .events-grid .event-card .event-info { margin-top:-40px; padding:14px; }
}

/* Hover reveal: hide event-info by default and show on hover (desktop), keep date badge visible */
.events-grid .event-card .event-info {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}
.events-grid .event-card:hover .event-info,
.events-grid .event-card:focus-within .event-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* On small screens, always show the info panel (no hover) */
@media (max-width: 768px) {
  .events-grid .event-card .event-info { opacity:1; transform:none; pointer-events:auto; }
}

/* Services / What We Offer */
.services-section { padding:4.5rem 0; text-align:center; }
.services-section .section-title { font-size:2.1rem; font-weight:800; margin-bottom:2.25rem; color:#0f172a; }
.services-row { display:flex; gap:2rem; justify-content:center; align-items:stretch; }
.service-card { background:#ff6b6b; color:#fff; border-radius:10px; padding:2.75rem 2rem; flex:0 0 30%; display:flex; flex-direction:column; align-items:center; justify-content:flex-start; box-shadow:0 18px 40px rgba(15,23,42,0.06); transition:transform 260ms ease, box-shadow 260ms ease; }
.service-card .icon { font-size:40px; margin-bottom:1rem; opacity:0.95; }
.service-card h4 { font-size:1.8rem; font-weight:800; margin:0 0 1rem; }
.service-card p { color:rgba(255,255,255,0.95); line-height:1.6; }
.service-card:hover { transform:translateY(-8px); box-shadow:0 30px 60px rgba(15,23,42,0.12); }

@media (max-width: 992px) {
  .services-row { flex-direction:column; gap:1.25rem; }
  .service-card { flex:1 1 auto; padding:1.75rem; }
  .services-section .section-title { font-size:1.6rem; }
}
