@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');



*,
:after,
:before {
	box-sizing: inherit
}

html {
	box-sizing: border-box;
}


body {
	margin: 0;
	overflow-x: hidden;
	font-family: Poppins, sans-serif;
}

main {
	display: block;
	position: relative;
	background-color: #fff
}

body:not(.loaded) * {
	transition: all 0 !important
}
/* Header */
.container {
    max-width: 1480px!important;
    margin: 0 auto;
    width: 100%;
    padding:0!important;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
p, li{
    font-size:14px !important;
}

section.privacy {
    max-width: 1480px;
    margin: 20px auto;
}
/*CTA Button*/

.quotes-btn {
  background-color: #d8232a;
  color: white;
  border: none;
  width: 400px;
  height: 45px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.right-controls {
  width: 100%;
  text-align: center;
  margin-top:20px;
}
@media (max-width: 768px){
    .quotes-btn {
    width: 100%;
}
}

/*Product-cta*/

.right-controls.product-btn {
    display: flex;
justify-content: space-evenly;
}
.product-btn .quotes-btn, .product-btn .whatsapp-contact{
    width:40%;
    margin-top:0px !important;
}
.product-btn .whatsapp-link{
    width:100%;
     background-color: #25d366;
    color: white;
    justify-content: center;
}

@media (max-width: 768px) {
      .right-controls.product-btn {
    display: block;
}
.product-btn .quotes-btn, .product-btn .whatsapp-contact{
    width:100%;
    margin-top: 20px !important;
}
    }


.top-bar, .main-header, .navbar {
    width: 100%;
}
.top-bar {
    background: #d8232a;
    color: #fff;
    padding: 8px 0 8px 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.top-bar .address {
    margin-left: 30px;
    font-size: 15px;
}
.dropdown>a:after {
    display: none;
    
}
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 40px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border-bottom: 4px solid #d8232a;
}
.logo img {
    height: 60px;
    width: auto;
}
.contacts {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.contact-block {
    flex-direction: column;
    font-size: 15px;
}
.contact-block .label {
    font-weight: 500;
    color: #fff;
    font-size: 13px;
}
.contact-block .number {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.2s;
}
.contact-block .number:hover {
    color: #f7f7f7;
    text-decoration: none;
}
.navbar {
    background: #fff;
}
.navbar .container {
    padding: 0;
    justify-content: flex-start;
    align-items: center;
}
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}
.nav-menu li {
    position: relative;
}
.nav-menu > li {
    margin: 0 12px;
}
.nav-menu > li.active > a,
.nav-menu > li > a:hover {
    color: #d8232a;
}
.nav-menu a {
    text-decoration: none;
    color: #222;
   font-size: clamp(12px, 14px, 18px);

    font-weight: 500;
    padding: 18px 0 16px 0;
    display: block;
    transition: color 0.2s;
}
.dropdown:hover > a {
    background: #f7f7f7;
    color: #d8232a;
}
.dropdown:hover .fa-caret-down {
    transform: rotate(180deg);
    transition: transform 0.2s;
}
.enquiry-btn {
    background: #d8232a;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    padding: 10px 24px;
    border-radius: 2px;
    margin-left: 30px;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}
.enquiry-btn:hover {
    background: #a81a1f;
    color:#ffffff!important;
}
/* Mega Dropdown Styles */
.mega-dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: linear-gradient(135deg, #fff 80%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    border: 1.5px solid #ececec;
    border-radius: 0 0 18px 18px;
    z-index: 20;
    padding: 20px 20px 20px 20px;
    min-height: 220px;
    opacity: 0;
    transform: scale(0.98) translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
}
.dropdown:hover .mega-dropdown {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}
.mega-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.mega-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 300px;
}
.mega-content ul li a {
    color: #222;
   font-size: clamp(12px, 16px, 18px);
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.mega-content ul li a:hover {
    color: #fff;
    background: #d8232a;
    text-decoration: none;
}
.mega-img {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    box-shadow: 0 4px 24px rgba(216,35,42,0.10);
    border-radius: 8px;
    background: #fff;
    padding: 8px;
}
/* Isolation Transformer Dropdown Customization */
.nav-menu > li:nth-child(5) > .mega-dropdown {
    width: 300px !important;
    padding: 36px 20px 36px 20px !important;
}
.nav-menu > li:nth-child(5) .mega-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 120px;
}
.nav-menu > li:nth-child(5) .mega-content ul {
    min-width: 220px;
    text-align: left;
}
@media (max-width: 1100px) {
    .container {
        flex-direction: column;
        align-items: stretch;
        padding: 0 10px;
    }
    .main-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px;
    }
    .main-header .container {
        flex-direction: row;
        justify-content: flex-end;
    }
    .logo {
        margin-bottom: 0;
    }
    .top-bar .address {
        margin-left: 0px;
        text-align: center;
    }
    .contacts {
        justify-content: center;
        gap: 10px;
        align-items: flex-start;
        font-size: 13px;
    }
    /* .navbar .container {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
    } */
    .nav-menu {
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nav-menu > li {
        margin: 0 0 8px 0;
    }
    .enquiry-btn {
        margin: 10px 0 0 0;
        width: 30%;
        text-align: center;
    }
    .mega-dropdown {
        width: 75vw !important;
        left: 0 !important;
        padding: 18px 8px !important;
        min-width: 0;
        border-radius: 0 0 12px 12px;
    }
    .mega-content {
        flex-direction: column !important;
        gap: 0px !important;
        align-items: stretch !important;
    }
    .mega-content ul {
        min-width: 0 !important;
        text-align: left !important;
    }
    .mega-img {
        margin-top: 18px;
        justify-content: flex-start;
        max-width: 100px;
    }
    .nav-menu > li:nth-child(5) .mega-content {
        flex-direction: column;
        gap: 18px;
    }
    .nav-menu > li:nth-child(5) .mega-content ul {
        min-width: 0;
    }
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 100;
        margin-right: 10px;
        margin-top: 0px;
    }
}
@media (max-width: 700px) {
    .container {
        padding: 0 3vw;
    }
    .menu-toggle{
        margin-top:0;
    }
    .main-header {
        padding: 10px;
    }
    .logo img {
        height: 50px;
    }
    
    .nav-menu a {
        font-size: 12px !important;
        padding: 12px 0 10px 0;
    }
    
        .enquiry-btn {
        font-size: 12px;
        margin-top: 0px;
        width: 35%;
        padding: 10px 10px;
    }
    .contacts {
        gap: 24px;
        display:none;
    }
    .contact-block .label {
        
        font-size: 12px;
    }
    .mega-img img {
        max-width: 70px !important;
    }
    .top-bar {
        font-size: 13px;
        gap: 12px;
        padding: 10px;
    }
    .top-bar .address {
        font-size: 12px;
    }
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    margin-right: 10px;
}
.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: #d8232a;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 100;
        margin-right: 10px;
        margin-top: 0px;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: -88px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        width: 100vw;
        max-width: 100vw;
        padding: 0 30px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        z-index: 99;
        display: none;

    }
    .nav-menu.open {
        display: flex;
    }
    .navbar .container {
        position: relative;
    }
}




