/* Base styles and CSS Reset */
:root {
  /* Color Variables */
  --primary: #19166a;
  --primary-dark: #19166a;
  --secondary: #64748b;
  --accent: #f59e0b;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', var(--font-primary);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

body {
  background: #251969 !important;
  overflow-x: hidden;
}
html,body{
    overflow-x:hidden;
}

/* Accordion Arrow Color Override */
.accordion-button::after {
  filter: brightness(0) invert(1);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

/* Override Bootstrap text-primary with custom color */
.text-primary {
  color: #FFC107 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

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

.bg-light {
  background-color: var(--light);
}

.bg-dark {
  background-color: var(--dark);
}

.section-padding {
  padding: var(--spacing-xl) 0;
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.flex {
  display: flex;
  gap: var(--spacing-md);
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Dark theme button for strategy session */
.btn-primary-dark {
  background: #2a2558 !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-primary-dark:hover {
  background: #19166a !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(25, 22, 106, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Homepage Slider Backgrounds */
.slider-bg {
  height: 80vh;
  min-height: 400px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.carousel-caption {
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* USP Cards Improved Design */
.usp-card {
  border: 1.5px solid #f3f3f3;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.04);
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
}

.usp-card-dark {
  background: #2e159c !important;
}

/* Service Cards Dark Theme */
.service-card-dark {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
}

.usp-card:hover {
  box-shadow: 0 8px 32px rgba(234, 179, 8, 0.10), 0 1.5px 8px #ffe066;
  transform: translateY(-6px) scale(1.04);
  border-color: #ffe066;
}

.usp-icon-bg {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffe066 0%, #eab308 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.15);
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.usp-card:hover .usp-icon-bg {
  background: linear-gradient(135deg, #eab308 0%, #ffe066 100%);
}

.usp-icon {
  font-size: 2rem;
  transition: color 0.2s;
}

.usp-card:hover .usp-icon {
  color: #222;
}

.usp-card h4 {
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Unique USP Icon Backgrounds and Colors */
.usp-rocket {
  background: linear-gradient(135deg, #e0e7ff 0%, #19166a 100%) !important;
}

.usp-brush {
  background: linear-gradient(135deg, #fce7f3 0%, #db2777 100%) !important;
}

.usp-bulb {
  background: linear-gradient(135deg, #fef9c3 0%, #f59e0b 100%) !important;
}

.usp-headset {
  background: linear-gradient(135deg, #d1fae5 0%, #22c55e 100%) !important;
}

.usp-rocket .usp-icon {
  color: #19166a !important;
}

.usp-brush .usp-icon {
  color: #db2777 !important;
}

.usp-bulb .usp-icon {
  color: #f59e0b !important;
}

.usp-headset .usp-icon {
  color: #22c55e !important;
}

/* Modern Services Section Styles */
.services {
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 50px;
}

.services-pattern {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 120px;
  background: repeating-linear-gradient(135deg, #ffe066 0 2px, transparent 2px 32px);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.service-cards {
  position: relative;
  z-index: 1;
}

.service-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12), 0 1.5px 8px #ffe066;
  transform: translateY(-6px) scale(1.04);
}

.service-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.10);
  margin-bottom: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.service-card:hover .service-icon {
  box-shadow: 0 4px 16px rgba(234, 179, 8, 0.18);
}

@media (max-width: 991.98px) {
  .service-cards .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 700px) {

  .service-cards .col-6,
  .service-cards .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-card {
    margin-bottom: 1.5rem;
  }
}

/* Service Card V2 Styles */
.service-card-v2 {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  padding: 1.5rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 260px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card-v2:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.16), 0 1.5px 8px #ffe066;
  transform: translateY(-6px) scale(1.03);
}

.service-img-wrap {
  width: 100%;
  position: relative;
  border-radius: 1.2rem 1.2rem 0 0;
  overflow: hidden;
  margin-bottom: -2.2rem;
}

.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 1.2rem 1.2rem 0 0;
}

.service-icon-circle {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffe066 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.18);
  font-size: 2rem;
  color: #fff;
  border: 5px solid #fff;
  z-index: 2;
}

.service-card-body {
  margin-top: 2.5rem;
  text-align: center;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: #22223b;
}

.service-desc {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0;
}

.service-img-wrap-v3 {
  position: relative;
  overflow: visible;
}

.service-icon-circle-v3 {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  z-index: 2;
}

.service-card-v3 {
  overflow: visible;
  z-index: 1;
}

/* Aaradhya Style Service Card */
.service-card-aaradhya {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  margin: 1rem;
  min-width: 260px;
  max-width: 320px;
}

.service-card-aaradhya:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.16), 0 1.5px 8px #ffe066;
  transform: translateY(-6px) scale(1.03);
}

.service-icon-aaradhya {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffe066 0%, #f59e0b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.18);
}

.service-title-aaradhya {
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: #22223b;
  text-align: center;
}

.service-desc-aaradhya {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0;
  text-align: center;
}

/* Service Image Card Styles */
.service-imgcard {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: visible;
}

.service-imgcard:hover {
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.13), 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.03);
}

.service-imgcard-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
  margin-bottom: 0;
  display: block;
}

.service-imgcard-icon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  height: 0;
}

.service-imgcard-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ff9800 60%, #FFB400 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 0 4px 18px rgba(255, 152, 0, 0.18);
  border: 6px solid #fff;
  z-index: 3;
}

.service-imgcard-body {
  padding-top: 2.7rem;
  text-align: center;
}

.service-imgcard-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.7rem;
}

.service-imgcard-desc {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 0;
  text-align: center;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .service-imgcard {
    padding: 0 0.7rem 1.3rem 0.7rem;
  }

  .service-imgcard-img {
    height: 100px;
  }

  .service-imgcard-icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    top: -28px;
    border-width: 4px;
  }

  .service-imgcard-body {
    padding-top: 2.1rem;
  }
}

/* CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, #fffbe6 0%, #ffe066 100%);
  padding: 3.5rem 0 3rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/cta-bg.jpg') center center/cover no-repeat;
  z-index: 0;
  opacity: 0.32;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}

.cta-container,
.cta-title,
.cta-desc,
.cta-btn-main {
  position: relative;
  z-index: 2;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32), 0 1px 0 #ffb400;
}

.cta-desc {
  color: #fff !important;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32), 0 1px 0 #ffb400;
}

.cta-btn-main {
  display: inline-block;
  background: linear-gradient(90deg, #ffb400 0%, #ff9800 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 152, 0, 0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: none;
}

.cta-btn-main:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffb400 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.logo-slider {
  padding: 60px 0 60px 0;
}

.logo-slider .container {
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: logo-scroll 28s linear infinite;
  width: max-content;
}

.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin: 0 8px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: transform 0.2s;
}

.logo-card img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: filter 0.2s, transform 0.2s;
}

.logo-card:hover img {
  filter: grayscale(0) brightness(1.1);
  transform: scale(1.08);
}

.logo-card .title {
  font-size: 0.95rem;
  color: #19166a;
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .logo-track {
    gap: 28px;
    animation-duration: 18s;
  }

  .logo-card img {
    height: 44px;
  }
}

@media (max-width: 600px) {
  .logo-slider {
    padding: 36px 0 36px 0;
  }

  .logo-track {
    gap: 16px;
    animation-duration: 12s;
  }

  .logo-card img {
    height: 32px;
  }
}

.industry-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4rem;
  letter-spacing: 0.5px;
}

.testimonials-section {
  position: relative;
  min-height: 520px;
  z-index: 1;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background: url('../images/testimonial-bg.jpg') center center/cover no-repeat;
  z-index: 1;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.78);
  z-index: 2;
}

.testimonials-section .container {
  position: relative;
  z-index: 3;
}

.testimonials-label {
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFB400;
  text-transform: uppercase;
}

.testimonials-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.testimonials-title-underline {
  width: 60px;
  height: 4px;
  background: #FFB400;
  border-radius: 2px;
  margin-bottom: 0.7rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18), 0 2px 8px rgba(255, 180, 0, 0.07);
  padding: 2.6rem 1.7rem 2.3rem 1.7rem;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: visible;
  border: 1.5px solid #ffe7b3;
  transition: box-shadow 0.22s, transform 0.22s, border 0.18s;
}

.testimonial-card:hover {
  box-shadow: 0 32px 80px 0 rgba(255, 180, 0, 0.22), 0 16px 48px rgba(44, 62, 80, 0.18);
  border: 1.5px solid #ffe7b3;
  outline: 0.5rem solid #fffbe7;
  outline-offset: -1.2rem;
}

.testimonial-card-topline {
  display: none !important;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFB400;
  box-shadow: 0 4px 16px rgba(255, 180, 0, 0.13);
  margin-right: 0.7rem;
}

.testimonial-card .testimonial-quote-bg {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-size: 5.5rem;
  color: #FFB40022;
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 800;
  z-index: 1;
  pointer-events: none;
  content: "\201C";
  line-height: 1;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38px;
  border-radius: 0 0 2rem 2rem;
  background: linear-gradient(0deg, #fffbe7 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.testimonial-name {
  font-size: 1.13rem;
  font-weight: 700;
  color: #222;
}

.testimonial-role {
  font-size: 1.01rem;
  font-weight: 600;
  color: #FFB400;
}

.testimonial-text {
  color: #444;
  font-size: 1.07rem;
  margin-bottom: 0.9rem;
  min-height: 80px;
  z-index: 3;
  position: relative;
}

.testimonial-stars {
  font-size: 1.18rem;
  color: #FFB400;
  z-index: 3;
  position: relative;
}

@media (max-width: 991.98px) {
  .testimonial-card {
    padding: 1.3rem 0.7rem 1.3rem 0.7rem;
    min-height: 220px;
  }

  .testimonial-avatar {
    width: 44px;
    height: 44px;
    border-width: 3px;
  }

  .testimonial-card-topline {
    width: 40px;
    height: 4px;
  }

  .testimonial-card .testimonial-quote-bg {
    font-size: 3.2rem;
    bottom: 8px;
    right: 8px;
  }

  .testimonial-card::after {
    height: 22px;
  }
}

.testimonial-slider {
  padding-left: 10px;
  padding-right: 10px;
}

.testimonial-slider .testimonial-card {
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .testimonial-slider {
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-slider .testimonial-card {
    max-width: 98vw;
  }
}

/* Latest Resources (Blog) Section Styles */
.latest-resources-section {
  background: #f8fafc;
  padding: 4rem 0 3.5rem 0;
}

.blog-card {
  background: #fff;
  border-radius: 1.7rem;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
  border: 1.5px solid #f3f3f3;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 0.5rem;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.13), 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.03);
}

.blog-card-img-top {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-top-left-radius: 1.7rem;
  border-top-right-radius: 1.7rem;
  display: block;
}

.blog-card-meta {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 0.3rem;
}

.blog-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #22223b;
  margin-bottom: 0.4rem;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.9rem;
}

