@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Spline+Sans:wght@300..700&display=swap');



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

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Spline Sans", sans-serif;
}

:root {
  --yellow: #facc15;
  --orange: #ff7a18;
  --blue: #1e6fff;
  --head-dark: #111827;
  --content-dark: #374151;
  --gray-bg: #f5f5f5;
  --text-muted: #666666;
  --white: #ffffff;
  --border: #e5e5e5;
}

.text-orange {
  color: var(--orange) !important;
}

.btn-yellow {
  background-color: var(--yellow);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--content-dark);
  border-radius: 6px;
  padding: 10px 30px;
}

.btn-yellow:hover {
  background-color: var(--orange);
  color: var(--white);
}

/* ─── TOP BAR ─────────────────────────────── */
.top-bar {
  background: linear-gradient(to right, #facc15 70%, #1e6fff 30%);
  padding: 6px 22px;
}

.top-bar a,
.top-bar span {
  color: #111;
  text-decoration: none;
}

.top-bar i {
  margin-right: 4px;
  color: var(--blue);
}

.top-social {
  background: var(--blue-bar);
  padding: 7px 22px;
}

.top-social i {
  color: #fff !important;
}

.top-social a {
  color: #fff;
  font-size: 1rem;
  margin-left: 14px;
  text-decoration: none;
  transition: opacity .2s;
}

.top-social a:hover {
  opacity: .7;
}

/* ─── NAVBAR ──────────────────────────────── */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

a.navbar-brand.brand-logo img {
  max-width: 220px;
}

.main-nav {
  background: transparent;
  padding: 15px 0;
}

.navbar-nav a{
  font-weight: 500;
  color: var(--white);
  padding: 10px 18px;
}

.navbar-nav a.nav-link.active {
  color: var(--yellow) !important;
}

.navbar-nav a i {
  font-size: 12px;
  margin-left: 5px;
}

.navbar-nav a:hover {
  color: var(--yellow);
}

@media (max-width:991px) {

  .navbar-collapse {
    background: #fff;
    padding: 20px;
  }

  .navbar-nav {
    margin-bottom: 20px;
  }

}


/* ─── CAROUSEL WRAPPER ─── */
#heroCarousel {
  position: relative;
  margin-top: 50px;
}

.carousel-item img {
  height: 650px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 10, 10, .88) 0%,
      rgba(10, 10, 10, .55) 50%,
      rgba(10, 10, 10, .15) 100%);
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  top: 60%;
  left: 80px;
  right: auto;
  bottom: auto;
  transform: translateY(-60%);
  text-align: left;
  max-width: 650px;
  z-index: 10;
  padding: 0;
}

.caption-tag {
  color: var(--yellow);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.caption-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
}

.caption-desc {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 420px;
}

.btn-quote {
  background: var(--yellow);
  color: #111;
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid var(--yellow);
  padding: 13px 32px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, color .2s, transform .15s;
}

.btn-quote:hover {
  background: transparent;
  color: var(--yellow);
  transform: translateY(-2px);
}

/* ─── CAPTION ANIMATION ─── */
.carousel-item .caption-tag,
.carousel-item .caption-heading,
.carousel-item .btn-quote,
.carousel-item .caption-desc {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.carousel-item.active .caption-tag {
  opacity: 1;
  transform: none;
  transition-delay: .10s;
}

.carousel-item.active .caption-heading {
  opacity: 1;
  transform: none;
  transition-delay: .25s;
}

.carousel-item.active .btn-quote {
  opacity: 1;
  transform: none;
  transition-delay: .40s;
}

.carousel-item.active .caption-desc {
  opacity: 1;
  transform: none;
  transition-delay: .50s;
}

.carousel-indicators {
  bottom: 28px;
  left: 80px;
  justify-content: flex-start;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .35);
  opacity: 1;
  margin: 0 5px;
  transition: background .25s;
}

.carousel-indicators .active {
  background: var(--yellow);
  width: 14px;
  height: 14px;
}

/* ─── PREV / NEXT ARROWS ─── */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 4px;
  top: auto;
  bottom: 26px;
  opacity: 1;
  transition: background .2s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--orange);
  color: var(--white);
}

.carousel-control-prev {
  right: 72px;
  left: auto;
}

.carousel-control-next {
  right: 22px;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px;
  height: 18px;
  filter: invert(1) brightness(0);
}

/* ─── LEFT SOCIAL SIDEBAR ─── */
.hero-social {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 30;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: #111;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
  border-radius: 6px;
}

.hero-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}

/* ─── SCROLL DOWN ─── */
.scroll-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: rgba(255, 255, 255, .65);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 30;
  pointer-events: none;
}

.scroll-label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, .5);
}