/*hero*/

.owl-carousel {
      height: 70vh;
      position: relative;
    }

    .owl-slide {
      height: 70vh;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    .owl--text {
      position: absolute;
      bottom: 4em;
      left: 2em;
      width: 20em;
      padding: 1em;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 4px;
    }

    .owl-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .owl-nav button {
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 10px 15px;
      border: none;
      font-size: 18px;
      cursor: pointer;
      border-radius: 5px;
    }
    .owl-theme .owl-nav .owl-prev {
    left: 40px;
}
.owl-theme .owl-nav .owl-next {
    right: 40px;
}
.owl-theme .owl-nav .owl-next, .owl-theme .owl-nav .owl-prev {
    width: 50px;
    font-size: 32px;
    height: 50px;
    border:2px solid #dd2c2b;
}

    .owl-nav button:hover {
      background: rgba(0, 0, 0, 0.8);
    }
    @media (max-width: 1100px) {
        .owl-slide {
    height: 40vh;
}
.owl-carousel{
    height: 40vh;
}
    }
    
    @media (max-width: 700px) {
     .owl-slide {
    height: 20vh;
     background-size: contain;
}
.owl-carousel{
    height: 20vh;
}
        .owl-theme .owl-nav .owl-next, .owl-theme .owl-nav .owl-prev {
    width: 35px;
    font-size: 24px;
    height: 35px;
    border: 2px solid #dd2c2b;
}
   .owl-theme .owl-nav .owl-prev {
    left: 0px;
}
.owl-theme .owl-nav .owl-next {
    right: 0px;
}
    }
    
    
    
    
    /*Footer*/
.footer {
  background-color: #222;
  padding: 40px 20px 0px 20px;
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; /* Even gap between all footer sections */
  max-width: 1480px;
  margin: auto;
  align-items: start;
}

/* General section spacing fix */
.footer-container > div {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    margin-bottom: 20px;
}

/* Headings */
.footer h4 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Footer Links */
.footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
  margin: 0;
}

