/* =====================================================
   ROYAL NETTING SOLUTION — CUSTOM STYLESHEET
   Theme tokens defined as CSS variables below.
===================================================== */
:root {
  --navy: #12294F;
  --navy-dark: #0A1A38;
  --navy-light: #1E3E73;
  --orange: #FF7A21;
  --orange-dark: #E8620C;
  --teal: #00A896;
  --teal-dark: #007F72;
  --bg-light: #F7F9FC;
  --bg-alt: #EFF3FA;
  --text-dark: #1F2937;
  --text-muted: #667085;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(18, 41, 79, 0.08);
  --shadow-hover: 0 20px 45px rgba(18, 41, 79, 0.16);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all .35s cubic-bezier(.22,.9,.32,1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}

a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--orange); color: #fff; }

/* Scrollbar accent */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--navy-light); border-radius: 10px; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.section-pad { padding: 90px 0; }
.bg-light-alt { background: var(--bg-alt); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  display: inline-block;
}
.eyebrow-light { color: #FFC499; }

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 18px;
  line-height: 1.25;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
}
.text-light-2 { color: #C9D3E6 !important; }

/* Buttons */
.btn-cta {
  background: var(--orange);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(255, 122, 33, 0.35);
  transition: var(--transition);
}
.btn-cta:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 122, 33, 0.4);
  color: #fff;
}
.btn-cta-outline {
  border: 2px solid #fff;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  background: rgba(255,255,255,.05);
}
.btn-cta-outline:hover { background: #fff; color: var(--navy) !important; transform: translateY(-3px); }
.btn-book {
  background: var(--teal);
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-book:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-service {
  border: 2px solid var(--navy);
  color: var(--navy) !important;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-service:hover { background: var(--navy); color: #fff !important; }

/* =================== TOP BAR =================== */
.top-bar {
  background: var(--navy-dark);
  color: #C9D3E6;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-left span, .top-bar-right span { margin-right: 22px; }
.top-bar i { color: var(--orange); margin-right: 6px; }
.top-bar a { color: #fff; font-weight: 600; }
.top-bar a:hover { color: var(--orange); }

/* =================== HEADER =================== */
.site-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(18,41,79,.08);
  z-index: 1030;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 26px rgba(18,41,79,.14); }
.navbar { padding: 14px 0; }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--orange);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.brand-text em { color: var(--orange); font-style: normal; }
.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }
.navbar-nav .nav-link:hover { color: var(--orange-dark); }
.navbar-toggler { border: none; font-size: 1.6rem; color: var(--navy); }
.navbar-toggler:focus { box-shadow: none; }

/* =================== HERO =================== */
.hero-section { position: relative; }
#heroCarousel .carousel-item img {
  height: 92vh;
  min-height: 560px;
  object-fit: cover;
}
.carousel-caption-custom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0;
}
.carousel-caption-custom h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.carousel-caption-custom p {
  color: #E7ECF7;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-section .eyebrow {
  display: inline-block;
  color: #fff;
  background: rgba(255,122,33,.9);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: 1; }
.custom-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition);
}
.custom-arrow:hover { background: var(--orange); border-color: var(--orange); }
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
}
.carousel-indicators .active { background: var(--orange); width: 28px; border-radius: 6px; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 80px; }
.hero-wave path { fill: var(--bg-light); }