/* ─── CIRCULAR BADGE ─── */
.circular-badge {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.circular-badge svg {
  width: 72px;
  height: 72px;
}

.badge-text {
  font-size: 6.8px;
  font-weight: 700;
  letter-spacing: 2.2px;
  fill: #222;
  text-transform: uppercase;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.badge-ring {
  transform-origin: 36px 36px;
  animation: spin 14s linear infinite;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 767px) {
  .carousel-item img {
    height: 480px;
  }

  .carousel-caption {
    left: 55px;
    max-width: 90%;
  }

  .carousel-indicators {
    left: 55px;
  }

  .top-social {
    display: none !important;
  }

  .scroll-label {
    display: none;
  }
}

/* ════════════════════════════════════════
   Request Electrical Service
════════════════════════════════════════ */
.request-section {
  background:
    linear-gradient(rgba(229, 231, 235, 0.9), rgba(229, 231, 235, 0.9)),
    url("../images/requestbg.webp");
  background-size: 20px 20px;
  background-repeat: repeat;
}

.request-section .custom-input {
  border: none;
  background-color: #fcfcfc;
  padding: 12px 15px;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.request-section .custom-input:focus {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.25);
  border-color: #facc15;
}




/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */


.about-section {
  background-color: #ffffff;
  overflow: hidden;
}

.custom-shape {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 40px 180px 40px 110px;
  transition: transform 0.5s ease;
}

.about-img-container:hover .custom-shape {
  transform: scale(1.02);
}

.about-content h2 {
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-content p {
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-content ul li {
  font-weight: 500;
  color: #333;
}

.about-content .fa-circle-check {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-warning {
  background-color: var(--yellow) !important;
  border-color: var(--yellow) !important;
  color: #111 !important;
  transition: all 0.3s ease !important;
}

.btn-warning:hover {
  background-color: var(--yellow-hover) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
}

.tracking-wider {
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
}

.rounded-circle {
  border: 2px solid #eee;
  padding: 2px;
}

@media (max-width: 991px) {
  .custom-shape {
    border-radius: 30px 120px 30px 80px;
    margin-bottom: 2rem;
  }

  .about-content {
    text-align: center;
  }

  .about-content ul li {
    justify-content: center;
  }

  .about-content .d-flex.flex-wrap {
    justify-content: center;
  }
}

/* ════════════════════════════════════════
   COUNTER SECTION
════════════════════════════════════════ */
.counter-section .counter-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.counter-section .counter-card h2 {
  font-size: 38px;
  color: var(--head-dark);
  margin-bottom: 6px;
}

.counter-section .counter-card p {
  color: var(--content-dark);
  font-size: 16px;
  margin: 0;
}

.counter-section .counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--yellow);
}

.counter-section .counter-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: #111;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.5rem;
}

.counter-section .counter-icon:hover {
  background-color: var(--blue);
}

.counter-section .counter-icon img {
  width: 40px;
  object-fit: contain;
}

/* ════════════════════════════════════════
   Our services
════════════════════════════════════════ */

.our-services {
  background: #f9fafb;
  padding: 40px 0;
}

.our-services .image-wrapper {
  position: relative;
  overflow: hidden;
}

.our-services .image-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.our-services .service-item:hover img {
  transform: scale(1.1);
}

.our-services .icon-badge {
  position: relative;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 0px #FFEB3B;
  color: #333;
  z-index: 10;
  transition: 0.3s;
}

.our-services .service-item:hover .icon-badge {
  background-color: #ffcc29;
  color: var(--head-dark);
}

.our-services .icon-badge i {
  transform: rotate(45deg);
}

.our-services h5 {
  color: #1a1a1a;
  letter-spacing: -0.5px;
}


/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-choose-us {
  background-color: #ffffff;
}

.why-choose-us .feature-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.why-choose-us .feature-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-choose-us .icon-box {
  min-width: 60px;
  display: flex;
  justify-content: center;
}

.why-choose-us .feature-card-one:hover {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
    url(../images/banner-1.webp);
  background-size: cover;
  background-position: center;
  border: none;
}

.why-choose-us .feature-card-three:hover {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
    url(../images/banner-4.webp);
  background-size: cover;
  background-position: center;
  border: none;
}

.why-choose-us .feature-card-four:hover {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
    url(../images/banner-2.webp);
  background-size: cover;
  background-position: center;
  border: none;
}

/* Why Choose Us feature card hover */
.why-choose-us .feature-card:hover h5,
.why-choose-us .feature-card:hover p {
  color: var(--white) !important;
}

.why-choose-us .highlight-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url(../images/banner-3.webp);
  background-size: cover;
  background-position: center;
  border: none;
}

.why-choose-us .highlight-card .content-wrapper {
  position: relative;
  z-index: 2;
}

.why-choose-us .custom-shape {
  object-fit: cover;
  height: 600px;
  width: 100%;
  border-radius: 40px;
}

@media (max-width: 991.98px) {
  .why-choose-us .custom-shape {
    clip-path: none;
    height: auto;
    border-radius: 25px;
    margin-top: 2rem;
  }

  .why-choose-us .feature-card:hover {
    transform: translateY(-5px);
  }
}

/* ════════════════════════════════════════
  24/7 Emergency Electrical 
════════════════════════════════════════ */

.emergency-electrical {
  background-image: url(../images/emergency-electricalbg.webp);
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
}

.emergency-electrical .hero-overlay {
  min-height: 600px;
  background: rgba(0, 0, 0, 0.1);
  padding: 3rem 0;
}

.emergency-electrical .glass-content-box {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px;
  color: #ffffff;
}

.emergency-electrical .main-title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.emergency-electrical .description {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.emergency-electrical .contact-action {
  margin-bottom: 2rem;
}

.emergency-electrical .icon-circle {
  background-color: var(--yellow);
  color: var(--head-dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.emergency-electrical .contact-info .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.emergency-electrical .contact-info .phone-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}


@media (max-width: 768px) {
  .emergency-electrical .glass-content-box {
    padding: 30px;
    margin: 15px;
  }

  .emergency-electrical .main-title {
    font-size: 1.8rem;
  }
}



/* ════════════════════════════════════════
   Our Projects
════════════════════════════════════════ */

.our-projects .project-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
}

.our-projects .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.our-projects .tall-card {
  height: 480px;
}

.our-projects .standard-card {
  height: 340px;
}

.our-projects .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: #fff;
}

.our-projects .view-details {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.our-projects .project-card:hover img {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .emergency-electrical .main-title {
    font-size: 2.2rem;
  }

  .emergency-electrical .glass-content-box {
    padding: 30px;
    border-radius: 20px;
  }

  .our-projects .tall-card,
  .our-projects .standard-card {
    height: 350px;
  }
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */

.testimonial-section {
  background: #f9fafb;
  padding: 40px 0;
}

.testimonial-section .ms-n2 {
  margin-left: -10px !important;
}

.testimonial-section .testimonial-card {
  transition: transform 0.3s ease;
  min-height: 320px;
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--yellow) !important;
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.1);
}

.testimonial-section .avatar-group img {
  border: 2px solid var(--white);
}

.testimonial-section .owl-theme .owl-dots .owl-dot span {
  background: #ddd;
}

.testimonial-section .owl-theme .owl-dots .owl-dot.active span {
  background: var(--yellow);
}

/* ════════════════════════════════════════
   LOGO SLIDER
════════════════════════════════════════ */

.logo-slider .logo-slider-container {
  background: #fff;
  position: relative;
}

.logo-slider .owl-carousel .item img {
  max-height: 80px;
  width: auto !important;
  display: inline-block;
}

.logo-slider .owl-carousel .owl-nav.disabled {
  display: block !important;
}

.logo-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;

}