.footer a:hover {
  color: #d8232a !important;
}

/* Footer Text */
.footer p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
  margin: 0;
}

/* Contact Info */
.footer .contact-info p,
.footer .contact-info a {
  margin: 0;
  font-size: 13px;
}

.contact-info a {
  display: inline-block;
}

/* Footer Bottom Bar */
.footer-bot {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}
.footer-bot a{
    display:inline;
}

/* Logo and Social */
.footer-logo {
  text-align: center;
}

.footer-logo img {
  background: #fff;
  padding: 20px 40px;
  border-radius: 15px;
  max-width: 100%;
  height: auto;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 6px;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 50%;
}

.social-icons a:hover {
  color: #d8232a;
}

/* === Cities We Serve Section === */
.city-list {
  color: #ccc;
}

.city-list h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.city-columns {
  display: flex;
  gap: 30px;
}

.city-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.city-columns li {
  margin: 0;
}

.city-columns a {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.city-columns a:hover {
  color: #d8232a;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .city-columns {
    flex-direction: column;
    gap: 20px;
  }
}




    /* Scroll to Top Button */
    #scrollToTop {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #d8232a;
      color: #fff;
      border: none;
      border-radius: 50%;
      padding: 12px 18px;
      font-size: 18px;
      cursor: pointer;
      z-index: 1000;
      display: none;
    }

    #scrollToTop:hover {
      background-color: #a5161b;
    }

    /* WhatsApp Floating Icon */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      left: 20px;
      z-index: 1000;
    }

   .whatsapp-float a {
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 18px;
    display: inline-block;
    transition: background 0.3s;
}

    .whatsapp-float a:hover {
      background: #1ebd5a;
    }

    @media (max-width: 768px) {
          #scrollToTop, .whatsapp-float a {
        padding: 8px 12px;
        font-size: 16px;
    }
    #scrollToTop {
      bottom: 70px;
      right: 10px;
      }
    }
    
    /*Service-section*/
    
    .service-section {
      padding: 60px 20px;
      background-color: #f8f8f8;
    }

    .container {
      max-width: 1480px;
      margin: 0 auto;
    }

    .service {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: space-between;
    }

    .service-box {
      flex: 1 1 calc(33.333% - 20px);
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      display: flex;
      padding: 20px;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .service-icon {
      font-size: 32px;
      color: #d8232a;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .service-content h4 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: bold;
    }

    .service-content p {
      margin: 0;
      color: #555;
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .service-box {
        flex: 1 1 100%;
      }
    }
    
    /*About*/
    
    .about-section {
  padding: 50px 20px;
  position: relative;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url(./Image/abstract-bg.webp);
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 1480px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  position: relative;
  width: 35%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.experience-badge {
  position: absolute;
  bottom: 50px;
  left: 0px;
  background: white;
  padding: 20px 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.about-1 .experience-badge {
        bottom: -30px;
    }

.experience-badge strong {
  font-size: 24px;
  color: #d10000;
}

.experience-badge span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

.about-text {
  flex: 1.3;
}

.about-text h4 {
  color: #d10000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: #d10000;
  margin: 10px 0 20px;
  border: none;
}

.about-text p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.call-us {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
}

.phone-icon {
  font-size: 20px;
  color: white;
  background: #d10000;
  padding: 10px;
  border-radius: 50%;
}

.call-us strong {
  color: #d10000;
  font-size: 18px;
}
@media (max-width: 768px) {
  
  .about-image {
    width: 100%;
  }
  .about-section {
    padding: 30px 20px;
  }
  .about-text h2 {
    font-size: 22px;
  }
  .experience-badge strong{
      font-size:18px;
  }
  .experience-badge span {
    font-size: 10px;
}
.experience-badge {
    bottom: 60px;
    left: 0px;
    padding: 10px 30px;
}
.about-1 .experience-badge {
        bottom: -15px;
        left: 0px;
        padding: 20px 30px;
    }
}
    
    
    /*Product Section*/
    
    .products-section {
      padding: 60px 20px;
      background-color: #f9f9f9;
      justify-items: center;
    }

    .products-section .grid-container{
        width: 80%;
    }
     .products-section h2 {
      text-align: center;
      font-size: 32px;
      font-weight:800;
      margin-bottom: 40px;
    }

    .view-more {
      text-align: center;
      margin-top: 40px;
    }

    .view-more a {
      display: inline-block;
      padding: 12px 24px;
      background-color: #d8232a;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .view-more a:hover {
      background-color: #b71c22;
    }

    @media (max-width: 576px) {
      .products-section h2 {
         font-size: 22px;
      font-weight:800;
      }
       .products-section .grid-container{
        width: 100%;
    }
    }
    
    /*Client*/
    
    .section-padding {
  padding: 60px 20px;
  background-color: #f9f9f9; 
}

/* Flex layout */
.work-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.work-sector {
  text-align: center;
}

.work-sector h2 {
  margin-bottom: 40px;
  text-transform: uppercase;
    letter-spacing: 1px;
    color: #b30101;
    font-size: 32px;
    line-height: 1;
    padding: 0;
}

.work-sector img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .work-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .work-sector h2 {
    font-size: 20px;
  }
}

/*section-wrapper*/
.section-wrapper {
      max-width: 1480px;
      margin: 40px auto;
      padding: 0px 20px;
      
    }

    .section-wrapper h1 {
      text-align: center;
      color: #d8232a;
      margin-bottom: 20px;
      font-size: 32px;
      font-weight: 700;
    }

    .section-wrapper p {
      text-align: justify;
      margin-bottom: 18px;
      font-size: 16px;
      line-height: 1.8;
    }

    .features {
      margin-top: 30px;
      padding-left: 20px;
    }

    .features p {
      position: relative;
      padding-left: 25px;
      margin-bottom: 12px;
    }

    .features p::before {
      content: "✔";
      color: #2d943e;
      position: absolute;
      left: 0;
      top: 0;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .section-wrapper {
        padding: 30px 20px;
      }

      .section-wrapper h1 {
        font-size: 22px;
        text-align: left;
    }
      .section-wrapper {
      margin: 0px auto;
      
    }
    }
    
    
    /*Key Feature*/
    
    
    .grey-section {
      background-color: #f0f2f5;
      padding: 60px 20px;
    }

    .section-title {
      text-align: center;
      color: #d8232a;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .container {
      max-width: 1480px;
      margin: 0 auto;
      padding: 0 20px;
    }

    ul.feature-list {
      list-style: none;
      padding-left: 0;
    }

    ul.feature-list li {
      background: #fff;
      margin-bottom: 16px;
      padding: 15px 20px;
      border-left: 6px solid #d8232a;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      font-size: 18px;
      line-height: 1.6;
      transition: transform 0.3s;
    }

    ul.feature-list li:hover {
      transform: translateX(5px);
    }

    ul.feature-list li b {
      color: #000;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 22px;
      }

      ul.feature-list li {
        font-size: 14px;
      }
    }
    
    
    /*section-title*/
    
    .section {
        max-width:1480px;
      padding: 40px 20px;
      margin:20px auto;
    }

    .section-title {
      text-align: center;
      font-size: 32px;
      color: #d8232a;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .section p {
     
      margin: 0 auto 40px auto;
      font-size: 16px;
      line-height: 1.7;
      text-align: justify;
      color: #444;
    }

    .carousel-container {
      
      margin: 0 auto;
    }

    .post-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 25px;
    }

    .blog-post {
      background-color: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .blog-post:hover {
      transform: translateY(-5px);
    }

    .post-media img {
      width: 100%;
      height: 250px;
      display: block;
      object-fit: cover;
    }

    .post-details {
      padding: 20px;
    }

    .post-title {
      font-size: 18px;
      font-weight: 600;
      color: #d8232a;
      margin-bottom: 10px;
    }

    .post-title a {
      color: inherit;
      text-decoration: none;
    }

    .post-details p {
      font-size: 14px;
      line-height: 1.6;
      color: #555;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 22px;
      }

      .post-title {
        font-size: 16px;
      }

      .section p {
        font-size: 14px;
      }
    }
    
    
    /*Breadcrum*/
    
    
    section.page-header.text-center.bg-dark.text-white.py-5 {
    padding: 100px 0px !important;
}
.bread-1 {
    margin: 0px 0px 0px 210px !important;
    max-width: 300px !important;
}
    
