
/* contact */

/* Force contact section background to white and text to black */
.rs-contact-area.rs-contact-one {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Make headings and paragraphs black */
.rs-contact-area.rs-contact-one .rs-contact-wrapper,
.rs-contact-area.rs-contact-one .rs-contact-wrapper * {
    color: #000000 !important;
}

/* Override specific title, subtitle and form title */
.rs-contact-area.rs-contact-one .rs-section-subtitle,
.rs-contact-area.rs-contact-one .rs-section-title,
.rs-contact-area.rs-contact-one .rs-contact-form-title,
.rs-contact-area.rs-contact-one .descrip,
.rs-contact-area.rs-contact-one p,
.rs-contact-area.rs-contact-one h2,
.rs-contact-area.rs-contact-one h3,
.rs-contact-area.rs-contact-one h6,
.rs-contact-area.rs-contact-one span,
.rs-contact-area.rs-contact-one a {
    color: #000000 !important;
}

/* Form background white and text black */
.rs-contact-form {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Form input and textarea text color */
.rs-contact-form input,
.rs-contact-form textarea {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #cccccc !important; /* light border for visibility */
}

/* Change placeholder text color to black */
.rs-contact-form input::placeholder,
.rs-contact-form textarea::placeholder {
    color: #000000 !important;
}

/* Buttons text color black, background white, and border */
.rs-contact-form .rs-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

/* Change contact list icon background if needed */
.rs-contact-icon span,
.rs-contact-icon svg path {
    fill: #000000 !important;
}

/* Make Send Message button red */
.rs-contact-form .rs-btn {
    background-color: #be2525!important; /* bright red */
    color: #ffffff !important;            /* white text for contrast */
    border: 1px solid #be2525 !important; /* optional: red border */
}


/* testimonial */

/* Make testimonial section background white and text black */
.rs-testimonial-area.rs-testimonial-one {
    background-color: #ffffff !important;
    color: #000000 !important;
}

/* Make all text inside testimonial area black */
.rs-testimonial-area.rs-testimonial-one *,
.rs-testimonial-area.rs-testimonial-one h2,
.rs-testimonial-area.rs-testimonial-one p,
.rs-testimonial-area.rs-testimonial-one span,
.rs-testimonial-area.rs-testimonial-one a,
.rs-testimonial-area.rs-testimonial-one h6 {
    color: #000000 !important;
}

/* Make "More Reviews" button red with black text */
.rs-testimonial-btn .rs-btn {
    background-color: #e9e1e1 !important; /* red */
    color: #000000 !important;           /* black text */
    border: 1px solid #e9e1e1 !important;
}

/* Testimonial boxes red background and black text */
.rs-testimonial-item {
    background-color: #d6d3d3!important; /* red box */
    color: #000000 !important;            /* black text inside */
    border: none !important;
}

/* Make text inside testimonial boxes black */
.rs-testimonial-item *,
.rs-testimonial-item p,
.rs-testimonial-item h6,
.rs-testimonial-item span {
    color: #000000 !important;
}

/* Optionally: fix avatar background if needed */
.rs-testimonial-avater-thumb img {
    background-color: transparent !important;
}

/* footer */
/* Footer area background red and text black */
.rs-footer-area.rs-footer-two {
    background-color: #a5a0a0  !important;
    color: #000000 !important;
}

/* Make all text and links inside footer black */
.rs-footer-area.rs-footer-two *,
.rs-footer-area.rs-footer-two a,
.rs-footer-area.rs-footer-two h5,
.rs-footer-area.rs-footer-two p,
.rs-footer-area.rs-footer-two span {
    color: #000000 !important;
}

/* Make social icons black too */
.rs-footer-widget-social a i {
    color: #000000 !important;
}


.rs-banner-title {
    color: #000000 !important;
}

/* product page */

.rs-shop-product-page { display: none; }
  .rs-shop-product-page.active { display: block; }
  .rs-page-link.current { font-weight: bold; color: #000; }


.product-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  height: 100%;  /* make all cards same height */
}

.product-item img {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-item h4 {
  margin-bottom: 8px;
}

.product-item p {
  margin-bottom: 10px;  /* small space */
}

.custom-readmore-btn {
  margin-top: auto !important;   /* push button to bottom */
  margin-bottom: 0 !important;
  align-self: center;            /* center button horizontally */
  background-color: white;
  color: black;
  border: 1px solid black;
  padding: 8px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.custom-readmore-btn:hover {
  background-color: #be2525;
  color: #fff;
  border-color: #be2525;
}


.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-img {
  max-height: 180px;
  object-fit: contain;
}

/* .custom-readmore-btn {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}

.custom-readmore-btn:hover {
  background-color: #be2525;
  color: #fff;
  border-color: #be2525;
  transform: scale(1.05);
}

.custom-enquiry-btn {
  background-color: #fff;
  color: #28a745;
  border: 1px solid #28a745;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}

.custom-enquiry-btn:hover {
  background-color: #28a745;
  color: #fff;
  border-color: #28a745;
  transform: scale(1.05);
} */

.button-row {
  display: flex;
  justify-content: center;
  gap: 10px; /* spacing between buttons */
  flex-wrap: wrap;
  margin-top: 15px;
}

.custom-readmore-btn,
.custom-enquiry-btn {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Read More button style */
.custom-readmore-btn {
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: inline-block;
}

.custom-readmore-btn:hover {
  background-color: #be2525;
  color: #fff;
  border-color: #be2525;
  transform: scale(1.05);
}

/* Enquiry button style */
.custom-enquiry-btn {
  background-color: #fff;
  color: #28a745;
  border: 1px solid #28a745;
}

.custom-enquiry-btn:hover {
  background-color: #28a745;
  color: #fff;
}





footer,.products-section,.rs-services-details-title,.sidebar-widget-title {
  margin-top: 60px;  /* adjust to the space you want */
}

/* product-details page */
.force-style {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 10px !important;
}

.force-style img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}


/* index-banner-section */
/* Reduce overall banner height */

.rs-banner-item {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.rs-banner-item-wrapper {
  height: 750px; /* You can adjust this value to 400px or less if needed */
  position: relative;
  display: flex;
  align-items: center;
}

/* Ensure background covers evenly */
.rs-banner-bg-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Keep content above the background */
.rs-banner-content {
  position: relative;
  z-index: 2;
}

/* Optional: Adjust padding inside content if needed */
.rs-banner-content .rs-banner-title {
  font-size: 36px;
}

.rs-banner-content .rs-banner-subtitle {
  font-size: 16px;
}

.rs-banner-descrip p {
  font-size: 15px;
  margin-bottom: 20px;
}

.rs-banner-subtitle {
  color: #be2525 !important;
}

.rs-header-logo img {
    height: 80px !important;
    max-height: none !important;
    width: auto;
}

.icon-box svg path {
    fill: black;
}


.image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically if needed */
    padding: 20px;           /* Optional: add spacing around image */
    box-sizing: border-box;
}

.image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;     /* Optional: for smooth corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
}


.backtotop-wrap:hover .backtotop-circle path {
    stroke: red !important;
}

.backtotop-wrap .backtotop-circle path {
    transition: stroke 0.3s ease;
}

/* Force the arrow icons to be red */
.rs-banner-navigation .rs-swiper-btn i {
    color: #be2525 !important;
    font-size: 18px; /* optional: ensure size is visible */
}

/* Style the button itself */
.rs-banner-navigation .rs-swiper-btn {
    border: 2px solid #be2525 !important;
    background-color: transparent !important;
    color: #be2525 !important;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0;
}

/* On hover: red background, white icon */
.rs-banner-navigation .rs-swiper-btn:hover {
    background-color: #be2525 !important;
    color: #fff !important;
}

.rs-banner-navigation .rs-swiper-btn:hover i {
    color: #fff !important;
}


/* Disable the dropdown icon */
.no-dropdown > a::after {
    content: none !important;
}

/* Prevent dropdown behavior if JS/CSS is used on hover */
.no-dropdown:hover > .sub-menu,
.no-dropdown .sub-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.rs-testimonial-item {

    overflow: hidden;
    padding: 20px;
    background-color: #fff; /* ensure background exists */

    transition: all 0.3s ease;
     border-radius: 30px;     /* Optional: for smooth corners */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
}

.rs-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


.rs-banner-content {
  background-color: rgba(0, 0, 0, 0.2); /* lighter transparent black */
  padding: 30px;
  border-radius: 10px;
}


.rs-work-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px; /* space between number/title and description */
    margin-bottom: 30px;
}

.rs-work-step-number {
    flex-shrink: 0;
    width: 40px;
    font-weight: bold;
    font-size: 18px;
}

.rs-work-step-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.rs-work-step-descrip {
    flex: 1;
}

.rs-work-step-text-block {
    flex: 1;
}


.rs-contact-form::before,
.rs-contact-form::after,
.rs-contact-form-title::before,
.rs-contact-form-title::after,
.rs-contact-form-area::before,
.rs-contact-form-area::after {
    display: none !important;
    border: none !important;
    background: none !important;
}



@media (min-width: 992px) {
  .offcanvas-area,
  .offcanvas-overlay,
  .offcanvas-overlay-white {
    display: none !important;
  }
}

/* 21 08 2025 */
/* client */
.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 20px;
}

.client-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 200px;
}

.client-card img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.client-card p {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    word-wrap: break-word;
    max-width: 100%;
}

/* Hover effect */
.client-card:hover {
    transform: translateY(-5px);
}

/* Responsive: 3 cards per row on tablets, 2 on phones */
@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* sidebar contact enquiry  */


/* av css */

#feedbackp .float, #feedbackq a, #feedbackw .float {
    padding-bottom: 8px;
    border-radius: 8px
  }

  @media only screen and (max-width:768px) {
    .avdesk {
        display: none !important
    }

    .number-title {
        font-size: 60px;
        font-weight: 500;
        line-height: 1
    }

    .min-height-70vh {
        min-height: 19vh
    }

    .owl-buttons {
        display: none
    }
  }

  @media only screen and (max-width:600px) {
    #feedbackp, #feedbackq, #feedbackw {
        position: initial !important;
        width: 100% !important;
        display: inline-block;
        height: initial !important;
        -webkit-transform: initial !important
    }

    .main-menu-wrapper__call-icon1 {
        display: inline;
        margin-left: 30px;
        height: 50px;
        width: 50px;
        background-color: #f3f3f3;
        font-size: 30px;
        color: #ea1414;
        align-items: center;
        justify-content: center;
        -webkit-transition: .5s;
        transition: .5s
    }

    .div1, .popup {
        width: 100%
    }

    .popup {
        padding: 0
    }

    .popup .close {
        top: 10px
    }

    .site-footer__bottom {
        padding-bottom: 65px
    }
  }

  @media only screen and (min-width:1200px) {
    .avmob {
        display: none !important
    }

    .main-menu-wrapper__call-icon1 {
        display: none
    }
  }

  #feedback1 {
    height: 0;
    width: 85px;
    position: fixed;
    right: 0;
    top: 30%;
    z-index: 1000;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg)
  }

  #feedbackq, #feedbackw {
    transform: rotate(-90deg);
    height: 0;
    right: -9px;
    position: fixed;
    z-index: 1000
  }

  #feedbackq {
    top: 40%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg)
  }

  #feedbackw {
    top: 56%;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg)
  }

  #feedbackp {
    height: 0;
    position: fixed;
    right: -9px;
    top: 72%;
    z-index: 1000;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg)
  }

  #feedbackp .float, #feedbackq a, #feedbackw .float {
    display: block;
    background: #ff9c00;
    padding-top: 9px;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(20, 22, 136, 0.25)
  }

  #feedbackq a {
    margin: 1px
  }

  #feedbackw .float {
    background-color:#017d03;
    margin: 1px
  }

  #feedbackp .float {
    background-color: #db0d0d;
    margin: 1px
  }

  #quickenquire textarea.form-control.form-textarea {
    font-size: 14px
  }

  #quickenquire label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 !important;
    margin: 0 !important
  }

  #quickenquire input[type=submit] {
    width: 100%;
    background-color: #00495d;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 7px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer
  }

  #quickenquire .form-group {
    margin-bottom: 20px
  }

  @media screen and (max-width:730px) {
    .sideav {
        order: 2 !important
    }

    .avspc {
        display: none !important
    }
  }

  .page-header1 img {
    width: 100%;
    height: 70vh
  }

  .div1 .popup {
    overflow: scroll
  }

  .info {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-evenly
  }

  #feedbackp, #feedbackq, #feedbackw {
    width: 7%;
    background-color: #e1e1e1
  }
  /* av css end */

  