.blog-card-text {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.blog-card-link {
  color: #ff9800;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}

.blog-card-link:hover {
  color: #ffb400;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .blog-card-img-top {
    height: 140px;
  }

  .p-4 {
    padding: 1.2rem 0.7rem 0.7rem 0.7rem !important;
  }
}

.blog-readmore-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ffb400 0%, #ff9800 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.7rem 2.1rem;
  border-radius: 2rem;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(255, 152, 0, 0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  border: none;
  margin: 0 0.2rem;
}

.blog-readmore-btn:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffb400 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.p-4 {
  padding: 2rem 1.5rem 1.2rem 1.5rem !important;
}

.blog-card-adv:hover {
  box-shadow: 0 24px 64px rgba(255, 180, 0, 0.18), 0 8px 32px rgba(44, 62, 80, 0.18);
  /* border: 1.5px solid #ffb400; */
  transform: translateY(-8px) scale(1.035) rotate(-0.5deg);
}

/* FAQ + Book a Call Section Styles */
.faq-book-section {
  background: linear-gradient(135deg, #fffbe6 0%, #f8fafc 100%);
  padding: 4rem 0 3.5rem 0;
}

.connect-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff9800;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
}

.book-slot-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 0.9rem 1.1rem;
  font-size: 1.01rem;
  background: #f8fafc !important;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  margin-bottom: 0.2rem;
}