.breadcrumb {
    font-size: 16px;
    background: #f1f5f9;
    padding: 12px 20px;
    margin: 10px auto;
    padding: 15px;
    max-width: 1480px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex
;
    align-items: center;
    gap: 4px;
}

.breadcrumb a {
  color: #0065A7;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: #000000;
}

.breadcrumb .divider {
  color: #888;
  font-size: 16px;
}

.breadcrumb .current {
  color: #333;
  font-weight: 600;
}

.breadcrumb .home-icon {
  margin-right: 5px;
}
@media (max-width: 600px) {
      .breadcrumb {
  font-size: 12px;
  padding: 10px 14px;
  margin: 0px 10px !important;
    }
    section.page-header.text-center.bg-dark.text-white.py-5 {
    padding: 50px 0px !important;
}
.bread-1 {
    max-width: 170px !important;
}
}

/*Servo Stabilizer pAge*/

.category-container {
    max-width: 1480px;
    margin: auto;
    padding: 30px 15px;
  }
a.grid-link {
    text-decoration: none;
    display: flex
;
    gap: 2%;
    justify-content: center;
    cursor: pointer;
}

  /* Section Title */
  .section-title {
    font-size: 30px;
    color: #d8232a;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
  }

  /* Grid Styles */
  .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }

  .grid-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
  }

  .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(216, 35, 42, 0.2);
  }

  .grid-item img {
    width: 100%;
    height: 300px;
    border-radius:12px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s;
background: linear-gradient(to right, #dd1818, #333333); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  }

  .grid-item p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }

    
    /*testing*/
    
    .product-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      background: #ffffff;
      padding: 30px 50px;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
      max-width: 1480px;
      margin: 20px auto;
      padding:0 20px;
    }