/* Base styling for menu items */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a {
    display: inline-block;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.menu-item-has-children > a .dropdown-icon {
    margin-left: 5px;
    font-size: 10px;
}

/* Dropdown styles */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #eee;
    padding: 10px 0;
    display: none;
    min-width: 220px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* Individual submenu item */

/* Dropdown container */
.sub-menu {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0;
    margin: 0;
    min-width: 200px;
    list-style: none;
}

/* Each menu item */
.sub-menu li {
    border-bottom: 1px solid #eaeaea;
}

.sub-menu li:last-child {
    border-bottom: none; /* remove border on last */
}

/* Link inside item */
.sub-menu li a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

/* Hover effect */
.sub-menu li a:hover {
    background-color: #f9f9f9;
    color: #e30613; /* or any highlight color */
}


/* certificate */

 .certificate-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.section-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}

.card-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  text-align: center;
}

.card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 4px;
}

.card h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  font-size: 14px;
  color: #555;
} 
 

/* Lightbox default hidden */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

/* Mobile optimization */
/* @media (max-width: 767px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .close-lightbox {
        font-size: 32px;
        right: 20px;
    }
} */

@media (max-width: 767px) {
  .modal {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .modal-content {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    max-height: 90vh;
    object-fit: contain;
    margin: auto;
  }

  .modal-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #fff;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
  }
}






/* banner mobile  */

/* @media (max-width: 767px) {
  .rs-banner-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto; 
    padding: 0;
  }

  .rs-banner-bg-thumb {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    width: 100%;
    padding-top: 56.25%; 
    position: relative;
  }
} */

.certificate-section {
  padding: 50px 20px;
  text-align: center;
}

.section-heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}

.certificate-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.certificate-card {
  width: calc(50% - 20px);
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
}

.certificate-card:hover {
  transform: scale(1.02);
}

/* Mobile view: one per row */
@media (max-width: 768px) {
  .certificate-card {
    width: 100%;
  }
}






