@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #0F172A;
  --secondary-color: #1E293B;
  --accent-color: #3B82F6;
  --accent-hover: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.5);
  --text-main: #F8FAFC;
  --text-muted: #768395;
  --glass-bg: rgba(30, 41, 59, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --success-color: #10B981;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Custom Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Effects */
.bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 10s infinite ease-in-out alternate;
}

.glow-orb.primary {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(15, 23, 42, 0) 70%);
  top: -100px;
  right: -100px;
}

.glow-orb.secondary {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

.grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) scale(2);
  transform-origin: top center;
  opacity: 0.3;
}

@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }

  100% {
    transform: translateY(-30px) scale(1.05);
  }
}

.secGap {
  padding: 60px 0;
}

.secHeading .sec_title {
  font-size: 46px;
  text-transform: capitalize;
  color: var(--primary-color);
}

.secHeading .sec_title span {
  color: #7c3aed;
}

.secHeading .secText {
  font-size: 15px;
  color: var(--text-muted);
}

/*************************** Header ***************************/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background-color: var(--primary-color);
  /* backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); */
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-item-link {
  color: var(--text-muted);
  transition: color 0.2s ease;
  text-transform: capitalize;
}

.nav-item-link:hover {
  color: #fff;
}

/* Buttons */
.btn-custom-ghost {
  color: var(--text-main);
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-custom-ghost:hover {
  color: var(--accent-color);
}

.btn-custom-primary {
  background: var(--accent-color);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 14px 0 var(--accent-glow);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-custom-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 var(--accent-glow);
  color: #fff;
}

.btn-custom-secondary {
  background: var(--glass-bg);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-custom-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/******************************* Hero Section ****************************/

.hero {
  background-color: var(--primary-color);
}

.status-badge {
  background: #0d6efd1a;
  border: 1px solid #0d6efd;
  color: #0d6efd;
  border-radius: 50rem;
  margin-bottom: 1rem;
  padding: 0.25rem 1rem;
  gap: 01rem;
  display: inline-flex;
  align-items: center;

}


.pulse {
  /* width: 8px;
  height: 8px; */
  background: #0d6efd;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #0d6dfdc9;
  animation: pulsing 2s infinite;
}

@keyframes pulsing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #0d6dfdb4;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.dashboard-wrapper {
  /* background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1); */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 24px;
}

.dashboard-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.floating-card {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 6s infinite ease-in-out alternate;
}

.card-1 {
  top: -20px;
  right: -40px;
  animation-delay: -2s;
}

.card-2 {
  bottom: 40px;
  left: -50px;
  animation-delay: -4s;
}

.card-icon {
  width: 40px;
  height: 40px;
}

.icon-green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--success-color);
}

.icon-blue {
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-color);
}

/**************************** Feature Snapshot / Trusted By Section ****************************/

.feature-s.nav-actions .btn {
  white-space: nowrap;
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
  background-color: #0b1120 !important;
}

.mobile-offcanvas .btn-close-white {
  opacity: 0.8;
}

.mobile-offcanvas .btn-close-white:hover {
  opacity: 1;
}

.feature-snapshot h4 {
  font-size: 18px;
}