.product-slider {
      max-width: 400px;
      margin: auto;
      position: relative;
    }

    .slider-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .slides {
      display: flex;
      width: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .slides img {
      width: 100%;
      flex-shrink: 0;
      object-fit: cover;
      border-radius: 10px;
      background: linear-gradient(to right, #dd1818, #333333) !important;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      font-size: 24px;
      padding: 4px 16px;
      cursor: pointer;
      border: none;
      z-index: 10;
      border-radius: 50%;
    }

    .arrow.left {
      left: 10px;
    }

    .arrow.right {
      right: 10px;
    }

    .thumbnails {
      display: flex;
      justify-content: center;
      margin-top: 15px;
      gap: 10px;
      flex-wrap: wrap;
    }

    .thumbnails img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border: 2px solid transparent;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .thumbnails img.active {
      border-color: #d8232a;
    }

    @media (max-width: 600px) {
      .arrow {
        font-size: 18px;
        padding: 6px 10px;
      }

      .thumbnails img {
        width: 60px;
        height: 45px;
      }
    }

  .product-details {
    flex: 1 1 400px;
    padding: 50px;
}

    .product-details h2 {
      font-size: 28px;
      margin-bottom: 10px;
      color: #d8232a;
    }

    .price {
      font-size: 24px;
      color: #c62828;
      margin: 10px 0;
    }

    .product-details p {
      margin: 15px 0;
      line-height: 1.6;
    }

    .product-details button {
    background: #d8232a;
    color: #ffffff;
    padding: 8px 25px;
    border: 2px solid #d8232a;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    width: 50%;
}

    .product-details button:hover {
      background: #ffffff;
      color: #d8232a;
      border: 2px solid #d8232a;
    }

    .specifications {
      background: #ffffff;
      margin: 20px auto;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
      max-width: 1480px;
    }

    .specifications h3 {
      font-size: 24px;
      margin-bottom: 20px;
      color:#d8232a;
      border-bottom: 2px solid #eee;
      padding-bottom: 10px;
    }

    .spec-table {
      width: 100%;
      border-collapse: collapse;
    }

    .spec-table th,
    .spec-table td {
      text-align: left;
      padding: 12px 10px;
      vertical-align: top;
      font-size: 16px;
    }

    .spec-table th {
      width: 30%;
      color: #333;
    }

    .spec-table tr:nth-child(even) {
      background-color: #f9f9f9;
    }

    @media (max-width: 768px) {
      .product-container {
        flex-direction: column;
      }

      .thumbnail-wrapper {
        justify-content: flex-start;
      }
      .product-details {
    padding: 0px;
}
    }
    
    /*Related*/
    
    .related-products, .about-container {
    max-width: 1480px;
   margin: 60px auto 20px;
    padding: 0px;
  }
  .bg-light {
    background-color: #d8232a !important;
}
  
  .about-container {
      margin: 0px auto;
  }
  .about-container h2{
      color: #d8232a;
      font-weight:700;
  }
  .core{
    color: #fff !important;

}
  .about-container .col-md-6 {
        text-align: justify;
    }
section.py-5 {
    padding: 30px !important;
    padding-bottom: 60px !important;
}
.mt-4
Specificity: (0,1,0)
 {
    margin-top: 0 !important;
}
  .related-products h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #d8232a;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
  }

  .related-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .related-item {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .related-item:hover {
    transform: translateY(-6px);
  }

 .related-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #dd1818, #333333);
}

  .related-item h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #d8232a;
  }

  .related-item p {
    font-size: 16px;
    color: #c62828;
    margin-bottom: 15px;
  }

 .related-item button, .Desc-btn {
    background: #d8232a;
    color: #fff;
    padding: 8px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

  .related-item button:hover {
    background: #b91f24;
  }

  @media (max-width: 480px) {
    .related-products h3 {
      font-size: 20px;
    }
    .related-products {
    padding: 0 20px;
    
  }

    .related-item h4 {
      font-size: 16px;
    }

    .related-item p {
      font-size: 15px;
    }

    .related-item button {
      font-size: 14px;
      padding: 8px 16px;
    }
  }
  
  
  
  
  /*About-US*/
  
  
  h1.section-title {
      font-size: 2rem;
      font-weight: 700;
      color: #d8232a;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    p.section-subtitle {
      color: #666;
      margin-bottom: 2rem;
      text-align: center;
    }

  .highlight-card, .counter-box, .team-card, .testimonial-box {
    background: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 30%);
    height: 100%;
}

    .highlight-card:hover,
    .testimonial-box:hover {
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }

    .counter-number {
      font-size: 32px;
      font-weight: 700;
      color: #d8232a;
    }

    .timeline {
    border-left: 10px solid #d8232a;
    padding-left: 20px;
    padding: 30px;
    box-shadow: 2px 2px 10px;
    border-radius: 12px;
}

    .timeline-item {
      margin-bottom: 25px;
    }

    .timeline-item h5 {
      font-weight: 600;
      color: #d8232a;
    }

    .team-card img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .testimonial-box {
      text-align: center;
      font-style: italic;
    }

    .cta-section {
      background: #d8232a;
      color: white;
      padding: 50px 15px;
      text-align: center;
    }

    .cta-section h2 {
      font-weight: 700;
      font-size: 28px;
      margin-bottom: 10px;
    }
    .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.container.team {
    display: block;
}
    @media (max-width: 768px) {
      .page-header h1 {
        font-size: 2rem;
      }

      .cta-section h2 {
        font-size: 22px;
      }
      .col-md-6 {
        text-align: justify;
    }
    .about-container {
    margin: 10px auto;
    padding: 0 20px;
}
h2.section-title {
      font-size: 18px;
    }
    h1.section-title {
    font-size: 18px;
    margin: 30px 0 10px 0;
}
    }
    
    
    /*Contact-us*/
    
    .page-header {
      background: url('/assets/images/about-us.webp') center/cover no-repeat;
      padding: 80px 20px;
      color: white;
      text-align: center;
    }

    .page-header h1 {
      font-size: 38px;
      text-transform: uppercase;
      margin: 0;
    }

    .contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1480px;
      margin: 50px auto;
      padding: 0 20px;
      gap: 30px;
    }

    .contact-main, .contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      flex: 1 1 48%;
    }
    .contact-footer{
        box-shadow: none !important;
    }
    .popup .contact-form{
        box-shadow: none !important;
    }