/* =================== ABOUT =================== */
.about-img-wrap { position: relative; }
.about-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.exp-badge {
  position: absolute;
  bottom: -24px; right: -18px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-hover);
  text-align: center;
  min-width: 130px;
}
.exp-badge h3 { color: #fff; font-size: 2.4rem; margin-bottom: 2px; }
.exp-badge h3 span { font-size: 1.4rem; }
.exp-badge p { font-size: .78rem; margin: 0; line-height: 1.3; }
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
}
.about-point:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.about-point i { font-size: 1.6rem; color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.about-point h6 { margin-bottom: 4px; font-size: .98rem; }
.about-point p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* =================== SERVICES =================== */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
  border: 1px solid #EAEFF8;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-img { position: relative; overflow: hidden; height: 260px; }
.service-img img { width: 100%; height: 100%; transition: transform .6s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-num {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-body { padding: 28px; }
.service-body h3 { margin-bottom: 12px; }
.service-body > p { color: var(--text-muted); font-size: .95rem; }
.service-list { margin: 16px 0 22px; }
.service-list li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: .9rem; color: var(--text-dark); }
.service-list i { color: var(--teal); }

/* =================== WHY CHOOSE US =================== */
.why-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.why-card:hover { transform: translateY(-6px); border-bottom-color: var(--orange); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.why-card h5 { margin-bottom: 8px; font-size: 1.05rem; }
.why-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* =================== COUNTER =================== */
.counter-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0;
  position: relative;
}
.counter-box i { font-size: 2.1rem; color: var(--orange); margin-bottom: 12px; display: inline-block; }
.counter-box h3 { color: #fff; font-size: 2.4rem; margin-bottom: 4px; }
.counter-box p { color: #B9C4DC; margin: 0; font-size: .95rem; }

/* =================== HOW IT WORKS =================== */
.step-card {
  text-align: center;
  padding: 34px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  padding: 5px 14px;
  border-radius: 50px;
}
.step-icon { font-size: 2.2rem; color: var(--teal); margin: 14px 0 16px; display: inline-block; }
.step-card h5 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* =================== BOOK YOUR SERVICE =================== */
.book-section {
  position: relative;
  padding: 90px 0;
  background: var(--navy-dark);
  overflow: hidden;
}
.book-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 70%);
  z-index: 0;
}
.book-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 2px, transparent 2px 26px),
                     repeating-linear-gradient(-45deg, rgba(255,255,255,.035) 0 2px, transparent 2px 26px);
}
.book-section .container { position: relative; z-index: 1; }
.book-perks { margin: 20px 0 10px; }
.book-perks li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #E7ECF7; }
.book-perks i { color: var(--teal); font-size: 1.1rem; }
.booking-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-hover);
}
.booking-form h4 { margin-bottom: 22px; }
.booking-form .form-label { font-weight: 600; font-size: .88rem; color: var(--navy); }
.booking-form .form-control, .booking-form .form-select {
  border-radius: 10px;
  border: 1.5px solid #E1E7F2;
  padding: 11px 14px;
}
.booking-form .form-control:focus, .booking-form .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .2rem rgba(0,168,150,.15);
}

/* =================== GALLERY =================== */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,41,79,.75), rgba(18,41,79,0) 60%);
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i { color: #fff; font-size: 1.3rem; background: var(--orange); padding: 10px; border-radius: 50%; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }

/* =================== CLIENTS =================== */
.client-logo {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  filter: grayscale(100%);
  opacity: .75;
}
.client-logo:hover { filter: grayscale(0%); opacity: 1; transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* =================== CERTIFICATIONS =================== */
.cert-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  overflow: hidden;
}
.cert-card img { border-radius: 8px; }
.cert-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-hover); }

/* =================== TESTIMONIALS =================== */
.testi-card {
  max-width: 720px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}
.quote-icon { font-size: 2.6rem; color: var(--orange); opacity: .3; margin-bottom: 10px; }
.testi-card p { font-size: 1.08rem; color: var(--text-dark); font-style: italic; margin-bottom: 24px; }
.testi-user { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.testi-user h6 { margin: 0; font-size: .95rem; }
.testi-user span { font-size: .8rem; color: var(--text-muted); }
.testi-stars { color: var(--orange); font-size: .85rem; width: 100%; margin-top: 4px; }
.testi-dots { display: flex; justify-content: center; gap: 8px; }
.testi-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: #D6DEEC; padding: 0;
}
.testi-dots button.active { background: var(--orange); width: 26px; border-radius: 6px; }