.blob-icon {
  width: 90px;
  height: 90px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blob-morph 6s ease-in-out infinite alternate;
  background: linear-gradient(135deg, #7C3AED 0%, #3B82F6 100%);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.blob-icon i {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

@keyframes blob-morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
}

.transition {
  transition: all 0.3s ease;
}

/***************************** About Section *****************************/
.about-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.about-content p {
  color: #94a3b8;
}

.collage-grid {
  padding-bottom: 100%;
}

.collage-img {
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease;
}

.collage-img:hover {
  transform: translateY(-10px);
}

.img-1 {
  width: 55%;
  height: 55%;
  top: 0;
  left: 0;
  z-index: 2;
}

.img-2 {
  width: 46%;
  height: 60%;
  right: 0;
  z-index: 1;
}

.img-3 {
  width: 50%;
  height: 100%;
  z-index: 3;
}

.FloatingGlassCardsDiv {
  padding: 16px;
  /* border: 1px solid white; */
  background: #5f3c9b;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  border-radius: 16px;
  /* z-index: 2; */
}

.glass-tag {
  background: rgba(15, 23, 42, 0.466);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgb(255 255 255 / 26%) !important;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  justify-content: center;
}

.glass-tag:not(:last-child) {
  margin-bottom: 5px;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

.tag-uptime {
  /* top: -15px;
  left: 20%; */
  animation: float 5s infinite alternate ease-in-out;
}

.tag-monitoring {
  /* top: 40%;
  right: -20px; */
  animation: float 6s infinite alternate ease-in-out;
}

.tag-ssl {
  /* bottom: 20%;
  left: -10px; */
  animation: float 4s infinite alternate ease-in-out;
}

.tag-response {
  /* bottom: -15px;
  right: 25%; */
  animation: float 7s infinite alternate ease-in-out;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.WhoWEUL {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.WhoWEUL li div h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.WhoWEUL li div p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.WhoWEUL li .feature-icon {
  width: 36px;
  height: 36px;
  background: #3b83f613;
  border: 1px solid #3b82f633;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
}

.WhoWEUL li .feature-icon svg {
  stroke: var(--accent-color);
  height: 16px;
  width: 16px;
}

/************************ Services Section ************************/
.services-section {
  background-color: var(--primary-color);
}

.decor-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.decor-dot.dot-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: -100px;
}

.decor-dot.dot-2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  right: -50px;
  background: var(--success-color);
}

.decor-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.service-card {
  background: rgba(30, 41, 59, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.service-card p {
  font-size: 15px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.1);
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: var(--accent-color);
  color: #fff !important;
  transform: scale(1.1) rotate(5deg);
}

.service-arrow {
  transition: all 0.3s ease;
}

.service-card:hover .service-arrow {
  color: var(--accent-color) !important;
  transform: translateX(10px);
}

.service-card.featured {
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
  display: none;
}

.service-card:hover .service-card-icon {
  background: #fff !important;
  color: var(--accent-color) !important;
}

.service-card:hover .service-arrow {
  color: #fff !important;
}

/****************************8 Features Section ***************************8*/
/* .features-section {
  background: var(--primary-color);
} */

.dashboard-preview-wrapper img {
  height: 380px;
  object-fit: cover;
  width: 100%;
}

.dashboard-glow {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.dashboard-img-hover {
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dashboard-preview-wrapper:hover .dashboard-img-hover {
  transform: scale(1.02) translateY(-10px);
}

.feature-block {
  background: #1e293b;
  border-color: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-block:hover {

  transform: translateX(10px);
}

.glow-check {
  width: 32px;
  height: 32px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-color);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
}

.glow-check i {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.feature-block:hover .glow-check {
  background: var(--success-color);
  color: #fff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
  transform: scale(1.1);
}

/*************************** Stats Section ***************************/
.stats-section {
  border-top: 1px solid #0f172a24;
  border-bottom: 1px solid #0f172a24;
}

.stat-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  stroke: #7c3aed;
}

/***************************** Why Choose Us Section *****************************/

.why-card {
  background: linear-gradient(145deg, rgb(33 47 71) 0%, rgb(30 41 59 / 64%) 100%);
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-card .icon-box {
  width: 48px;
  height: 48px;
  transition: all 0.3s ease;
}

.why-card:hover .icon-box {
  transform: scale(1.1);
}

/* Pricing Section */
.pricing-section {
  background: var(--primary-color);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--accent-color) 0%, #8B5CF6 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.hover-shadow-glow {
  transition: all 0.3s ease;
}

.hover-shadow-glow:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .transform-scale-md {
    transform: scale(1.05);
    z-index: 2;
  }

  .transform-scale-md:hover {
    transform: scale(1.05) translateY(-8px);
  }
}

/*********************** CTA Section ***********************/


.cta-box {
  background-color: var(--primary-color);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  background-size: 30px 30px, 30px 30px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-glow {
  background: radial-gradient(circle, #3b82f62b 0%, #3b82f66e 70%);
  filter: blur(80px);
  z-index: 0;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-color);
  color: #fff;
}

/* Footer Section */
.footer {
  background: #0b1120;
}

.footer-link:hover {
  color: var(--accent-color) !important;
  transform: translateX(5px);
}

.hover-text-white:hover {
  color: #fff !important;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-3px);
}

.social-icon i {
  width: 18px;
  height: 18px;
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  padding: 140px 0 80px;
  background-image: url('../images/breadCrumbImage.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs-overlay {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(4px);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent-color) !important;
}

/* Get In Touch Section (Light Theme) */
.get-in-touch-section {
  background-color: #f8fafc;
}

.get-in-touch-section .text-dark {
  color: #0f172a !important;
}

.get-in-touch-section .text-secondary {
  color: #475569 !important;
}

.contact-glow-left {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
  top: -50px;
  left: -200px;
  filter: blur(80px);
  z-index: 0;
}

.contact-glow-right {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, rgba(251, 146, 60, 0.15) 50%, transparent 70%);
  bottom: 0;
  right: -100px;
  filter: blur(80px);
  z-index: 0;
}

.contact-dot-pattern {
  width: 250px;
  height: 150px;
  background-image: radial-gradient(#94a3b8 2px, transparent 2px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.contact-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.contact-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0f172a;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-social-icon:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.contact-social-icon i {
  width: 18px;
  height: 18px;
}

/* Checkout Section */
.checkout-section {
  background-color: #f8fafc;
}

.checkout-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.checkout-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.checkout-section .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.checkout-section .form-control,
.checkout-section .form-select {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 0.95rem;
  color: #334155;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.checkout-section .form-control:focus,
.checkout-section .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.checkout-section .form-control::placeholder {
  color: #94a3b8;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 8px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  background: #ffffff;
}

.payment-icon.visa {
  color: #1a1f71;
  font-style: italic;
}

.payment-icon.discover {
  color: #f9a021;
}

.payment-icon.mc {
  padding: 0 4px;
}

.mc-red {
  width: 14px;
  height: 14px;
  background: #eb001b;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.mc-orange {
  width: 14px;
  height: 14px;
  background: #f79e1b;
  border-radius: 50%;
  display: inline-block;
  margin-left: -6px;
  position: relative;
  z-index: 1;
}

.order-summary-card {
  background: #fdfdfd;
}

/* Thank You Section */
.thank-you-section {
  background-color: #f8fafc;
}

.thank-you-card {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.success-icon-wrap i {
  width: 32px;
  height: 32px;
  stroke-width: 3;
}

.order-details-box {
  background-color: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.order-details-box .border-bottom {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

/* Custom Staggering Logic for Bootstrap Grid Columns */
@media (min-width: 992px) {

  .custom-staggered-grid>div:nth-child(1),
  .custom-staggered-grid>div:nth-child(4) {
    transform: translateY(40px);
  }

  .custom-staggered-grid>div:nth-child(3),
  .custom-staggered-grid>div:nth-child(5) {
    transform: translateY(80px);
  }
}

#my-widget-popup {
    top: auto !important;
    bottom: 20px !important;
}

#widget-content {
    bottom: 0px !important;
    top: auto !important;
}