/* ==========================================================================
   Techlion SL — Modern Visual Refresh (v2: bold, colorful, world-class SaaS)
   Loaded LAST so it overrides Bootstrap + vendor styles.
   Palette: violet #7c3aed → indigo #4f46e5 → blue #2563eb → cyan #22d3ee
   Fonts:   Poppins (headings) + Inter (body)
   ========================================================================== */

:root {
  --violet:    #7c3aed;
  --indigo:    #4f46e5;
  --blue:      #2563eb;
  --cyan:      #22d3ee;
  --pink:      #ec4899;
  --ink:       #0f172a;
  --navy:      #111a35;
  --muted:     #5a6b85;
  --bg-light:  #f6f8ff;
  --bg-soft:   #eef1fb;
  --white:     #ffffff;
  --border:    #e7ecf6;
  --shadow-sm: 0 4px 16px rgba(36, 41, 99, .07);
  --shadow-md: 0 16px 40px rgba(36, 41, 99, .12);
  --shadow-lg: 0 30px 70px rgba(36, 41, 99, .20);
  --radius:    18px;
  --radius-sm: 12px;
  --grad:      linear-gradient(135deg, #7c3aed 0%, #4f46e5 45%, #22d3ee 100%);
  --grad-soft: linear-gradient(135deg, #8b5cf6 0%, #2563eb 60%, #22d3ee 100%);
  --grad-pink: linear-gradient(135deg, #ec4899 0%, #8b5cf6 55%, #22d3ee 100%);
}

/* ---------- Base ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .1px;
}

h1, h2, h3, h4, h5, h6,
.section-title, .slide-title {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.4px;
}

p { color: var(--muted); }

a { transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease; }

.section-padding { padding: 110px 0; }

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

/* ---------- Section titles ---------- */
.section-title {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  margin: 0 auto 18px;
  padding-bottom: 24px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 76px;
  height: 4px;
  transform: translateX(-50%);
  background: var(--grad);
  border-radius: 4px;
}
.lead-sub {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn-common,
.btn-form-submit {
  background: var(--grad) !important;
  background-size: 200% 200% !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 13px 36px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  box-shadow: 0 10px 26px rgba(79, 70, 229, .35);
  transition: transform .25s ease, box-shadow .25s ease, background-position .5s ease;
}
.btn-common:hover,
.btn-form-submit:hover {
  transform: translateY(-3px);
  background-position: right center !important;
  box-shadow: 0 16px 34px rgba(124, 58, 237, .45);
  color: #fff !important;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar.scrolling-navbar,
.navbar.indigo {
  background: rgba(255, 255, 255, .9) !important;
  backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 4px 24px rgba(36, 41, 99, .08);
  padding: 14px 0;
  transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
}
.navbar.scrolling-navbar.top-nav-collapse { padding: 8px 0; box-shadow: var(--shadow-md); }
.navbar-brand img { max-height: 46px; width: auto; }

.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin: 0 3px;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
  border-radius: 2px;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link { color: var(--indigo) !important; }

.navbar-toggler { border: none; }
.navbar-toggler .icon-menu {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0; border-radius: 2px;
}

/* ==========================================================================
   Hero / Sliders (gradient + SVG art)
   ========================================================================== */
#sliders, #light-slider, #carousel-area, #carousel-slider,
.carousel-inner, .carousel-item { height: auto; }

.carousel-item { transition: transform .8s ease, opacity .8s ease; }

.hero-slide {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
}
/* real-photo hero with coloured overlay */
.hero-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(46,16,101,.93) 0%, rgba(49,46,129,.84) 45%, rgba(8,47,73,.72) 100%);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 78% 30%, rgba(34,211,238,.30), transparent 45%);
}

.hero-slide .container { position: relative; z-index: 2; }
.hero-text { color: #fff; }
.hero-text.mx-auto { max-width: 860px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: #eaf2ff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.carousel-caption .slide-title,
.hero-text .slide-title {
  font-size: 3.5rem !important;
  line-height: 1.12;
  font-weight: 700 !important;
  color: #fff !important;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
  margin-bottom: 22px;
}
.carousel-caption .slide-text,
.hero-text .slide-text {
  font-size: 1.14rem !important;
  font-weight: 400 !important;
  color: #e7eeff !important;
  max-width: 660px;
  margin: 0 auto 34px !important;
  line-height: 1.85;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-cta {
  display: inline-block;
  background: var(--grad);
  background-size: 200% 200%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 15px 38px;
  border-radius: 50px;
  box-shadow: 0 14px 32px rgba(124,58,237,.45);
  transition: transform .25s ease, box-shadow .25s ease, background-position .5s ease;
}
.hero-cta:hover { color: #fff; transform: translateY(-3px); background-position: right center; box-shadow: 0 20px 40px rgba(124,58,237,.55); }
.hero-cta-ghost {
  display: inline-block;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.6);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.hero-cta-ghost:hover { background: rgba(255,255,255,.18); color: #fff; transform: translateY(-3px); }

/* carousel controls / indicators */
.carousel-control-prev, .carousel-control-next {
  width: 52px; height: 52px;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  opacity: 1; z-index: 5;
}
.carousel-control-prev { left: 26px; }
.carousel-control-next { right: 26px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: rgba(255,255,255,.28); }
.carousel-control-prev i, .carousel-control-next i { color: #fff; font-size: 20px; }
.carousel-indicators { bottom: 26px; z-index: 5; }
.carousel-indicators li { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.5); }
.carousel-indicators .active { background: #fff; width: 28px; border-radius: 6px; }

/* ==========================================================================
   About cards
   ========================================================================== */
#about { background: var(--bg-light); position: relative; }
#about .about.block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
#about .about.block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
#about .about.block:hover::before { transform: scaleX(1); }
#about .about.block:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
#about .about.block img {
  width: 78px; height: 78px; object-fit: contain; margin-bottom: 22px;
}
#about .about.block h5 { margin-bottom: 14px; font-size: 1.16rem; }
#about .about.block h5 a { color: var(--navy); }
#about .about.block:hover h5 a { color: var(--indigo); }

/* ==========================================================================
   Services
   ========================================================================== */
#services { background: var(--white); }
.service-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px;
  height: 100%;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.service-box:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.service-icon {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 22px rgba(79, 70, 229, .3);
  transition: transform .3s ease;
}
.service-box:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon i { color: #fff; font-size: 27px; }
/* give each service icon its own colour accent */
.service-box:nth-child(2) .service-icon { background: linear-gradient(135deg,#2563eb,#22d3ee); }
.service-box:nth-child(3) .service-icon { background: linear-gradient(135deg,#ec4899,#8b5cf6); }
.service-box:nth-child(4) .service-icon { background: linear-gradient(135deg,#8b5cf6,#22d3ee); }
.service-box:nth-child(5) .service-icon { background: linear-gradient(135deg,#f59e0b,#ec4899); }
.service-box:nth-child(6) .service-icon { background: linear-gradient(135deg,#06b6d4,#4f46e5); }
.service-content h4 { font-size: 1.2rem; margin-bottom: 10px; }
.service-content h4 a { color: var(--navy); }
.service-box:hover .service-content h4 a { color: var(--indigo); }
.service-content p { margin: 0; font-size: .97rem; }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip {
  background: var(--grad);
  background-size: 180% 180%;
  animation: gradShift 14s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.stats-strip::after {
  content: "";
  position: absolute;
  right: -90px; top: -90px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.stat-item { text-align: center; padding: 18px 10px; position: relative; z-index: 2; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}
.stat-number .plus { color: #cffafe; }
.stat-label {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  letter-spacing: .3px;
}

/* ==========================================================================
   Why Choose Us (value cards)
   ========================================================================== */
#feature { background: var(--bg-light); }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 30px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 24px;
}
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.value-card .value-icon {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 22px;
  background: var(--grad);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 12px 26px rgba(79,70,229,.3);
}
.value-card:nth-child(2) .value-icon,
.row .col-lg-4:nth-child(2) .value-card .value-icon { background: var(--grad-pink); }
.value-card h4 { font-size: 1.18rem; margin-bottom: 12px; }
.value-card p { font-size: .96rem; margin: 0; }

/* ==========================================================================
   Technologies
   ========================================================================== */
.tech-section { background: var(--white); }
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
}
.tech-badge i { color: var(--indigo); font-size: 18px; }
.tech-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  color: var(--indigo);
}

/* ==========================================================================
   Process / How We Work
   ========================================================================== */
.process-section { background: var(--bg-light); }
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 26px 32px;
  text-align: center;
  height: 100%;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.process-num {
  position: absolute;
  top: 14px; right: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(79,70,229,.18);
}
.process-icon {
  width: 70px; height: 70px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 20px;
  background: var(--grad);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 12px 26px rgba(79,70,229,.3);
}
.process-step h4 { font-size: 1.18rem; margin-bottom: 10px; }
.process-step p { font-size: .94rem; margin: 0; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--grad);
  background-size: 180% 180%;
  animation: gradShift 14s ease infinite;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  left: -80px; bottom: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}
.cta-title { color: #fff; font-size: 2.2rem; margin-bottom: 14px; }
.cta-text { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 620px; margin: 0 auto 28px; }
.cta-banner .hero-cta { background: #fff; color: var(--indigo); box-shadow: 0 14px 32px rgba(0,0,0,.18); }
.cta-banner .hero-cta:hover { color: var(--violet); background: #fff; }

/* ==========================================================================
   Team / Leadership
   ========================================================================== */
.team-section { background: var(--white); }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  margin-bottom: 30px;
}
.team-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(79,70,229,.55), transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
}
.team-card:hover .team-photo::after { opacity: 1; }
.team-social {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  display: flex; justify-content: center; gap: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--indigo);
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}
.team-social a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.team-info { text-align: center; padding: 26px 20px 30px; }
.team-info h4 { font-size: 1.2rem; margin-bottom: 6px; color: var(--navy); }
.team-role {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--indigo);
}

/* ==========================================================================
   Contact
   ========================================================================== */
#contact { background: var(--white); }
#contact .title-head { color: var(--navy); margin-bottom: 26px; font-size: 1.6rem; }
.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px 14px 48px;
  background: var(--bg-light);
  box-shadow: none;
  margin-bottom: 22px;
  font-size: 15px;
}
.contact-form textarea.form-control { padding-left: 18px; }
.contact-form .form-control:focus {
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .14);
}
.contact-form .form-group { position: relative; margin-bottom: 0; }
/* Note: selector matches main.css's `.contact-form .contact-icon` specificity
   so this (loaded later) wins and the icon no longer overlaps the input text. */
.contact-form .contact-icon {
  position: absolute;
  left: 18px;
  top: 17px;
  color: var(--indigo);
  font-size: 16px;
  z-index: 2;
}

.contact-info-title { color: var(--navy); margin-bottom: 24px; font-size: 1.4rem; }
.contact-info {
  background: var(--grad);
  background-size: 160% 160%;
  animation: gradShift 14s ease infinite;
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-md);
}
.contact-info address,
.contact-info a {
  display: flex; align-items: center; gap: 12px;
  color: #f2f5ff !important;
  margin-bottom: 18px;
  font-style: normal;
  line-height: 1.6;
}
.contact-info a:hover { color: #fff !important; transform: translateX(3px); }
.contact-info .contact-info-icon {
  color: #cffafe !important; font-size: 20px; flex: 0 0 auto; width: 22px; text-align: center;
}
.contact-info .tel-info { display: flex; flex-direction: column; }
.contact-info .social-links {
  list-style: none; padding: 0; margin: 28px 0 0; display: flex; gap: 12px;
}
.contact-info .social-links a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff !important;
  margin: 0;
}
.contact-info .social-links a:hover { background: #fff; color: var(--indigo) !important; transform: translateY(-3px); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: #aab6d4; padding-top: 72px; }
.footer .small-title {
  color: #fff; font-size: 1.05rem; margin-bottom: 24px; position: relative; padding-bottom: 12px;
}
.footer .small-title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 3px;
  background: var(--grad); border-radius: 3px;
}
.footer p, .footer .menu li a { color: #aab6d4; }
.footer .menu { list-style: none; padding: 0; }
.footer .menu li { margin-bottom: 12px; }
.footer .menu li a:hover { color: var(--cyan); padding-left: 4px; }
.footer .social-footer { margin-top: 18px; }
.footer .social-footer a .icon-round {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; margin-right: 8px;
}
.footer .social-footer a .icon-round:hover { background: var(--grad); }
.footer .footer-contact { list-style: none; padding: 0; margin-top: 6px; }
.footer .footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; color: #aab6d4; }
.footer .footer-contact li i { color: var(--cyan); width: 16px; }
.footer .footer-contact li a { color: #aab6d4; }
.footer .footer-contact li a:hover { color: var(--cyan); }
.footer .plain-flicker-gallery a img { border-radius: 8px; transition: transform .3s ease, opacity .3s ease; }
.footer .plain-flicker-gallery a:hover img { transform: scale(1.05); opacity: .85; }
.footer .contact-us .form-control {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #fff; border-radius: var(--radius-sm); margin-bottom: 14px;
}
.footer .contact-us .form-control::placeholder { color: #8194bd; }

#copyright { background: #0b1226; padding: 22px 0; margin-top: 52px; }
#copyright .copyright-text, #copyright a { color: #8194bd; }
#copyright a:hover { color: var(--cyan); }
#copyright .nav-link { color: #8194bd !important; }
#copyright .nav-link:hover, #copyright .nav-link.active { color: var(--cyan) !important; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--grad); color: #fff; box-shadow: var(--shadow-md);
}
.back-to-top:hover { color: #fff; transform: translateY(-4px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .section-padding { padding: 80px 0; }
  .hero-slide { min-height: auto; padding: 140px 0 80px; text-align: center; }
  .hero-text .slide-title, .carousel-caption .slide-title { font-size: 2.4rem !important; text-align: center; }
  .hero-text .slide-text, .carousel-caption .slide-text { text-align: center; margin-left: auto !important; margin-right: auto !important; }
  .hero-actions { justify-content: center; }
  .hero-art { margin-top: 44px; }
  .hero-art svg { max-width: 360px; }
  .navbar.scrolling-navbar, .navbar.indigo { background: #fff !important; }
}
@media (max-width: 575px) {
  .section-title { font-size: 1.8rem; }
  .hero-text .slide-title, .carousel-caption .slide-title { font-size: 1.95rem !important; }
  .hero-text .slide-text, .carousel-caption .slide-text { font-size: 1rem !important; }
  .service-box { flex-direction: column; }
  .stat-number { font-size: 2.3rem; }
  .carousel-control-prev, .carousel-control-next { display: none; }
}