/* =================== FAQ =================== */
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) { background: var(--navy); color: #fff; box-shadow: none; }
.accordion-button:not(.collapsed)::after { filter: invert(1) brightness(2); }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { font-size: .92rem; color: var(--text-muted); padding: 18px 22px; }

/* =================== CONTACT =================== */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.contact-info-card i { font-size: 1.8rem; color: var(--orange); background: var(--bg-alt); width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.contact-info-card h5 { margin-bottom: 8px; }
.contact-info-card p { margin: 0; color: var(--text-muted); }
.contact-info-card a { color: var(--navy); font-weight: 600; }
.contact-info-card a:hover { color: var(--orange-dark); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); line-height: 0; }

/* =================== FOOTER =================== */
.site-footer { background: var(--navy-dark); color: #B9C4DC; padding: 70px 0 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-text { color: #fff; }
.site-footer p { font-size: .9rem; line-height: 1.7; }
.footer-heading { color: #fff; font-family: var(--font-display); margin-bottom: 20px; font-size: 1rem; }
.footer-links li { margin-bottom: 12px; font-size: .9rem; }
.footer-links a { color: #B9C4DC; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links i { color: var(--orange); margin-right: 8px; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--orange); transform: translateY(-4px); }
.site-footer hr { border-color: rgba(255,255,255,.1); margin: 40px 0 20px; }
.footer-bottom p { font-size: .85rem; margin: 0; }

/* =================== FLOATING BUTTONS =================== */
.floating-btn {
  position: fixed;
  bottom: 26px;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 1040;
  transition: var(--transition);
}
.whatsapp-float { left: 26px; background: #25D366; animation: pulse-wa 2.4s infinite; }
.call-float { right: 26px; background: var(--orange); animation: pulse-call 2.4s infinite; }
.floating-btn:hover { transform: scale(1.12); color: #fff; }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes pulse-call {
  0% { box-shadow: 0 0 0 0 rgba(255,122,33,.55); }
  70% { box-shadow: 0 0 0 16px rgba(255,122,33,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,33,0); }
}

.back-to-top {
  position: fixed;
  right: 26px; bottom: 96px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(18,41,79,.3);
  z-index: 1040;
  transition: var(--transition);
}
.back-to-top:hover { background: var(--orange); transform: translateY(-4px); }
.back-to-top.show { display: flex; }

/* =================== SCROLL REVEAL ANIMATION =================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="zoom-in"] { transform: scale(.92); }
[data-aos].aos-in {
  opacity: 1;
  transform: translate(0,0) scale(1);
}
.cu-lg-wdth{
	width:260px;
}
/* =================== RESPONSIVE =================== */
@media (max-width: 991.98px) {
  .section-pad { padding: 64px 0;overflow-x: hidden; }
  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
  }
  .exp-badge { right: 10px; bottom: -18px; padding: 12px 16px; min-width: 100px; }
  .exp-badge h3 { font-size: 1.7rem; }
  #heroCarousel .carousel-item img { height: 78vh; min-height: 460px; }
}
#enu-st{
	background: var(--orange);
    color: #fff !important;
    font-family: var(--font-display);
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    border: 2px solid var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(255, 122, 33, 0.35);
    transition: var(--transition);
	display:block;
	width:100%;
}
@media (max-width: 767.98px) {
	.cu-ds-nn{
		display:none!important
	}
	.hero-section{
		overflow-x:hidden;
	}
.cu-jf-cntr{
	justify-content:center!important
}
  .carousel-caption-custom { text-align: center; }
  .carousel-caption-custom .container { display: flex; flex-direction: column; align-items: center; }
  .carousel-caption-custom p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  #heroCarousel .carousel-item img { height: 72vh; min-height: 420px; }
  .booking-form { padding: 24px; }
  .floating-btn { width: 50px; height: 50px; font-size: 1.3rem; bottom: 18px; }
  .whatsapp-float { left: 16px; }
  .call-float { right: 16px; }
  .back-to-top { right: 16px; bottom: 82px; width: 42px; height: 42px; }
}

@media (max-width: 575.98px) {
  .section-title { font-size: 1.5rem; }
  .testi-card { padding: 28px 20px; }
  .service-body { padding: 20px; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:220px;
}
}