.logo-slider .owl-nav button.owl-prev {
  left: -30px;
}

.logo-slider .owl-nav button.owl-next {
  right: -30px;
}

.logo-slider .owl-nav i {
  font-size: 20px;
  color: var(--orange) !important;
  border: 1px solid var(--orange);
  padding: 10px;
  border-radius: 4px;
}



/* ════════════════════════════════════════
   OUR BLOGS
════════════════════════════════════════ */

.our-blogs h2 {
  color: var(--head-dark);
  letter-spacing: -0.02em;
  font-size: 32px;
}

.blog-card {
  border: 1px solid #f9fafb;
  border-radius: 25px;
  overflow: hidden;
  background: #f9fafb;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  border-radius: 20px;
  padding: 0px;
  height: 300px;
  object-fit: cover;
}

.category-tag {
  color: #fd7e14;
  font-weight: 600;
  font-size: 1rem;
  margin: 10px 0;
  display: block;
}

.blog-title {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.main-footer {
  background-color: #0b0e14;
  font-family: 'Inter', sans-serif;
}

.main-footer .footer-contact-wrapper {
  border: 1px solid #2d3139;
  border-radius: 1.5rem;
}

.main-footer .contact-card {
  background: linear-gradient(to right,
      #4a4f5b 0%,
      #4a4f5b 20%,
      rgba(255, 255, 255, 0.17) 20%,
      rgba(255, 255, 255, 0.17) 100%);

  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer .icon-box {
  background-color: #fdb813;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  font-size: 1.2rem;
}

/* Text Styling */
.main-footer .contact-info .label {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.main-footer .contact-info .value {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 500;
}

.main-footer .contact-card:hover {
  transform: translateY(-5px);
  background-color: #242830;
}

.main-footer .footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.main-footer .footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.main-footer .footer-links li {
  margin-bottom: 12px;
}

.main-footer .footer-links a {
  color: #e9ecef;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.main-footer .footer-links i {
  color: var(--yellow);
  font-size: 0.75rem;
}

.main-footer .footer-links a:hover {
  color: var(--yellow);
  padding-left: 8px;
}

.main-footer .form-control {
  background-color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px;
}

.main-footer .btn-warning {
  background-color: var(--yellow);
  border: none;
  border-radius: 6px;
  color: #000;
}

/* Social Icon Boxes */
.main-footer .social-icons a {
  width: 35px;
  height: 35px;
  background-color: var(--white);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.main-footer .social-icons a:hover {
  background-color: var(--yellow);
}

.footer-bottom-links a:hover {
  color: var(--yellow) !important;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .about-img-badge {
    right: 10px;
    bottom: 10px;
  }

  .why-img {
    min-height: 280px;
  }

  .cta-item {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
  }

  .cta-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 440px;
  }

  .form-bar {
    padding: 24px 20px;
  }

  .hero-side-icons {
    display: none;
  }

  .testi-main-img {
    min-height: 220px;
  }
}