.book-slot-select:focus {
  border: 1.5px solid #ffb400;
  box-shadow: 0 2px 8px rgba(255, 180, 0, 0.10);
}

.faq-book-flex {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-col {
  background: transparent;
  border-radius: 1.5rem;
  box-shadow: none;
  padding: 2.5rem 2rem 2rem 2rem;
  flex: 1 1 340px;
  margin-bottom: 2rem;
}

.faq-title,
.book-title {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffb400 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 1.7rem;
  margin-top: 0.5rem;
  position: relative;
}

.faq-title::after,
.book-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffb400 0%, #ff9800 100%);
  border-radius: 2px;
  margin: 0.7rem auto 0 auto;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .book-title {
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }

  .book-title::after {
    width: 36px;
    height: 3px;
    margin-top: 0.4rem;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  overflow: hidden;
  transition: box-shadow 0.18s;
  border: 1.5px solid #e2e8f0;
  padding-top: 15px;
  padding-left: 10px;
}

.faq-question::after {
  transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
  content: '–';
  transform: rotate(180deg);
  color: #ff9800;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.2rem;
  color: #444;
  font-size: 1.01rem;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.25s, padding 0.2s;
}

.faq-item.open .faq-answer {
  padding: 1rem 1.2rem 1.2rem 1.2rem;
  max-height: 300px;
  opacity: 1;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.book-form input,
.book-form textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 0.9rem 1.1rem;
  font-size: 1.01rem;
  background: #f8fafc !important;
  color: #22223b;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  resize: none;
}

.book-form input:focus,
.book-form textarea:focus {
  border: 1.5px solid #ffb400;
  box-shadow: 0 2px 8px rgba(255, 180, 0, 0.10);
}

.book-btn {
  background: linear-gradient(90deg, #ffb400 0%, #ff9800 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  border: none;
  box-shadow: 0 2px 10px rgba(255, 152, 0, 0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-top: 0.5rem;
}

.book-btn:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffb400 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 991.98px) {
  .faq-book-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .faq-col,
  .book-col {
    max-width: 100%;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

.faq-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-particles::before,
.faq-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  background: #ffb400;
  animation: faq-particle-float 12s linear infinite;
}

.faq-particles::before {
  width: 80px;
  height: 80px;
  left: 8%;
  top: 18%;
  animation-delay: 0s;
}

.faq-particles::after {
  width: 48px;
  height: 48px;
  right: 12%;
  bottom: 14%;
  animation-delay: 4s;
}

.faq-particles .dot1,
.faq-particles .dot2,
.faq-particles .dot3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.13;
  background: #ff9800;
  animation: faq-particle-float 14s linear infinite;
}

.faq-particles .dot1 {
  width: 36px;
  height: 36px;
  left: 22%;
  top: 60%;
  animation-delay: 2s;
}

.faq-particles .dot2 {
  width: 24px;
  height: 24px;
  right: 18%;
  top: 38%;
  animation-delay: 6s;
}

.faq-particles .dot3 {
  width: 18px;
  height: 18px;
  left: 50%;
  bottom: 10%;
  animation-delay: 8s;
}

.faq-particles .dot4 {
  width: 22px;
  height: 22px;
  left: 70%;
  top: 22%;
  animation-delay: 3s;
}

.faq-particles .dot5 {
  width: 30px;
  height: 30px;
  right: 30%;
  top: 80%;
  animation-delay: 7s;
}

.faq-particles .dot6 {
  width: 16px;
  height: 16px;
  left: 12%;
  bottom: 18%;
  animation-delay: 5s;
}

.faq-particles .dot7 {
  width: 28px;
  height: 28px;
  right: 8%;
  top: 60%;
  animation-delay: 9s;
}

.faq-particles .dot8 {
  width: 20px;
  height: 20px;
  left: 60%;
  bottom: 22%;
  animation-delay: 11s;
}

@keyframes faq-particle-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.18;
  }

  50% {
    transform: translateY(-40px) scale(1.12);
    opacity: 0.28;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 0.18;
  }
}


/* Custom navbar blue styling */
.navbar-blue,
.navbar-blue.sticky,
.navbar-blue.scrolled {
  background: linear-gradient(135deg, #19166a 0%, #19166a 100%) !important;
  background-color: #19166a !important;
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.10);
  padding-top: 0.3rem !important;
}

/* Navbar white text styling */
.navbar-blue .nav-link-white {
  color: white !important;
}

.navbar-blue .nav-link-white:hover,
.navbar-blue .nav-link-white:focus {
  color: rgba(255, 255, 255, 0.8) !important;
}

