/* start custom styles for gs header top */
:root {
  --gs-orange: #f59e0b;
  --gs-green: #2e7d32;
  --gs-red: #e53935;
  --gs-teal: #00bcd4;
  --gs-dark: #0b1220;
  --gs-muted: #6c757d;
  --gs-light: #f8f9fa;
  --gs-gradient: linear-gradient(
    135deg,
    var(--gs-orange) 0%,
    var(--gs-green) 100%
  );
  --gs-gradient-1: linear-gradient(
    135deg,
    var(--gs-green) 0%,
    var(--gs-orange) 100%
  );
  --gs-gradient-2: linear-gradient(
    135deg,
    var(--gs-teal) 0%,
    var(--gs-red) 100%
  );
  --gs-gradient-3: linear-gradient(
    135deg,
    var(--gs-dark) 0%,
    var(--gs-teal) 50%,
    var(--gs-red) 100%
  );
  --gs-gradient-4: linear-gradient(
    135deg,
    var(--gs-dark) 0%,
    var(--gs-red) 100%
  );
  --gs-gradient-5: linear-gradient(
    135deg,
    var(--gs-dark) 10%,
    var(--gs-red) 40%,
    var(--gs-dark) 10%,
    var(--gs-teal) 100%
  );
}

html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}

.navbar.sticky {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
  height: 30px;
  transform: scale(1.3);
  transform-origin: left;
}

/* Hero */
.hero {
  background: var(--gs-gradient);
  color: #fff;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero-figure {
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn-primary {
  background-color: var(--gs-orange);
  border-color: var(--gs-orange);
}

.btn-primary:hover {
  background-color: #d97706;
  border-color: #d97706;
}

.btn-success {
  background-color: var(--gs-green);
  border-color: var(--gs-green);
}

.btn-success:hover {
  background-color: #1b5e20;
  border-color: #1b5e20;
}

.btn-outline-primary {
  color: var(--gs-orange);
  border-color: var(--gs-orange);
}

.btn-outline-primary:hover {
  background-color: var(--gs-orange);
  color: #fff;
}

/* Cards */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.soft-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
}