.captcha-input {
    width: 60%;
}
   .contact-main h3 {
    font-size: 32px;
    color: #d8232a;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid #d8232a;
    padding-bottom: 8px;
}

    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .info-item .icon {
      font-size: 24px;
      margin-right: 15px;
      color: #d8232a;
      flex-shrink: 0;
      min-width: 30px;
      text-align: center;
    }

    .info-item div {
      font-size: 16px;
    }
    .info-item strong {
    font-size: 24px;
    color: #005daa;
}

    .info-item a {
      color: #333;
      text-decoration: none;
      display: inline-block;
    }

    .info-item a:hover {
      color: #d8232a;
      text-decoration: underline;
    }

    form h3 {
      margin-bottom: 20px;
      color: #d8232a;
      font-size: 32px;
       border-bottom: 2px solid #d8232a;
    padding-bottom: 8px;
    }


  .form-group {
    margin-bottom: 20px;
    width: 49%;
    display: inline-block;
}
.form-captcha{
    width:100%;
}
.captcha {
    display: flex
;
    gap: 2%;
}
.captcha input {
    width: 60% !important;
    margin-top: 10px;
}
@media (max-width: 768px) {
      .captcha {
    display: block;
}
.captcha-input {
    width: 100%;
}
      }
/*.form-text {*/
/*    width: 100%;*/
/*    margin: -5px 0px 5px 0px;*/
/*}*/
/*iframe {*/
/*    width: 100%;*/
/*    height: 90px !important;*/
/*    border: none;*/
/*}*/
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 80px;
    resize: vertical;
  }

  .contact-button {
    background-color: #005daa;
    color: white;
    padding: 12px 25px;
    border: none;
    width:100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-button:hover {
    background-color: #b91b23;
  }

  .success-message,
  .error-message {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
  }

  .success-message {
    background-color: #e7f6e7;
    border: 1px solid #4caf50;
    color: #2e7d32;
  }

  .error-message {
    background-color: #fdecea;
    border: 1px solid #f44336;
    color: #c62828;
  }

    .map-container {
      margin:0;
      height: 400px;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

/*PopUp*/

.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* for mobile spacing */
  box-sizing: border-box;
  align-content: center;
}

.popup-content {
  background: white;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.popup-content input,
.popup-content button {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
  box-sizing: border-box;
}

.popup-content button {
  background-color: #d8232a !important;
  color: white;
  border: none Important;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-content button:hover {
  background-color: #004080;
}

.close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 24px;
  cursor: pointer;
}

/* WhatsApp Contact Button */
.whatsapp-contact {
  margin-top: 20px;
  text-align: center;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #25d366; /* WhatsApp Green */
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #25d366;
  color: white !important;
}

.whatsapp-link i {
  margin-right: 8px;
  font-size: 1.2rem;
}



.contact-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 40px 20px;
      background: #ffffff;
    }

    .map-section,
    .form-section {
      flex: 1 1 100%;
    }

    .map-section iframe {
      width: 100%;
      height: 450px;
      border: none;
      border-radius: 10px;
    }

    .form-section {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .form-section h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 28px;
      color: #173825;
    }

    .form-box {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .form-box input {
      padding: 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
    }

    .form-box button {
      background-color: #d8232a;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .whatsapp-info {
      margin-top: 20px;
      text-align: center;
    }

    .whatsapp-btn {
      color: #25D366;
      font-size: 16px;
      text-decoration: none;
      font-weight: bold;
    }

    .whatsapp-btn i {
      margin-right: 8px;
    }

    @media (min-width: 768px) {
      .contact-wrapper {
        flex-wrap: nowrap;
      }

      .map-section,
      .form-section {
        flex: 1 1 50%;
      }

      .form-section {
        max-width: 500px;
        margin: auto;
      }
      .floating-icons {
    display: none;
  }
  .bottom-bar {
    display: flex;
  }
    }

    @media (max-width: 480px) {
      .form-section h2 {
        font-size: 22px;
      }

      .form-box button {
        width: 100%;
      }
    }
    
    
    
    
    
    /*Service-location*/
    
    .location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.location-card {
  display: block;
  border: 2px solid #d8232a;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  background: #fff;
  transition: transform 0.2s ease;
}

.location-card:hover {
  transform: scale(1.02);
}

.location-card iframe {
  width: 100%;
  height: 200px;
  pointer-events: none;
  border: none;
}

.location-card span {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  background: #d8232a;
  color: white;
  padding: 12px;
}




/* Bottom-bar */

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d8232a;
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  z-index: 999;
}

.bottom-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.bottom-bar a i {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.bottom-bar a.whatsapp {
  color: #25d366;
}

.bottom-bar a.call {
  color: #fff;
}

.bottom-bar a.enquire {
  color: #fff;
}

/* Floating Right Bottom Icons */

.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.floating-icons a.call {
  background-color: #d8232a; /* Call blue */
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.floating-icons i {
  font-size: 22px;
}

@media (max-width: 768px){
    .bottom-bar {
    display: flex;
  }
  .floating-icons {
    display: none;
  }
}

/*servo-stabilizer-description css*/


/* Main Container */
.product-overview {
  max-width: 1480px;
  margin: 30px auto;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(216, 35, 42, 0.12);
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Heading */
.product-overview h1 {
  font-size: 36px;
  color: #d8232a;
  /*text-align: center;*/
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* Section Titles (NO BORDER / BACKGROUND) */
.product-overview h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #d8232a;
}

/* Subheadings (NO BORDER / BACKGROUND) */
.product-overview h3 {
  font-size: 22px;
  font-weight: 700;
  color: #d8232a;
  margin: 30px 0 15px;
}

/* Paragraphs */
.product-overview p {
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

/* Links */
.product-overview a {
  color: #d8232a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}
.product-overview a:hover {
  color: #a31319;
  text-decoration: underline;
}

/* Lists */
.product-overview ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}
.product-overview ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}
.product-overview ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #d8232a;
  font-size: 16px;
  font-weight: bold;
}

/* FAQ Section */
.faq-section {
  background: #fff9f9;
  border-radius: 15px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(216, 35, 42, 0.1);
  animation: fadeUp 1.2s ease forwards;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-section h2 {
  color: #d8232a;
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-question {
  background: #ffffff;
  padding: 18px 22px;
  border-left: 4px solid #d8232a;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #fff3f3;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 22px;
  font-size: 22px;
  color: #d8232a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease;
  padding: 0 22px;
  border-left: 4px solid #d8232a;
}

.faq-item.active .faq-answer {
  padding: 16px 22px;
  max-height: 500px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-overview {
        padding: 0px 15px 20px 15px;
        margin: 20px 15px;
    }

  .product-overview h1 {
    font-size: 18px;
  }

  .product-overview h2 {
    font-size: 16px;
  }

  .product-overview h3 {
    font-size: 14px;
  }

  .faq-section {
    padding: 20px 10px;
  }
  .faq-question{
      padding:12px;
      font-size:16px;
  }
}


/*admin-login*/

            .login-box {
            background: #fff;
            padding: 30px;
            width: 100%;
            max-width: 350px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 10px;
        }

        .login-box h2 {
            margin: 0 0 20px;
            text-align: center;
            color: #000;
        }

        .login-box input[type="text"],
        .login-box input[type="password"] {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }


        .error {
            color: red;
            text-align: center;
            margin-bottom: 10px;
        }
        .admin-login {
    justify-items: center;
    align-content: center;
    align-items: center;
    height: 80vh;
    max-height: 100%;
}

/*admin dahsboard*/

.dash-container {
    max-width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 90vh;
    overflow-x: auto;
    max-height: 100%;
}

.dash-container h2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.logout,
.export-btn {
    background-color: #d8232a;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    overflow-x: auto;
}

th,
td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
    white-space: nowrap;
}

.pagination {
    margin-top: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 4px 3px;
    text-decoration: none;
    background-color: #eee;
    color: #333;
    border-radius: 4px;
}

.pagination a.active {
    background-color: #173825;
    color: white;
}

@media (max-width: 768px) {
    .dash-container {
        padding: 20px 15px;
    }

    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }

    table {
        margin-top: 15px;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 10px;
        background-color: #f9f9f9;
    }

    td {
        text-align: right;
        position: relative;
        padding-left: 0%;
        border: none;
        border-bottom: 1px solid #ddd;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        padding-right: 10px;
        font-weight: bold;
        text-align: left;
        white-space: nowrap;
    }

    .logout, .export-btn {
        width: 100%;
        text-align: center;
    }

    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}