.navbar.sticky,
.navbar.scrolled {
  box-shadow: 0 4px 18px rgba(44, 62, 80, 0.10);
  background: #fff;
  padding-top: 0.3rem !important;
  padding-bottom: 0.3rem !important;
  position: fixed;
}

/* Custom Animate.css duration for slider text */
.carousel-title.animate__animated,
.carousel-desc.animate__animated,
.carousel-caption .btn.animate__animated {
  --animate-duration: 2.5s;
}

/* Logo Slider Section Styles */
.logo-slider-section {
  position: relative;
  z-index: 1;
  padding: 50px 0 0 0;
}

.logo-slider-section .industry-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #222;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.logo-slider-section .industry-subtitle {
  color: #666;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.logo-slider-section .logo-slider {
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
  z-index: 2;
}

.logo-slider-section .logo-card {
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 8px;
  min-width: 220px;
  min-height: 180px;
  max-width: 280px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex !important;
  align-items: stretch;
  justify-content: stretch;
  transition: transform 0.22s;
  cursor: pointer;
}

.logo-slider-section .logo-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.logo-slider-section .logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
  transition: filter 0.2s, transform 0.22s;
}

.logo-slider-section .logo-card:hover img {
  filter: brightness(1.08) saturate(1.18);
  transform: scale(1.04);
}

.logo-slider-section .slick-arrow {
  display: none !important;
}

.logo-slider-section .slick-dots {
  margin-top: 2rem;
}

.logo-slider-section .slick-dots li button:before {
  color: #ffc107;
  font-size: 1rem;
  opacity: 0.7;
}

.logo-slider-section .slick-list {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 1400px) {
  .logo-slider-section .logo-card {
    min-width: 160px;
    min-height: 110px;
    padding: 1.2rem 1.2rem;
  }

  .logo-slider-section .logo-card img {
    max-width: 120px;
    max-height: 70px;
  }
}

@media (max-width: 576px) {
  .logo-slider-section {
    padding: 44px 0 44px 0;
  }

  .logo-slider-section .industry-title {
    font-size: 1.5rem;
  }

  .logo-slider-section .industry-subtitle {
    font-size: 1rem;
  }

  .logo-slider-section .logo-card {
    min-width: 100px;
    min-height: 60px;
    padding: 0.7rem 0.7rem;
  }

  .logo-slider-section .logo-card img {
    max-width: 70px;
    max-height: 36px;
  }

  .logo-slider-section .slick-prev,
  .logo-slider-section .slick-next {
    display: none !important;
  }
}