/* Gradient text */
.text-gradient {
  background: var(--gs-gradient-5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section spacing */
section {
  padding: 4rem 0;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

body {
  font-family: "Outfit", sans-serif;
  padding-top: 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

/* CTA strip */
.cta {
  background: var(--gs-gradient);
  color: #fff;
}

.cta h4,
.cta p {
  color: #fff;
}

/* Footer */
footer {
  background: var(--gs-green);
  color: #eaf2eb;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer input.form-control {
  border-radius: 2rem;
  padding-left: 1rem;
}

footer button {
  border-radius: 2rem;
  padding: 0 0.9rem;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .display-5 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

.tech-item {
  padding: 1.4rem;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.tech-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* hover → color + slight grow */
.tech-item:hover .tech-icon {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.tech-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-color: #007bff;
}

.background {
  background: linear-gradient(335deg, var(--gs-light), var(--gs-green));
}

.service-pill {
  background: #1a1a1a;
  border: 1px solid #444;
  border-radius: 25px;
  padding: 6px 15px;
  font-size: 0.9rem;
  color: black;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.service-pill:hover {
  background: transparent;
  color: darkblue;
  border-color: var(--gs-orange);
}

.service-pill {
  background: transparent;
}

/* Tabs */
#demos .list-group-item {
  font-weight: 600;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
}

#demos .list-group-item.active {
  background: linear-gradient(90deg, #ff9800, #e65100);
  border: none;
  color: #fff;
}

/* Demo panes */
.demo-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.35s ease;
}

.demo-pane.active {
  display: block;
  opacity: 1;
  transform: none;
}

/* Mockups */
.mockup {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.mockup:hover {
  transform: scale(1.05);
}

.mockup.phone {
  height: 400px;
}

.mockup.desktop {
  height: 400px;
}

/* Quick compare grid */
#demo-stage.compare .demo-pane {
  display: block;
  opacity: 1;
  transform: none;
  margin-bottom: 1.5rem;
}

/* style for select work */
.btn-start-project {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 50px;
  /* pill shape */
  background: linear-gradient(135deg, var(--gs-dark) 0%, var(--gs-red) 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.btn-start-project:hover {
  transform: scale(1.05);
  background: linear-gradient(335deg, var(--gs-dark) 0%, var(--gs-green) 100%);
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .btn-start-project {
    bottom: 15px;
    right: 15px;
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 40px;
  }
}

@media (max-width: 480px) {
  .btn-start-project {
    bottom: calc(env(safe-area-inset-bottom, 10px));
    right: 10px;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
}

.work-card-glass {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.work-card-glass .work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
}

.work-card-glass .work-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  /* initially below image */
  text-align: center;
  color: #fff;
  opacity: 0;
  padding: 1rem;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

.work-card-glass:hover .work-img {
  filter: blur(4px) brightness(0.7);
  transform: scale(1.05);
}

.work-card-glass:hover .work-content {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.work-card-glass .tags span {
  display: inline-block;
  margin: 0 4px 4px 0;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
}

/* Make only the card title always visible below the image */
.work-card-glass .work-content h5 {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  color: #fff;
  margin-top: 0.5rem;
  text-align: center;
}

/* Keep tags inside hover overlay */
.work-card-glass .tags {
  opacity: 0;
  transition: all 0.3s ease;
}

.work-card-glass:hover .tags {
  opacity: 1;
}

/* Mobile: show only 1 card per slide */
@media (max-width: 576px) {
  .carousel-item .carousel-card {
    display: none;
  }

  .carousel-item .carousel-card:first-child {
    display: block;
  }
}

/* style for FAQ section */
#faq .accordion-button {
  background-color: #fff;
  box-shadow: none !important;
}

#faq .accordion-item {
  border: 1px solid #e5e7eb;
}

#faq .accordion-button::after {
  filter: invert(0.5);
}

/* ============================
 Global Performance + Responsive Enhancements
============================ */

/* Make all images, videos, and iframes responsive */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container fluidity */
.container,
.container-fluid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Text scaling: ensures readability across devices */
html {
  font-size: 100%;
  /* base */
}

@media (max-width: 1200px) {
  html {
    font-size: 95%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 90%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 85%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 80%;
  }
}

/* Flex utilities for responsiveness */
.responsive-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.responsive-flex > * {
  flex: 1 1 250px;
}

/* Ensure buttons & inputs scale properly */
button,
input,
select,
textarea {
  max-width: 100%;
  font: inherit;
}

/* Responsive tables */
table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  word-wrap: break-word;
  padding: 0.75rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* Smooth transitions for responsiveness */
* {
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

/* Disable animations & transitions for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* style for social icons */
.social-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}
/* end css for gs header top */

/* start success message */
/* Overlay for blur background */
.success-overlay {
  position: fixed;
  /* fixed to cover full viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

/* Success card */
.success-card {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.4s ease-out;
}

.success-card h3 {
  margin-bottom: 1rem;
  color: #28a745;
}

.success-card p {
  margin-bottom: 1.5rem;
}

.success-card button {
  padding: 0.5rem 1.5rem;
  border: none;
  background-color: #28a745;
  color: #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.success-card button:hover {
  background-color: #218838;
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* end success message */

/* demo details */
#lightbox-overlay {
  display: flex;
  transition: opacity 0.3s;
  cursor: pointer;
}

#lightbox-overlay img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

#lightbox-overlay img:hover {
  transform: scale(1.02);
}

/* css for comments */
.new-comment {
  background-color: #d4edda; /* light green */
  transition: background-color 2s ease, transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;
}
.new-comment.show {
  transform: translateY(0);
  opacity: 1;
}

/* start css for project cards */
.user-card {
  transition: all 0.4s ease;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.08),
    -5px -5px 15px rgba(255, 255, 255, 0.7);
  perspective: 1000px;
}

.current-user {
  transform: scale(1.03) translateY(-4px);
  background: linear-gradient(145deg, #fff9e6, #fff);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.blurred-user {
  filter: blur(1.5px) brightness(0.9);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.blurred-user:hover {
  filter: blur(0) brightness(1);
  opacity: 1;
}

.user-bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 130px;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.user-bar-chart .bar {
  width: 40%;
  border-radius: 8px 8px 2px 2px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: 100% 200%;
  box-shadow: inset -2px -3px 6px rgba(255, 255, 255, 0.6),
    inset 3px 4px 6px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.bar.total-leads {
  background: linear-gradient(180deg, #007bff 0%, #0046a3 100%);
}

.bar.last-24h {
  background: linear-gradient(180deg, #00c36d 0%, #007a3b 100%);
}

.bar-number {
  position: absolute;
  bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Text glow for current user */
.text-glow {
  color: #d4a017;
  text-shadow: 0 0 8px rgba(255, 200, 0, 0.6);
}

/* Stars */
.stars {
  margin-left: 4px;
  color: gold;
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.8);
}

/* Animate bar rise */
@keyframes barRise {
  from {
    height: 0;
    opacity: 0.4;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-bar-chart .bar {
  animation: barRise 0.9s ease forwards;
}

.user-card:hover {
  transform: scale(1.03);
}

/* end css for project cards */

/* start css for contact */
/* Unique wrapper */
.contacts-overview-section {
  --card-border-radius: 1rem;
  --card-padding: 1rem;
}

/* Contacts Overview Card */
.contacts-overview-section > .card-box {
  background: linear-gradient(135deg, #f5f7ff, #e4e9ff) !important;
  border-radius: var(--card-border-radius) !important;
  padding: var(--card-padding) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  color: #222 !important; /* Base text color */
}

/* Service Cards */
.contacts-overview-section .contact-service-card {
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  color: #fff !important; /* Ensure text is readable on gradients */
}

/* Hover effect */
.contacts-overview-section .contact-service-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,0.12) !important;
}

/* Gradient background for service cards using data-index */
.contacts-overview-section .contact-service-card[data-index="1"] { background: linear-gradient(135deg, #ff9a9e, #fad0c4) !important; }
.contacts-overview-section .contact-service-card[data-index="2"] { background: linear-gradient(135deg, #a18cd1, #fbc2eb) !important; }
.contacts-overview-section .contact-service-card[data-index="3"] { background: linear-gradient(135deg, #fbc2eb, #a6c1ee) !important; }
.contacts-overview-section .contact-service-card[data-index="4"] { background: linear-gradient(135deg, #ffecd2, #fcb69f) !important; }
.contacts-overview-section .contact-service-card[data-index="5"] { background: linear-gradient(135deg, #ffdde1, #ee9ca7) !important; }
.contacts-overview-section .contact-service-card[data-index="6"] { background: linear-gradient(135deg, #d4fc79, #96e6a1) !important; color: #222 !important; } /* darker text for light bg */
.contacts-overview-section .contact-service-card[data-index="7"] { background: linear-gradient(135deg, #84fab0, #8fd3f4) !important; color: #222 !important; }
.contacts-overview-section .contact-service-card[data-index="8"] { background: linear-gradient(135deg, #cfd9df, #e2ebf0) !important; color: #222 !important; }

/* Icon Circle */
.contacts-overview-section .icon-circle {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: rgba(255,255,255,0.25) !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease-in-out !important;
  color: inherit !important;
}

/* Icon hover glow */
.contacts-overview-section .contact-service-card:hover .icon-circle {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12) !important;
}

/* Text shadow for wow effect */
.contacts-overview-section .contact-service-card span.fw-semibold {
  text-shadow: 0 1px 2px rgba(0,0,0,0.25) !important;
  color: inherit !important;
}

/* Badge inside gradient card */
.contacts-overview-section .contact-service-card .badge {
  background: rgba(255,255,255,0.25) !important;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25) !important;
}

/* ===================== Leads Overview Ultra-Modern Style ===================== */
.leads-overview {
  font-family: 'Inter', sans-serif !important;
}

/* Main Card */
.leads-overview > .card-box {
  border-radius: 1.25rem !important;
  overflow: hidden !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
  transition: all 0.3s ease-in-out !important;
  background: linear-gradient(145deg, #f5f7ff, #e0ebff) !important;
}

/* Header with Bell */
.leads-overview .card-box > .d-flex.bg-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: #fff !important;
  padding: 2rem !important;
  border-radius: 1.25rem 1.25rem 0 0 !important;
  box-shadow: inset 0 -1px 5px rgba(255,255,255,0.2) !important;
}

/* Total Summary */
.leads-overview .text-center h1 {
  font-size: 3rem !important;
  color: #333 !important;
  text-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
}
.leads-overview .text-center p {
  font-size: 1rem !important;
  color: #555 !important;
}

/* Inner Cards Common */
.leads-overview .card-box .card {
  border-radius: 1rem !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
  background: linear-gradient(145deg, #ffffff, #f0f4ff) !important;
}

/* Hover effect for inner cards */
.leads-overview .card-box .card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,0.15) !important;
}

/* Company Types Card */
.leads-overview .card-box .card .bg-primary.bg-opacity-10 {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: #fff !important;
}
.leads-overview .card-box .card .text-primary {
  color: #fff !important;
}

/* State / Division Card */
.leads-overview .card-box .card .bg-success.bg-opacity-10 {
  background: linear-gradient(135deg, #42e695, #3bb2b8) !important;
  color: #fff !important;
}
.leads-overview .card-box .card .text-success {
  color: #fff !important;
}

/* Badges */
.leads-overview .card-box .card .badge {
  border-radius: 12px !important;
  font-weight: 600 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
}

/* User Activity Card */
.leads-overview .user-card {
  background: linear-gradient(145deg, #f0f4ff, #e0e8ff) !important;
  border-radius: 1.5rem !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease-in-out !important;
}

.leads-overview .user-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 32px rgba(0,0,0,0.15) !important;
}

/* User Bars */
.leads-overview .user-bar-chart .bar.total-leads {
  width: 45% !important;
  border-radius: 12px !important;
  position: relative !important;
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  transition: height 1s ease !important;
}
.leads-overview .user-bar-chart .bar.last-24h {
  background: linear-gradient(135deg, #42e695, #3bb2b8) !important;
}

/* User name + stars */
.leads-overview .user-card h6 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  color: #333 !important;
}
.leads-overview .user-card h6 .stars {
  color: #ffbb33 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

/* Footer buttons */
.leads-overview .card-box .d-flex > a.btn {
  border-radius: 0.75rem !important;
  font-weight: 600 !important;
  padding: 0.6rem 1rem !important;
  transition: all 0.3s ease-in-out !important;
}

.leads-overview .card-box .d-flex > a.btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}


/* start css for documents overview */
.doc-card {
  position: relative;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.emoji-glow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.8),
    rgba(0, 0, 0, 0.05)
  );
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.shiny-emoji {
  position: relative;
  overflow: hidden;
}

.shiny-emoji::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.6) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.6) 100%
  );
  transform: rotate(25deg);
  animation: shineMove 3s infinite linear;
}

@keyframes shineMove {
  0% {
    transform: translateX(-120%) rotate(25deg);
  }

  100% {
    transform: translateX(120%) rotate(25deg);
  }
}

.shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.25) 100%
  );
  animation: shimmer 6s infinite linear;
  opacity: 0.3;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* end css for documents overview */

/* start css for Client Project card */
.project-card {
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: auto;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.step-circle.active {
  transform: scale(1.2);
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: scale(1.15);
  z-index: 2;
}

.avatar.more {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -10px;
  border: 2px solid #fff;
}

.bg-primary-subtle {
  background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-success-subtle {
  background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-danger-subtle {
  background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-info-subtle {
  background-color: rgba(13, 202, 240, 0.1) !important;
}

.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.step-circle.active {
  transform: scale(1.2);
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

.step-circle.completed {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.tick {
  position: absolute;
  color: white;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* end css for Client Project card */

/* start css for project overview */
.card,
.status-box {
  transition: all 0.3s ease;
}

.card:hover,
.status-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.status-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.status-box i {
  display: block;
}

a {
  color: inherit;
}

.side-border {
  border-left: 0;
  border-right: 0;
  border-top: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
}
/* end css for project overview */

/* all css for admin dashboard */


/* Sms section */
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
/*post section */
.posts-summary-card {
  background: rgba(20, 20, 30, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}

/* Statistic cards */
.stat-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* Sub-cards (Blog/Event/News) */
.sub-card {
  border-radius: 1rem;
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sub-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

/* Gradient themes */
.bg-blue    { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.bg-green   { background: linear-gradient(135deg, #11998e, #38ef7d); }
.bg-orange  { background: linear-gradient(135deg, #f7971e, #ffd200); }
.bg-purple  { background: linear-gradient(135deg, #654ea3, #eaafc8); }
.bg-pink    { background: linear-gradient(135deg, #fcb69f, #ffecd2); color: #222; }
.bg-teal    { background: linear-gradient(135deg, #84fab0, #8fd3f4); color: #222; }
.bg-gray    { background: linear-gradient(135deg, #bdc3c7, #2c3e50); }
/* task, meeting,demo,etc */
.dashboard-summary {
  --blur-bg: rgba(255, 255, 255, 0.15);
  --border: rgba(255, 255, 255, 0.25);
}

.summary-card {
  background: var(--blur-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
}

.summary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.summary-card h6 {
  font-weight: 700;
  letter-spacing: 0.3px;
  text-shadow: 0 0 8px rgba(255,255,255,0.2);
  margin-bottom: 1rem;
}

.summary-card .count {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.summary-card .actions {
  display: flex;
  gap: .5rem;
  justify-content: center;
}

/* Unique gradient colors */
.bg-blue    { background: linear-gradient(135deg, #007cf0, #00dfd8); }
.bg-purple  { background: linear-gradient(135deg, #7928ca, #ff0080); }
.bg-green   { background: linear-gradient(135deg, #11998e, #38ef7d); }
.bg-teal    { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.bg-pink    { background: linear-gradient(135deg, #fcb69f, #ffecd2); color:#222; }
.bg-orange  { background: linear-gradient(135deg, #ff9966, #ff5e62); }
.bg-gray    { background: linear-gradient(135deg, #bdc3c7, #2c3e50); }
.bg-yellow  { background: linear-gradient(135deg, #f6d365, #fda085); color:#222; }

/* Button tweaks for better contrast */
.summary-card .btn-outline-light {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.summary-card .btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
}


/* style for demos */
.demo-thumb {
  position: relative;
  overflow: hidden;
}

.demo-thumb .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-thumb:hover .overlay {
  opacity: 1;
  visibility: visible;
}

.overlay .view-text {
  background: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
  transform: translateY(15px);
  opacity: 0;
  transition: all 0.3s ease;
}

.demo-thumb:hover .view-text {
  transform: translateY(0);
  opacity: 1;
}


/* style for demo details */
.demo-preview-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* image */
.demo-preview-img {
    width: 100%;
    display: block;
    transition: 0.4s ease;
}

/* hover blur + zoom */
.demo-preview-wrapper:hover .demo-preview-img {
    filter: blur(4px) brightness(60%);
    transform: scale(1.05);
}

/* overlay */
.demo-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    pointer-events: none;
}

.demo-preview-wrapper:hover .demo-preview-overlay {
    opacity: 1;
}

/* overlay content */
.overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(10px);
    opacity: 0;
    transition: 0.4s ease;
}

.demo-preview-wrapper:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

/* ⭐ Attached Button */
.demo-preview-btn {
    display: block;
    width: 100%;
    background: #198754;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 12px 12px; /* only bottom corners */
    transition: 0.3s ease;
}

.demo-preview-btn:hover {
    background: #157347;
}


/* style for ID card */
.image-hover-wrapper {
    position: relative;
    overflow: hidden;
}

.hover-switch-img {
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
    display: block;
    width: 100%;
}

/* Slight zoom on hover for premium feel */
.image-hover-wrapper:hover .hover-switch-img {
    transform: scale(1.03);
}

/* Title styling */
.card-title-attached {
    margin-top: 0.60rem;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* A subtle underline glow effect attached to image */
.card-title-attached::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: #0d6efd;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, width 0.3s ease-in-out;
}

.image-hover-wrapper:hover + .card-title-attached::after {
    opacity: 1;
    width: 60%;
}


/* start style for home page sms section */
/* Fancy header title */
.fancy-title {
  font-weight: 800;
  letter-spacing: -1px;
  color: #111;
}

/* Showcase Grid */
.sms-showcase {
  animation: fadeInUp 0.7s ease;
}

/* New Modern Card */
.sms-modern-card {
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: all 0.35s ease;
  border: 1px solid #efefef;
}

/* Card Hover Effect */
.sms-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 18px 40px -10px rgba(0,0,0,0.15);
}

/* Image Wrapper */
.sms-modern-img-wrapper {
  height: 260px;
  overflow: hidden;
}

/* Image */
.sms-modern-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sms-modern-card:hover .sms-modern-img {
  transform: scale(1.12);
}

/* Placeholder (when no thumbnail exists) */
.sms-modern-placeholder {
  height: 260px;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}

/* Sliding Content Panel */
.sms-modern-content {
  padding: 22px;
  position: relative;
}

/* Title */
.sms-modern-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #222;
}

/* Subtitle */
.sms-modern-subtext {
  font-size: 0.9rem;
  color: #777;
}

/* Button */
.sms-modern-btn {
  margin-top: 12px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: #198754;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sms-modern-btn:hover {
  background: #0f5b36;
  color: #fff;
}

/* Fade Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* SECTION TITLES */
.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
}

/* LEFT PREVIEW BOX */
.preview-box {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.main-preview-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.main-preview-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform .35s ease;
}

.main-preview-img:hover {
    transform: scale(1.03);
}

/* CONTENT SECTION */
.content-section {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.05);
}

.content-body {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
}

/* SIDEBAR BOXES */
.side-box {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 3px 18px rgba(0,0,0,0.04);
}

/* PRICE STYLING */
.new-price {
    letter-spacing: -1px;
}

.side-box ul li {
    color: #333;
    font-size: 0.93rem;
}

/* Subtle animations */
.side-box, .preview-box, .content-section {
    transition: all .25s ease;
}

.side-box:hover, .preview-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}






