body{font-size: 15px; font-weight:500;}
/* TOP BAR */
.top-bar {
  background: #000;
  color: #fff;
  font-size: 15px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.top-left span {
  margin-right: 10px;
}

.top-left i {
  margin-right: 6px;
  color: red;
}
/* RIGHT ICONS */
.top-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  border-radius: 50%;
  font-size: 15px;

  margin-left: 10px;
  transition: 0.3s;

  color: #fff; /* icon white */
}

/* 🎯 SOCIAL BACKGROUND COLORS */
.top-right a:nth-child(1) { background: #1877f2; } /* Facebook */
.top-right a:nth-child(2) { background: #e4405f; } /* Instagram */
.top-right a:nth-child(3) { background: #0a66c2; } /* LinkedIn */
.top-right a:nth-child(4) { background: #ff0000; } /* YouTube */

/* HOVER EFFECT */
.top-right a:hover {
  transform: translateY(-2px) scale(1.05);
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {

  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .top-left span {
    display: block;
    margin: 0px 0;
  }
.top-bar {
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
  .top-right {
    margin-top: 5px;
  }
}
/* NAV LINKS */
.nav-link {
  color: #222;
  font-weight: 500;
}

.nav-link:hover {
  color: red;
}

/* DROPDOWN */
.custom-dropdown {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-bottom: 3px solid red;
  padding: 10px;
}

.dropdown-item {
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

.dropdown-item:hover {
  color: red;
  background: none;
}

/* MEGA MENU */
.mega-menu {
  border: none;
  padding: 25px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-bottom: 3px solid red;
}

.mega-menu a {
  display: block;
  padding: 6px 0;
  color: #222; font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mega-menu a:hover {
  color: red;
}








.nav-link:hover {
  color: red;
}

/* dropdown */
.custom-dropdown {
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-bottom: 3px solid red;
}

/* mega menu */
.mega-menu {
  border: none;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-bottom: 3px solid red;
}

.mega-menu a {
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* MOBILE LINKS */
.mobile-link {
  display: block;
  padding: 12px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.mobile-link:hover {
  color: red;
}

/* ACCORDION STYLE */
.accordion-button {
  font-weight: 500;
  background: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: red;
  background: #f9f9f9;
}

.accordion-body a {
  display: block;
  padding: 6px 0;
  font-size: 15px;
  color: #222;
  text-decoration: none;
}

.accordion-body a:hover {
  color: red;
}

/* OFFCANVAS WIDTH */
.offcanvas {
  width: 280px;
}






.dropdown-menu{ 
    position: absolute !important;
    background-color: #ffffff !important;
    z-index: 999;
    border-top: 1px solid #e2e2e2 !important;
    border-right: 1px solid #e2e2e2 !important;
    border-left: 1px solid #e2e2e2 !;
    border-bottom: 2px solid #ff0f0f !important;
  
    top: 25px; border-radius: 0% !important; font-weight:500 !important;
    left: 0px;
    padding: 10px 3px;}


    .navbar-brand img{width:200px;}





    .custom-slider {
  position: relative;
  width: 100%;

  overflow: hidden;
}

.slider {
  display: flex;

}

.slide {
  min-width: 100%;
  transition: 0.5s;
}

.slide img {
  width: 100%;

}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.left { left: 20px; }
.right { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
  .custom-slider {
    height: 100%;
  }
      .navbar-brand img{width:160px;}
}









.about-apex {
  padding: 80px 20px;
  background: #f8f9fb;
}

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

.about-grid {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

.about-content .tag {
  color: #e60023;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
}

.about-content h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #222;
}

.about-content p {
  color: #222;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: #e60023;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #c4001d;
}

/* Responsive */
@media (max-width: 991px) {
  .about-grid {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 28px;
  }
}





.apex-banner {
  position: relative;
  background: url("../images/counter-bg.webp") center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
}

/* DARK OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.7);
}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: auto;
  position: relative;

}

/* GRID */
.banner-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.left {
  max-width: 500px;
}

.small {
  font-size: 18px;
  opacity: 0.8;
}

/* HEADING BOX */
/* BOX */
.heading-box {
  position: relative;
  padding: 20px 30px;
  display: inline-block;

}

/* TOP LINE (separate element) */
.top-line {
  position: absolute;
  top: -12px;
  left: 60px;
  width: 60%;
  height: 2px;
  background: rgba(255,255,255,0.7);
}

/* TEXT */
.heading-box h1 {
  font-size: 60px;
  margin: 0;
}

.heading-box h2 {
  font-size: 24px;
  color: #e9232a;
}

/* BORDER */
.heading-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.4);
      border-right: 1px solid rgba(255,255,255,0.4);
}

/* TOP LINE */
.heading-box::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 60px;
  width: 60%;
  height: 2px;
  background: rgba(255,255,255,0.6);
}

/* TEXT */
.heading-box h1 {
  font-size: 60px;
  margin: 0;
}

.heading-box h2 {
  font-size: 24px;
  color: #e9232a;
  margin-top: 5px;
}

/* PARAGRAPH */
.left p {
  margin-top: 10px;

}

/* RIGHT GRID */
.right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* RIGHT GRID */
.right1 {

  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* BOX */
.box {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 25px;
  text-align: center;

  transition: 0.3s;
}

/* HOVER */
.box:hover {
  background: rgba(0, 198, 255, 0.2);
  transform: translateY(-5px);
}

/* COUNTER */
.counter {
  font-size: 38px;
  color: #0ac2f0;
}

/* TEXT */
.box p {
  font-size: 15px;
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .banner-grid {
    flex-direction: column;
    text-align: center;
  }

  .right {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-box h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .right {
    grid-template-columns: 1fr;
  }
}








.stabilizer-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

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

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

/* IMAGE */
.card img {
  width: 100%;

}

/* CONTENT */
.content {
  padding: 20px;
}

.content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

/* BUTTON */
.content a {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.content a:hover {
  background: #00c6ff;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}








.apex-quality-wrap {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f2f2f2, #f4f4f4);
  color: #222;
}

.apex-quality-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.apex-quality-left {
  flex: 1;
}

.apex-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #222;
}

.apex-quality-left h2 {
  font-size: 36px;
  margin: 15px 0;
  line-height: 1.3;
}

.apex-quality-left p {
  color: #222;
  line-height: 1.6;
}

/* RIGHT GRID */
.apex-quality-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.apex-quality-card {
  position: relative;
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}

/* LEFT BORDER EFFECT */
.apex-quality-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d7171f;
}

/* HOVER */
.apex-quality-card:hover {
  transform: translateY(-6px);
  background: rgba(56,189,248,0.1);
}

/* TEXT */
.apex-quality-card h3 {
  font-size: 22px;
  color: #d7171f;
}

.apex-quality-card p {
  font-size: 15px;
  margin-top: 5px;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .apex-quality-container {
    flex-direction: column;
  }

  .apex-quality-right {
    grid-template-columns: 1fr;
  }
}





.apex-clients {
  padding: 80px 20px;
  background: #d5dce4;
  overflow: hidden;
}

.apex-client-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.apex-client-heading {
  text-align: center;
  margin-bottom: 40px;
}

.apex-client-heading h2 {
  font-size: 32px;
}

.apex-client-heading p {
  color: #222;
  margin-top: 5px;
}

/* SLIDER */
.apex-client-slider {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.apex-client-track {
  display: flex;
  gap: 40px;
  animation: scroll 20s linear infinite;
}

/* LOGO */
.client-logo {
  min-width: 150px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.client-logo img {
  max-width: 100%;

}



.client-logo:hover {
  transform: translateY(-5px);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}









.apex-blog {
  padding: 90px 20px;
  background: #ffffff;
}

.apex-blog-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.apex-blog-head {
  text-align: center;
  margin-bottom: 50px;
}

.apex-blog-head span {
  color: #d7171f;
  font-size: 15px; font-weight:600;

}

.apex-blog-head h2 {
  font-size: 32px;
  margin: 10px 0;
}

.apex-blog-head p {
  color: #222;
}

/* GRID */
.apex-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.apex-blog-card {
  border-radius: 15px;
  overflow: hidden;
  background: #f9fafb;
  transition: 0.3s;
}

/* IMAGE */
.blog-img img {
  width: 100%;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* LINK */
.blog-content a {
  text-decoration: none;
  color: #00c6ff;
  font-weight: 500;
  transition: 0.3s;
}

.blog-content a:hover {
  letter-spacing: 1px;
}

/* HOVER EFFECT */
.apex-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .apex-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .apex-blog-grid {
    grid-template-columns: 1fr;
  }
}









/* =========================
   FOOTER START
========================= */

.apex-footer {
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* WRAPPER */
.footer-wrapper {
  display: flex;
  align-items: stretch;
}

/* ================= LEFT RED ================= */
.footer-left {
  width: 280px;
  background: #d7171f;
  color: #fff;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  padding: 80px 20px 40px;
  position: relative;
}

/* LOGO */
.footer-left img {
  max-width: 140px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* YEARS */
.footer-left .years h1 {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
}

.footer-left .years p {
  font-size: 16px;
  margin-top: 5px;
  opacity: 0.9;
}

/* ================= RIGHT ================= */
.footer-right {
  flex: 1;
  background: #0b2a3c;
  color: #fff;
  padding: 50px 40px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}

/* ================= COLUMNS ================= */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative; color:#fff;
}

/* UNDERLINE EFFECT */
.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -6px;
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* LINKS */
.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col ul li a i {
  margin-right: 8px;
  color: #fff;
}

.footer-col ul li a:hover {
  color: #00c6ff;
  padding-left: 5px;
}

/* ================= CONTACT ================= */
.contact p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.6;
}

.contact i {
  margin-right: 8px;
  color: #fff;
}
.contact a{color:#fff; text-decoration: none !important;}
/* ================= SOCIAL ================= */
.footer-social {
  margin-top: 30px;
  text-align: center;
}

.footer-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00c6ff;
  transform: translateY(-5px);
}

/* ================= BOTTOM ================= */
.footer-bottom {
  margin-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 15px;
  color: #fff;
  margin: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-left {
    width: 220px;
    padding-top: 60px;
  }
}

@media (max-width: 768px) {

  .footer-wrapper {
    flex-direction: column;
  }

  .footer-left {
    width: 100%;
    padding: 40px 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-social {
    margin-top: 20px;
  }
}

/* ================= FOOTER END ================= */





/* FLOATING CONTACT */
.floating-contact {
  position: fixed;
  left: 15px;
  bottom: 80px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* COMMON STYLE */
.floating-contact a {
  width: 50px;
  height: 50px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;
  text-decoration: none;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* WHATSAPP */
.floating-contact .whatsapp {
  background: #25D366;
}

/* CALL */
.floating-contact .call {
  background: #d7171f;
}

/* HOVER EFFECT */
.floating-contact a:hover {
  transform: translateY(-5px) scale(1.05);
}

/* MOBILE ADJUST */
@media (max-width: 768px) {
  .floating-contact {
    left: 10px;
    bottom: 60px;
  }

  .floating-contact a {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}










.custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* SLIDER TRACK */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* EACH SLIDE */
.slide {
  min-width: 100%;
}

/* IMAGE */
.slide img {
  width: 100%;

}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.arrow.left {
  left: 15px;
}

.arrow.right1 {
  right: 15px;
}

.arrow:hover {
  background: #ff1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slide img {
    height: 100%;
  }

  .arrow {
    font-size: 18px;
    padding: 8px 12px;
  }
}







.electrical-panel-page{
    padding:80px 0;
    background:#f5f7fb;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HERO SECTION */

.panel-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:70px;
}

.panel-tag{
    display:inline-block;
    background:#0a70b6;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    margin-bottom:20px;
}

.panel-left h1{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
}

.panel-left p{
    font-size:17px;
    line-height:1.8;
    color:#111;
}

.panel-right img{
    width:100%;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* GALLERY */

.panel-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:70px;
}

.panel-gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* CONTENT */

.panel-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-bottom:70px;
}

.content-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.content-box h2{
    font-size:30px;
    margin-bottom:25px;
    color:#111;
}

.content-box ul{
    padding-left:20px;
}

.content-box ul li{
    margin-bottom:14px;
    color:#111;
    line-height:1.7;
    font-size:16px;
}

/* APPLICATIONS */

.applications-section{
    text-align:center;
}

.applications-section h2{
    font-size:42px;
    margin-bottom:40px;
    color:#111;
}

.applications-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.app-box{
    background:#fff;
    padding:24px;
    border-radius:16px;
    font-size:18px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.app-box:hover{
    transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .panel-hero,
    .panel-content{
        grid-template-columns:1fr;
    }

    .panel-gallery{
        grid-template-columns:1fr 1fr;
    }

    .applications-grid{
        grid-template-columns:1fr 1fr;
    }

    .panel-left h1{
        font-size:42px;
    }
}

@media(max-width:576px){

    .panel-gallery{
        grid-template-columns:1fr;
    }

    .applications-grid{
        grid-template-columns:1fr;
    }

    .panel-left h1{
        font-size:34px;
    }
}



/* SECTION */

.apex-quality-section{
    padding:90px 0;
    background:#fff;
}

/* CONTAINER */

.apex-quality-container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT */

.apex-quality-tag{
    display:inline-block;
    background:#c4001d;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:1px;
}

.apex-quality-content h2{
    font-size:36px;
    line-height:1.2;
    margin-bottom:20px;
    color:#111;
}

.apex-quality-content p{
    font-size:16px;
    line-height:1.8;
    color:#111;
}

/* POINTS */

.apex-quality-points{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.quality-point{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    padding:16px 20px;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.quality-point span{
    width:42px;
    height:42px;
    background:#c4001d;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.quality-point p{
    margin:0;
    font-weight:600;
    color:#222;
}

/* RIGHT */

.apex-quality-stats{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.quality-stat-card{
    background:#fff;
    padding:40px 20px;
    text-align:center;
    border-radius:22px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.quality-stat-card:hover{
    transform:translateY(-8px);
}

.quality-stat-card i{
    font-size:42px;
    color:#c4001d;
    margin-bottom:15px;
    display:block;
}

.quality-stat-card h3{
    font-size:36px;
    color:#111;
    margin-bottom:10px;
}

.quality-stat-card p{
    font-size:16px;
    color:#111;
    margin:0;

}

/* RESPONSIVE */

@media(max-width:991px){

    .apex-quality-container{
        grid-template-columns:1fr;
    }

    .apex-quality-content h2{
        font-size:38px;
    }

}

@media(max-width:600px){

    .apex-quality-section{
        padding:70px 0;
    }

    .apex-quality-content h2{
        font-size:30px;
    }

    .apex-quality-stats{
        grid-template-columns:1fr;
    }

}