/* Amazon Account Management Hero Bar Styles */
.hero-bar {
  background: linear-gradient(90deg, #e0e7ff 0%, #f8fafc 100%);
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-bar .hero-title-gradient {
  background: linear-gradient(90deg, #19166a 30%, #19166a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0 2px 16px rgba(25, 22, 106, 0.08);
}

.hero-bar .hero-title-underline {
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #ebebeb 30%, #ffffff 100%);
  border-radius: 2px 8px 8px 2px;
  box-shadow: 0 2px 8px rgba(25, 22, 106, 0.10);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.hero-bar .hero-bar-content {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* How It Works Step Card Hover Effect */
.how-step-card {
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.18s, background 0.18s;
  cursor: pointer;
}

.how-step-card:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.13), 0 1.5px 8px #bae6fd;
  transform: translateY(-6px) scale(1.04);
  border-color: #bae6fd;
  background: linear-gradient(135deg, #f0f9ff 60%, #e0e7ff 100%);
}

.how-step-card:hover .how-step-icon {
  filter: brightness(1.08) saturate(1.18);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.13);
}

/* Multi-step Book a Call Form Styles */
.book-form-multistep {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.book-form-multistep input,
.book-form-multistep textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 0.9rem 1.1rem;
  font-size: 1.01rem;
  background: #f8fafc !important;
  color: #22223b;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  margin-bottom: 0.7rem;
}

.book-form-multistep input:focus,
.book-form-multistep textarea:focus {
  border: 1.5px solid #ffb400;
  box-shadow: 0 2px 8px rgba(255, 180, 0, 0.10);
}

.book-form-multistep label {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #22223b;
}

.book-form-multistep .book-step {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.book-form-multistep .d-none {
  display: none !important;
}

.book-form-multistep .calendar-slot-picker {
  min-height: 120px;
  background: #f8fafc;
  border: 1.5px dashed #e2e8f0;
  border-radius: 0.8rem;
  padding: 1.2rem 0.7rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-form-multistep .calendar-placeholder {
  color: #888;
  font-size: 1.08rem;
  text-align: center;
}

.book-form-multistep .book-submit-btn,
.book-form-multistep .book-prev-btn {
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  max-height: 40px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.book-form-multistep .book-next-btn:hover,
.book-form-multistep .book-prev-btn:hover {
  background: linear-gradient(90deg, #ff9800 0%, #ffb400 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 152, 0, 0.18);
  transform: translateY(-2px) scale(1.04);
}

.book-form-multistep .book-submit-btn {
  background: #22c55e;
  color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

.book-form-multistep .book-submit-btn:disabled {
  background: #b6e7c9;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .book-form-multistep {
    gap: 0.7rem;
  }

  .book-form-multistep .book-step {
    gap: 0.7rem;
  }
}

/* Error message styling for form fields */
.is-invalid {
  border: 1.5px solid #ef4444 !important;
  background: #fff0f0 !important;
}

.invalid-feedback {
  color: #ef4444;
  font-size: 0.97rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  display: none;
}

.is-invalid~.invalid-feedback {
  display: block;
}

/* Movie-style calendar slot picker */
.calendar-slot-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  align-items: center;
  background: #fffbe6;
  border: 2px solid #ffe066;
  border-radius: 1.2rem;
  padding: 1.1rem 0.5rem 0.5rem 0.5rem;
  margin-bottom: 1rem;
  margin-top: 0.7rem;
  box-shadow: 0 4px 24px rgba(255, 180, 0, 0.08);
}

.calendar-slot-btn {
  flex: 0 0 48%;
  max-width: 48%;
  min-width: 100px;
  padding: 0.55rem 0.2rem;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 0.8rem;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
  text-align: center;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  color: #22223b;
  cursor: pointer;
  transition: background 0.18s, border 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 1px 4px rgba(44, 62, 80, 0.06);
  letter-spacing: 0.01em;
  outline: none;
}

.calendar-slot-btn:hover:not(:disabled),
.calendar-slot-btn:focus:not(:disabled) {
  background: #f8fafc;
  border-color: #ffb400;
  color: #ff9800;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 3px 10px rgba(255, 180, 0, 0.10);
}

.calendar-slot-btn.selected,
.calendar-slot-btn:active {
  background: linear-gradient(90deg, #ffb400 0%, #ff9800 100%);
  color: #fff;
  border-color: #ffb400;
  box-shadow: 0 4px 16px rgba(255, 180, 0, 0.13);
  transform: scale(1.02);
}

.calendar-slot-btn:disabled {
  background: #f3f3f3;
  color: #aaa;
  border-color: #e2e8f0;
  cursor: not-allowed;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .calendar-slot-btn {
    font-size: 0.93rem;
    padding: 0.45rem 0.1rem;
    min-width: 0;
  }

  .calendar-slot-picker {
    padding: 0.7rem 0.1rem 0.1rem 0.1rem;
    gap: 0.3rem;
  }
}

.calendar-date-picker {
  max-width: 260px;
  margin: 0 auto 1rem auto;
  display: block;
  border: 2px solid #e2e8f0;
  border-radius: 1.2rem;
  padding: 0.7rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 600;
  background: #fff;
  color: #22223b;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: border 0.18s, box-shadow 0.18s;
}

.calendar-date-picker:focus {
  border: 2px solid #ffb400;
  box-shadow: 0 4px 16px rgba(255, 180, 0, 0.13);
}

.book-step-2 .form-label.fw-semibold {
  font-size: 1.13rem;
  color: #ff9800;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  display: block;
  letter-spacing: 0.01em;
}

.book-step-2 .calendar-slot-picker {
  background: #fffbe6;
  border: 2px solid #ffe066;
  border-radius: 1.2rem;
  padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(255, 180, 0, 0.07);
}

@media (max-width: 600px) {
  .calendar-date-picker {
    max-width: 100%;
    font-size: 1rem;
    padding: 0.6rem 0.7rem;
  }

  .book-step-2 .calendar-slot-picker {
    padding: 0.7rem 0.2rem 0.2rem 0.2rem;
  }
}

@media (max-width: 700px) {
  .book-col {
    max-width: 100%;
    min-width: 0;
  }
}

.book-header-bar {
  background: #19166a;
  border-top-left-radius: 1.3rem;
  border-top-right-radius: 1.3rem;
  padding: 10px;
  margin: -2.2rem -1.5rem 2rem -1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(25, 22, 106, 0.08);
}

.book-header-icon {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.book-header-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 0.1rem;
}

.book-header-subtitle {
  font-size: 1.01rem;
  color: #e6f0ff;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.book-title.d-none {
  display: none !important;
}

@media (max-width: 600px) {
  .book-header-bar {
    padding: 1rem 0.3rem 0.5rem 0.3rem;
    margin: -1.2rem -0.5rem 1.2rem -0.5rem;
  }

  .book-header-title {
    font-size: 1.05rem;
  }

  .book-header-icon {
    font-size: 1.2rem;
  }
}

/* Soft background for the section */
.bg-soft {
  background: linear-gradient(135deg, #fffbe6 0%, #f8fafc 100%) !important;
}

/* Card row for FAQ + Book a Call */
.faq-book-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

/* Card style for both columns */
.card-style {
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  min-width: 0;
}

/* Modern Pricing Card Styles */
.pricing-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(127, 83, 255, 0.10), 0 1.5px 8px #e0e7ff;
  border: 1.5px solid #ede9fe;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(127, 83, 255, 0.18), 0 2px 12px #e0e7ff;
  border-color: #7f53ff;
  transform: translateY(-8px) scale(1.025);
  z-index: 2;
}

.pricing-card .badge {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 1.2rem;
  padding: 0.5rem 1.2rem;
  margin-bottom: 0.5rem;
}

.pricing-card .bg-gradient-primary {
  background: linear-gradient(90deg, #9d8cff, #7f53ff);
  color: #fff;
}

.pricing-card .bg-success-soft {
  background: linear-gradient(90deg, #198754, #198754);
  color: #fff;
}

.pricing-card .bg-primary-soft {
  background: linear-gradient(90deg, #193ebd, #074778);
  color: #fff;
}

.pricing-card .bg-light {
  background: #f8fafc;
  color: #64748b;
}

.pricing-card .fw-bold {
  font-weight: 800;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.pricing-card ul {
  margin: 1.2rem 0 0.5rem 0;
  padding: 0;
  list-style: none;
}

.pricing-card ul li {
  display: block;
  gap: 0;
  align-items: flex-start;
  font-size: inherit;
  color: inherit;
  margin-bottom: 1rem;
  padding: 0;
}

.pricing-card .fs-4 {
  font-size: 1.5rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pricing-card .badge.bg-light {
  font-size: 0.98rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.4rem 1.1rem;
}

.pricing-card .text-secondary {
  color: #64748b !important;
}

.pricing-card .text-danger {
  color: #ef4444 !important;
}

.pricing-card .text-warning {
  color: #f59e0b !important;
}

.pricing-card .text-info {
  color: #19166a !important;
}

.pricing-card .fw-normal {
  font-weight: 400 !important;
}

.pricing-card .mt-auto {
  margin-top: auto !important;
}

/* Highlight the recommended (Growth) plan */
.pricing-card.border-2.border-primary {
  border: 2.5px solid #7f53ff !important;
  box-shadow: 0 8px 32px rgba(127, 83, 255, 0.18), 0 2px 12px #e0e7ff;
  z-index: 3;
  transform: scale(1.04);
}

.pricing-accent-bar {
  height: 8px;
  width: 100%;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  margin-bottom: 0;
}

.feature-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #ede9fe 0%, #fff 100%);
  opacity: 0.5;
  margin: 0.2rem 0 0.2rem 0;
}

.plan-summary-row {
  margin-bottom: 1.5rem;
}

.plan-summary-label {
  font-size: 1.08rem;
  color: #7f53ff;
  background: #f8f6ff;
  border-radius: 1.2rem;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.2rem;
}

/* Compact FAQ accordion button */

.card-faq .faq-question::after {
  font-size: 1.1rem;
  margin-left: 0.7rem;
}

/* FAQ column overrides */
.faq-col.card-style {
  background: #fff;
  border: none;
  box-shadow: 0 8px 32px rgba(255, 180, 0, 0.08), 0 2px 8px rgba(44, 62, 80, 0.07);
}

/* Book a Call column overrides */
.book-col.card-style {
  background: #fffdfa;
  border: none;
}

/* FAQ item card style */
.card-faq {
  background: #f9fafe;
}

.card-faq .faq-question {
  color: #22223b;
  background: none;
  border: none;
  outline: none;
  border-radius: 1rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}

.card-faq .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: #888;
  float: right;
  margin-right: 1rem;
}

.card-faq.open .faq-question::after {
  content: '\2013';
  color: #ff9800;
}

.card-faq .faq-answer {
  font-size: 1.01rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 0 1rem 1rem;
  padding: 0 1.2rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4, 0, .2, 1), opacity 0.25s, padding 0.2s;
}

.card-faq.open .faq-answer {
  padding: 1rem 1.2rem 1.2rem 1.2rem;
  max-height: 300px;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .faq-book-card-row {
    flex-direction: column;
    gap: 2rem;
  }

  .card-style {
    max-width: 100%;
    padding: 1.5rem 1rem 1.2rem 1rem;
  }
}

.proceed-btn {
  width: max-content;
  margin: 0 auto;
}

/* --- Pricing Card Feature List: Clean, Unified Styles --- */
.pricing-features {
  margin: 1.2rem 0 0.5rem 0;
  padding: 0;
  list-style: none;
}

.feature-heading {
  font-weight: 700;
  font-size: 1.08rem;
  color: #22223b;
  margin-bottom: 0;
  display: inline-block;
}

.feature-desc {
  font-weight: 400;
  font-size: 1.04rem;
  color: #444;
  margin-left: 2.1rem;
  margin-top: 0.1rem;
  line-height: 1.5;
  display: block;
}

.recommended-ribbon-diagonal {
  position: absolute;
  top: 22px;
  right: -48px;
  width: 180px;
  background: linear-gradient(90deg, #9d8cff, #7f53ff);
  color: #fff;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.5rem 0;
  transform: rotate(32deg);
  box-shadow: 0 2px 8px rgba(127, 83, 255, 0.13);
  z-index: 20;
  letter-spacing: 0.01em;
}

.pricing-card.recommended-pop {
  box-shadow: 0 16px 48px rgba(127, 83, 255, 0.22), 0 2px 12px #e0e7ff;
  border: 2.5px solid #7f53ff;
  transform: scale(1.07);
  z-index: 10;
}

.recommended-banner-vertical {
  position: absolute;
  left: -40px;
  top: 40px;
  width: 140px;
  background: linear-gradient(135deg, #7f53ff 60%, #9d8cff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 0;
  text-align: center;
  transform: rotate(-90deg);
  border-radius: 1.2rem 1.2rem 0 0;
  box-shadow: 0 2px 8px rgba(127, 83, 255, 0.13);
  z-index: 20;
  letter-spacing: 0.01em;
}

/* --- About Us Modern Card Sections --- */
.about-us-sections {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl) 0;
  margin-bottom: var(--spacing-xl);
}

.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 420px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.13), 0 6px 24px rgba(0, 0, 0, 0.10);
  transform: translateY(-4px) scale(1.03);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e0e7ff 0%, #19166a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #19166a;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.10);
}

.who-we-are-card .about-card-icon {
  background: linear-gradient(135deg, #fce7f3 0%, #db2777 100%);
  color: #db2777;
}

.why-choose-us-card .about-card-icon {
  background: linear-gradient(135deg, #fffbe6 0%, #ffe066 100%);
  color: #f59e0b;
}

.specialize-card .about-card-icon {
  background: linear-gradient(135deg, #e0e7ff 0%, #19166a 100%);
  color: #19166a;
}

.about-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #22223b;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}

.about-card-quote {
  background: #f8f9fa;
  border-left: 4px solid #ffe066;
  padding: 0.7rem 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  color: #444;
}

.about-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.about-card-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.01rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.about-card-list li i {
  color: #19166a;
  font-size: 1.1rem;
}

.about-specialize-badges .badge {
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: 1.2rem;
  padding: 0.5rem 1.1rem;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.07);
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}

.hero-subtitle {
  color: #000;
}

.about-specialize-badges .badge:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.13);
}

@media (max-width: 991.98px) {
  .about-card {
    min-height: 340px;
    padding: 1.3rem 0.7rem 1.2rem 0.7rem;
  }

  .about-card-title {
    font-size: 1.1rem;
  }

  .about-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}

@media (max-width: 700px) {
  .about-us-sections {
    padding: var(--spacing-lg) 0;
  }

  .about-card {
    min-height: 0;
  }
}

/* about-us.css */
.about-us .section-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.about-us .custom-list {
  padding-left: 1.2rem;
  list-style: none;
}

.about-us .custom-list li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #0d6efd;
}

.about-us blockquote {
  background-color: #f8f9fa;
  padding: 1rem;
  border-left: 5px solid #0d6efd;
  font-style: italic;
}

.about-us .badge {
  font-size: 1rem;
  padding: 0.6em 1em;
  display: inline-block;
}

/* --- About Us Distinct Sections --- */
.about-who-we-are-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 70px;
}

.about-who-we-are-section .about-section-icon {
  font-size: 2.7rem;
  color: #19166a;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(25, 22, 106, 0.10);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-who-we-are-section .about-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #22223b;
}

.about-why-choose-section {
  background: #f5f5f5;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about-why-choose-section .about-section-icon {
  font-size: 2.7rem;
  color: #f59e0b;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.10);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-why-choose-section .about-section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #b45309;
}

.about-section-quote {
  background: #fffbe6;
  border-left: 4px solid #ffe066;
  padding: 0.7rem 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  color: #b45309;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.07);
}

.about-section-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.about-section-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.07rem;
  color: #b45309;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about-section-list li i {
  color: #f59e0b;
  font-size: 1.2rem;
}

.about-specialize-section {
  background: linear-gradient(135deg, #eeeeee 0%, #f8fafc 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.text-justify {
  text-align: justify;
}

.about-specialize-section .text-pink {
  color: #db2777;
}

.about-specialize-section .about-section-img {
  border-radius: 1rem;
  object-fit: cover;
}

.about-specialize-section .badge {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-specialize-section .badge:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* About Why Choose Section Particles Background */
.about-why-choose-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #eeeeee 0%, #ffffff 100%);
}

/* --- About Us Unique Approach (USP) Section --- */
.about-usp-section {
  background: #18181d !important;
  padding: 90px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.usp-card-row {
  margin-top: 5rem;
}

.about-usp-section .usp-card {
  position: relative;
  padding: 0.5rem;
  overflow: visible;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.22), 0 1.5px 8px #fff, 0 0 0 1.5px rgba(255, 255, 255, 0.18) inset;
  color: #fff;
  transition: box-shadow 0.18s, transform 0.18s;
}

.about-usp-section .usp-card:hover {
  box-shadow: 0 16px 48px 0 rgba(44, 62, 80, 0.28), 0 4px 16px rgba(127, 83, 255, 0.18), 0 0 0 2px rgba(255, 255, 255, 0.22) inset, 0 0 32px 8px rgba(255, 255, 255, 0.18) inset;
  transform: translateY(-6px) scale(1.045);
}

/* Icon Container */
.about-usp-section .usp-icon-bg {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff 60%, #f3f4f6 100%) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(127, 83, 255, 0.13), 0 1.5px 8px #fff, 0 0 32px 8px rgba(255, 255, 255, 0.18), 0 0 0 8px rgba(255, 255, 255, 0.10) inset;
  border: 2.5px solid #e0e7ff;
  z-index: 2;
  animation: usp-glow 2.8s ease-in-out infinite alternate;
  transition: box-shadow 0.18s, border 0.18s;
}

.about-usp-section .usp-card:hover .usp-icon-bg {
  box-shadow: 0 4px 32px rgba(127, 83, 255, 0.18), 0 3px 16px #fff, 0 0 48px 16px rgba(255, 255, 255, 0.22), 0 0 0 12px rgba(255, 255, 255, 0.13) inset;
  border-color: #fff;
}

/* Icon Styling */
.about-usp-section .usp-icon {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.5rem;
  color: #7f53ff;
  text-shadow: 0 2px 12px rgba(127, 83, 255, 0.33), 0 0 8px #fff;
  z-index: 3;
  transition: color 0.18s, text-shadow 0.18s;
}

/* Color Themes */
.about-usp-section .usp-blue .usp-icon {
  color: #0ea5e9;
  text-shadow: 0 0 16px #0ea5e9cc, 0 2px 12px #fff;
}

.about-usp-section .usp-green .usp-icon {
  color: #22d3ee;
  text-shadow: 0 0 16px #22d3eecc, 0 2px 12px #fff;
}

.about-usp-section .usp-yellow .usp-icon {
  color: #f59e0b;
  text-shadow: 0 0 16px #f59e0bcc, 0 2px 12px #fff;
}

.about-usp-section .usp-orange .usp-icon {
  color: #fbbf24;
  text-shadow: 0 0 16px #fbbf24cc, 0 2px 12px #fff;
}

.about-usp-section .usp-purple .usp-icon {
  color: #a78bfa;
  text-shadow: 0 0 16px #a78bface, 0 2px 12px #fff;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-usp-section {
    padding: 2.5rem 0.5rem !important;
  }

  .about-usp-section .usp-card {
    padding-top: 2.5rem !important;
    min-height: 260px;
  }

  .about-usp-section .usp-icon-bg {
    width: 54px;
    height: 54px;
    top: -27px;
  }

  .about-usp-section .usp-icon {
    font-size: 2rem;
  }
}

@media (max-width: 700px) {
  .about-usp-section {
    padding: 1.2rem 0.2rem !important;
  }

  .about-usp-section .usp-card {
    padding-top: 2rem !important;
    min-height: 180px;
  }

  .about-usp-section .usp-icon-bg {
    width: 40px;
    height: 40px;
    top: -20px;
  }

  .about-usp-section .usp-icon {
    font-size: 1.6rem;
  }
}

@keyframes usp-glow {
  0% {
    box-shadow: 0 2px 16px rgba(127, 83, 255, 0.13), 0 1.5px 8px #fff, 0 0 32px 8px rgba(255, 255, 255, 0.18), 0 0 0 8px rgba(255, 255, 255, 0.10) inset;
  }

  100% {
    box-shadow: 0 4px 32px rgba(127, 83, 255, 0.18), 0 3px 16px #fff, 0 0 48px 16px rgba(255, 255, 255, 0.22), 0 0 0 12px rgba(255, 255, 255, 0.13) inset;
  }
}

.usp-section-title,
.usp-section-desc {
  color: #fff;
}

.usp-section-desc {
  padding-top: 1rem;
}


/* Overlay Gradient for USP Section */
.about-usp-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgb(24 24 29 / 68%) 70%, rgb(8 8 9) 100%);
  opacity: 0.92;
}

h4.usp-list-title {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* 5-card responsive grid */
.usp-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 6rem;
}

@media (max-width: 1199.98px) {
  .usp-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .usp-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .usp-grid-container {
    grid-template-columns: 1fr;
  }
}


.mission-vision-section h4 {
  font-size: 1.75rem;
}

.mission-vision-section img {
  object-fit: cover;
  max-width: 400px;
}

.txtwrapper p {
  text-align: justify;
  line-height: 2rem;
}

.who-we-are-para {
  line-height: 2rem;
}

.img-height {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

/* Reduce spacing between content and images */

.padding-right {
  padding-right: 30px;
}

.txtwrapper1 {
  padding-right: 30px;
  text-align: justify;
}

.txtwrapper2 {
  text-align: justify;
}

/* Services Dropdown Styling */
.services-dropdown {
  background: linear-gradient(135deg, #19166a 0%, #2d1b69 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 0.5rem 0 !important;
  margin-top: 0rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
  min-width: 280px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.services-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-left: 3px solid transparent !important;
}

.services-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-left-color: #f59e0b !important;
  padding-left: 1.75rem !important;
  transform: translateX(2px);
}

.services-dropdown .dropdown-item:active {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Remove default Bootstrap dropdown arrow */
.nav-link.dropdown-toggle::after {
  display: none !important;
}

/* Show dropdown on hover - improved */
.nav-item.dropdown:hover>.dropdown-menu,
.dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  display: block !important;
}

/* Smooth transition for dropdown parent */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
}

/* Industry Partners Logo Slider */
.logo-card {
  padding: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card-inner {
  width: 100%;
  height: 120px !important;
  /* Strict fixed height */
  min-height: 120px !important;
  max-height: 120px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  /* Increased padding to shrink logos slightly */
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  /* Prevent any overflow */
}

.logo-card-inner:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.logo-slider-section .logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  transition: transform 0.3s ease;
}

.logo-card-inner:hover img {
  transform: scale(1.05);
}

    .visitor-glass-card {
        backdrop-filter: blur(8px);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        padding: 18px 22px;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
        width: auto;
    }

    .visitor-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffd700;
        font-size: 22px;
    }

    .visitor-info {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .visitor-title {
        font-size: 15px;
        font-weight: 600;
        opacity: 0.9;
    }

    .visitor-count {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: center;
    }
    
/* Chevron icon styling */

.chev {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg); /* DOWN arrow */
  margin-left: 5px;
  transition: transform .3s ease;
}

/* dropdown open = rotate UP */
.dropdown.show .chev {
  transform: rotate(-135deg);
}
    
/* Hide Top Bar in Mobile/Tablet */
@media(max-width:992px){ .header-top-bar{display:none!important;} }

/* Offcanvas Styling */
.offcanvas{
  background:#352fd7 !important;
  color:#fff;
}
.nav-link{font-size:17px;}

/* Social Buttons */
.offcanvas-social{
  width:38px;height:38px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.2);color:#fff;border-radius:50%;transition:.3s;
      text-decoration: none;
}
.offcanvas-social:hover{background:#fff;color:#352fd7;transform:scale(1.15);}
  
 .offcanvas.show:not(.hiding), .offcanvas.showing {
    z-index: 9999;
}  

/* Tablet */
@media (max-width: 991.98px) {
  #mobServices li{
    margin-bottom:10px;
}

#mobServices li a{
    display:flex;
    align-items:center;
    gap:10px;
    background:#ffffff10;
    padding:14px 16px;
    border-radius:10px;
    font-size:15.8px;
    font-weight:500;
    color:#fff!important;
    border:1px solid rgba(255,255,255,0.18);
}

#mobServices li a::before{
    content:"\f054";
    font-family:"FontAwesome";
    font-size:13px;
    opacity:.8;
}

#mobServices,
#mobServices li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

}

/* Mobile */
@media (max-width: 575.98px) {
.navbar-toggler {
    background-color: transparent !important;
}
.resource-container {
    padding: 0 !important;
}
.resource-description {
text-align: justify;
}
.resource-content {
padding: 0px 15px !important;
}
.slider-bg {
    height: 50vh;
    min-height: 400px;
}
.carousel-caption {
    position: absolute;
    right: 0;
    bottom:0;
    left: 0;
    padding: 2.25rem;
    color: #fff;
    text-align: center;
    width: 100%;
}
.carousel-control-next, .carousel-control-prev {
    display: none !important;
}
.services-page .hero-title-services {
    font-size: 2rem !important;
    line-height: 3rem !important;
}
.services-page .stacked-card .card-title {
    font-size: 1.5rem !important;
}
.services-page .card-description{
    text-align:justify!important;
}
.marketplaces-section .section-title{
   font-size: 2rem !important;   
}
}