@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --theme-color: #121212;
  /* Deep Off-Black for modern, high-contrast text and bases */
  --theme-color-second: #e63946;
  /* Vibrant Crimson Red for precise, high-impact CTAs */
  --theme-color-white: #f8f9fa;
  /* Clean Soft White to prevent harsh eye strain */


  /* Fonts */

  --heading-font: "Jost", sans-serif;
  --paragraph-font: "Arimo", sans-serif;
  --span-font: 'basic-font';

  /* Shadows */

  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.2);

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  outline: none;
  font-size: 15px;
  color: var(--theme-color);
  background-color: #fff;
  overflow-x: hidden;
  font-family: var(--paragraph-font);
}

@font-face {
  font-family: 'basic-font';
  src: url(../fonts/Helvetica.ttf);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #0055f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
  transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 15px;
  font-family: var(--heading-font);
}

h1 {
  font-size: 55px;
  font-weight: 600;
}

h2 {
  font-size: 35px;
  font-weight: 600;
}

.span-font {
  font-family: var(--span-font);
}

p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
}

ul li {
  margin-bottom: 0px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}



ul {
  list-style: none;
  padding: 0;
}




.bg-cover {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.gap {
  margin-bottom: 30px;
}

section {
  padding: 80px 0px;
}

.form-control:focus {
  border-color: #ced4da;
  outline: 0;
  box-shadow: none;
}

input {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
}

select {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid #ced4da;
  color: #c1c0bd;
}



.m-backtotop {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: -50px;
  right: 0;
  width: 50px;
  height: 50px;
  background: var(--theme-color);
  border-radius: 0;
  text-align: center;
  border: 2px solid var(--theme-color-second);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  color: #fff;
}

.m-backtotop.active {
  bottom: 0;
  opacity: 1;
  z-index: 1;
  border: 2px solid var(--theme-color);
}

.m-backtotop>div {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.m-backtotop>div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  z-index: 999;
}

.m-backtotop>div.text {
  font-size: 0.5rem;
  line-height: 10px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "Open Sans", sans-serif;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
  z-index: 99;
}

.m-backtotop:hover {
  transform: scale(1.1);
  bottom: 0px;
  cursor: pointer;
  background: black;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
}

.m-backtotop:hover>div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}

.m-backtotop:hover>div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

/* Progress bar styles */
.m-backtotop .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme-color-second);
  transition: height 0.2s ease-in-out;
}

.py-5 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-6 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-7 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.py-9 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.py-10 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gap-p p {
  margin-bottom: 0px;
}


/* ---------------------- */


/* ---------------------- */
.small {
  display: none;
}


a.navbar-brand img {
  width: 118px;
}


.header_menu li a:hover {
  color: var(--theme-color-second);
}

.hd_info {
  display: flex;
  align-items: center;
  gap: 10px;

  flex-wrap: wrap;
}

a.comon-btn {
  background: var(--theme-color-second);
  color: var(--theme-color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 500px;
  width: auto;
  min-width: 12rem;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--theme-color-second);

  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

a.comon-btn:hover {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--theme-color-white);
  transform: translateY(-2px);

}

a.comon-btn:active {
  transform: translateY(0);

}

a.btn-white {
  background: #fff;
  color: #1e1e1e;
}

.header_menu li a {
  color: #000;
  font-size: 16px;
  text-transform: capitalize;
  padding: 29px 19px;
  display: inline-block;
  font-weight: 500;
}

.navbar li:hover a {
  color: var(--theme-color-second);
}

.navbar li:hover .dropdown-menu {
  transition: .3s;
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: rotateX(0deg);
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar li .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }

  .navbar li:hover a {
    color: var(--theme-color-second);
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }

  .navbar li:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}

ul.dropdown-menu.fade-up li a:hover {
  color: #fff !important;
  background: var(--theme-color-second);
}

#main_header ul.dropdown-menu.fade-up li:last-child {
  border-bottom: 0px;
}

#main_header ul.dropdown-menu.fade-up li {
  border-bottom: 1px solid #c1c0bd;
  margin: 0 0 0 0;
}

ul.dropdown-menu.fade-up li a {
  color: #000 !important;
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 11px 12px;
}

ul.dropdown-menu.fade-up {
  border: none;
  background: #fff;
  padding: 0 0;
  min-width: inherit;
  width: 200px;
  border-radius: 0px;
}

.link-sm-2 i {
  top: -9px !important;
}

.link-sm-2 {
  position: relative;
}


.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%
}

.sticky-top-1.sticky {
  background: #fff !important;
  z-index: 9999;
}

/* Headings */
.main-sec h2,
.main-sec .comment-reply-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Comments Section Container */
.main-sec #comments.comments-area {
  max-width: var(--default-max-width, 800px);
  margin: 0 auto;
  padding: 1.5rem;
  box-shadow: var(--shadow-base);
  border-radius: 8px;
  background-color: #fff;
}

/* Notes & Labels */
.main-sec .comment-notes,
.main-sec label {
  font-family: var(--span-font);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.main-sec .required {
  color: var(--theme-color-second);
}

/* Form Fields Layout */
.main-sec .comment-form p {
  margin-bottom: 1.25rem;
}

.main-sec .comment-form input[type="text"],
.main-sec .comment-form input[type="email"],
.main-sec .comment-form input[type="url"],
.main-sec .comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--paragraph-font);
  font-size: 1rem;
  box-shadow: var(--shadow-small);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.main-sec .comment-form input:focus,
.main-sec .comment-form textarea:focus {
  outline: none;
  border-color: var(--theme-color-second);
  box-shadow: var(--shadow-base);
}

/* Cookies Consent Checkbox */
.main-sec .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-sec .comment-form-cookies-consent label {
  margin-bottom: 0;
}

/* Submit Button */
.main-sec input[type="submit"].submit {
  background-color: var(--theme-color);
  color: #fff;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: var(--shadow-small);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.main-sec input[type="submit"].submit:hover {
  background-color: var(--theme-color-second);
  box-shadow: var(--shadow-large);
}

.main-sec input[type="checkbox"] {
  width: auto;
}


.top-header {
  color: var(--theme-color-white);
  padding: 5px 0;
}

.top-header .contant-list {
  display: flex;
  gap: 15px;
}

.top-header .contant-list li a {
  color: var(--theme-color-white);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
}

.top-header p {
  font-size: 15px;
}

.fixed-bottom {
  display: none;
}

#main_header .hd_info {
  gap: 25px;
}

.search-modal {
  background-color: var(--theme-color);
}

.search-modal form {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  padding: 5px;
}

.search-modal form button,
.search-modal form input {

  border: none;
  background: transparent;
  font-size: 18px;
}

/* ************************ */

.home_banner {
  padding-top: 120px;
  padding-bottom: 65px;
}

.home_banner .heading {
  color: var(--theme-color-white);
}

.home_banner .heading p {
  font-weight: 600;
}

.home_banner .heading .comon-btn:hover {
  background: var(--theme-color-white);
  color: var(--theme-color-second);
  border: 2px solid var(--theme-color-second);
}

.home_banner .heading .btn-white {
  border: 2px solid var(--theme-color-white);
}


/* ************************ */

.home_sec_1 .bottom_content a {
  color: var(--theme-color-second);
  font-weight: 600;
}

.home_sec_1 .service_box {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.home_sec_1 .service_box .service-img {
  transition: .4s ease;
}

.home_sec_1 .service_box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 3%, rgba(0, 0, 0, 0) 74%);
  z-index: 1;
}

.home_sec_1 .service_box .content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--theme-color-white);
  padding: 15px;
}

.home_sec_1 .service_box .content .service-icon {
  width: 55px;
}

.home_sec_1 .service_box .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.home_sec_1 .service_box .service-bottom span {
  font-style: italic;
}

.home_sec_1 .service_box .service-bottom span i {
  display: inline-block;
  transition: transform 0.4s ease;
}

.home_sec_1 .service_box:hover .service-bottom span i {
  transform: translateX(5px);
}

.home_sec_1 .service_box:hover .service-img {
  scale: 1.1;
}

.home_sec_1 .service_box .service-icon {
  transition: .8s ease;
}

.home_sec_1 .service_box:hover .service-icon {
  transform: rotateY(360deg);
}

/* ************************************** */

.home_sec_2 {
  color: #fff;
  padding-bottom: 168px;
}

.home_sec_2 .heading p {
  color: #ccc;
}

/* Navigation */
.home_sec_2 .project_slider_nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.home_sec_2 .project_slider_nav button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--theme-color-second);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.home_sec_2 .project_slider_nav button:hover {
  background: #fff;
  color: #ef4967;
}

/* Project */
.home_sec_2 .project_item {
  height: 100%;
}



.home_sec_2 .project_image {
  display: block;
  border: 5px solid #fff;
  border-radius: 12px;
  overflow: hidden;
}

.home_sec_2 .project_image img {
  display: block;
  transition: 0.4s ease;
}

.home_sec_2 .project_image:hover img {
  transform: scale(1.05);
}

/* Content */
.home_sec_2 .project_content {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 8px 0;
}

.home_sec_2 .project_content h3 {
  flex: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.home_sec_2 .project_content h3 a {
  color: #fff;
  text-decoration: none;
}

.home_sec_2 .project_arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--theme-color-second);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s ease;
}


.home_sec_2 .project_item:hover .project_arrow {
  transform: rotate(45deg);
  background: #fff;
  color: #ef4967;
}

/* *************************************************************************** */

/* css by mainak */
.img-fluid {
  width: 100%;
  height: auto;
}

.home_sec_5 .img-box .img-fluid {
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.home_sec_5 .img-box .border-black {
  border: 3px solid var(--theme-color);
}

.home_sec_5 .img-box .border-red {
  border: 3px solid var(--theme-color-second);
}

.home_sec_6 .review-box {
  border-radius: 10px;
  border: 3px solid var(--theme-color-second);
}

.home_sec_6 .review-box img {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain;
  margin-bottom: 10px;
}

.home_sec_6 .review-box .client-name {
  font-size: 24px;
  color: var(--theme-color);
  margin-bottom: 5px;
}

.home_sec_6 .review-box .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: orange;
}

.home_sec_6 .review-box .content-box {
  overflow-y: scroll;
  height: 200px;

  /* Firefox */
  scrollbar-width: none;

  /* Internet Explorer & older Edge */
  -ms-overflow-style: none;
}

/* Chrome, Safari, Opera, Edge (Chromium) */
.home_sec_6 .review-box .content-box::-webkit-scrollbar {
  display: none;
}


.home_sec_6 .owl-nav {
  font-size: 80px;
  line-height: normal;
  font-family: var(--paragraph-font);
  font-weight: lighter;
}

.home_sec_6 button.owl-prev {
  position: absolute;
  top: 35%;
  left: -3%;
  font-weight: lighter;
  padding: 0;
}

.home_sec_6 button.owl-next {
  position: absolute;
  top: 35%;
  right: -3%;
  font-weight: lighter;
  padding: 0;

}



.home_sec_7 .accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home_sec_7 .accordion-item {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--theme-color-soft);
  transition: background-color 0.3s ease;
}

/* Header & H3 reset */
.home_sec_7 .accordion-header {
  margin: 0;
  padding: 0;
  font-family: var(--heading-font);
}

/* Accordion Button Default */
.home_sec_7 .accordion-button {
  background-color: #fbe9e6;
  color: #1a1a1a;
  font-family: var(--heading-font);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 22px 30px;
  border: none;
  box-shadow: none;
}

.home_sec_7 .accordion-button:focus {
  box-shadow: none;
}

/* Accordion Open State Parent & Button */
.home_sec_7 .accordion-item:has(.accordion-button:not(.collapsed)) {
  background-color: var(--theme-color-second);
}

.home_sec_7 .accordion-button:not(.collapsed) {
  background-color: var(--theme-color-second);
  color: var(--theme-color-white);
  box-shadow: none;
}

/* Custom Chevron Icons matching reference */
.home_sec_7 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231a1a1a' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-size: 1.2rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home_sec_7 .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  /* Makes arrow white when active */
  transform: rotate(-180deg);
}

/* Accordion Content Body */
.home_sec_7 .accordion-body {
  font-family: var(--paragraph-font);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 30px 24px 30px;
}



/*  */

.footer {
  color: var(--theme-color-white);
}

.footer hr {
  margin: 3rem 0;
  display: block;
}

.footer .ft-logo {
  width: 255px;
}


.footer .newsletter-title {
  color: var(--theme-color-white);
  font-family: var(--heading-font, sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

/* Wrapper group styling matching rounded border */
.footer .newsletter-form .input-group {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background-color: transparent;
  padding: 2px 8px;
  transition: border-color 0.3s ease;
}

.footer .newsletter-form .input-group:focus-within {
  border-color: rgba(255, 255, 255, 0.7);
}

/* Input styles */
.footer .newsletter-form .form-control {
  background-color: transparent;
  border: none;
  color: var(--theme-color-white);
  font-family: var(--paragraph-font, sans-serif);
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 14px;
  box-shadow: none;
}

.footer .newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.footer .newsletter-form .form-control:focus {
  background-color: transparent;
  color: var(--theme-color-white);
  box-shadow: none;
}

/* Arrow submit button */
.footer .newsletter-form .btn-submit {
  background-color: transparent;
  border: none;
  color: var(--theme-color-white);
  font-size: 1.25rem;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer .newsletter-form .btn-submit:hover {
  color: var(--theme-color-white);
  transform: translateX(3px);
}

.footer .newsletter-form .btn-submit:focus {
  box-shadow: none;
}

.footer .contact-info-list .contact-item {
  color: var(--theme-color-white);
  font-family: var(--paragraph-font, sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
}

/* Icon Styles */
.footer .contact-info-list .contact-item .icon {
  font-size: 1.15rem;
  color: var(--theme-color-white);
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
}

/* Link Styles for Email & Phone */
.footer .contact-info-list .contact-item a {
  color: var(--theme-color-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer .contact-info-list .contact-item a:hover {
  color: var(--theme-color-white);
  opacity: 0.8;
}

.footer .contact-info-list {
  gap: 16px;
}

.footer .ft-list li a {
  color: var(--theme-color-white);
  font-family: var(--paragraph-font, sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer .ft-list li a:hover {
  color: var(--theme-color-white);
  opacity: 0.8;
}

.footer .social-links {
  background-color: transparent;
  gap: 20px;
  justify-content: end;
}

footer .social-links li a {
  color: var(--theme-color-white);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer .social-links li a:hover {
  color: var(--theme-color-white);
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer .copyright-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--paragraph-font, sans-serif);
  font-size: 0.85rem;
}

.footer .legal-links {
  gap: 12px;
}

.footer .legal-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--paragraph-font, sans-serif);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer .legal-links li a:hover {
  color: #ffffff;
}

.footer .legal-links .separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  user-select: none;
}

/* Responsive spacing adjustment */
@media (max-width: 991px) {
  .footer .contact-info-list {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }

  .footer .social-links {
    background-color: transparent;
    gap: 20px;
    justify-content: start;
  }

}

/* ****************** Inner Pages ****************** */

.inner_banner_sec {
  background: var(--theme-color-second);
}

.inner_banner_sec .heading {
  color: var(--theme-color-white);
}

.article_categorie {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  color: #222;
}

.category_select {
  display: flex;
  justify-content: flex-end;
}

.category_select {
  position: relative;
}

.category_select::after {
  content: "\ea4e";
  font-family: "remixicon";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #ef4967;
  pointer-events: none;
}

.category_select select {
  width: 260px;
  height: 40px;
  padding: 0 45px 0 18px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  background: #f7f7f7;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category_select select:hover {
  border-color: #ef4967;
  background: #fff;
}

.category_select select:focus {
  border-color: #ef4967;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}


.blog_sec .blog-box {
  box-shadow: var(--shadow-large);
  height: 100%;
  padding: 10px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.blog_sec .blog-box:hover {
  transform: translateY(-5px);
}

.blog_sec .blog-box .content {
  padding: 20px 10px 16px;
}

.blog_sec .blog-box h3 {
  font-size: 20px;
}


.blog_sec .blog-box h3 a {
  color: var(--theme-color);
}


.blog_sec .blog-box:hover h3 a {
  color: var(--theme-color-second);
}

.blog_sec .blog-box p {
  margin-bottom: 0;
}


.blog_sec .blog-box .img-box {
  border-radius: 15px;
  overflow: hidden;
}

.blog_sec .pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 40px 0px 0px;
  width: 100%;
}

.blog_sec .pagination span.current {
  background: var(--theme-color-second);
  color: #fff;
}

.blog_sec .pagination span,
.blog_sec .pagination a,
.blog_sec .pagination .page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 15px;
  text-decoration: none;
  color: #000;
  border: 1px solid var(--theme-color-second);
  border-radius: 6px;
  transition: .3s ease;
}


.service_features {
  background: rgba(230, 57, 71, 0.219);
}

.service_features .service_feature_img {
  width: 150px;
  height: 200px;
  object-fit: contain;
  margin: 0px auto;
  transition: .4s ease;
}

.service_features .service_feature_img:hover {
  scale: 1.05;
}

/* ******************* inner blog ********************** */

.inner-blog-left-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 15px 19px 35px;
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.inner-blog-left-sec h1 {
  font-size: 32px;
  color: var(--theme-color-second);
}

.inner-blog-left-sec .inner-blog-sec1 p {
  color: #000000ab;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head p {
  color: #606060;
  margin-bottom: 12px;
}

.inner-blog-left-sec .inner-blog-sec1 h2 {
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 28px;
  color: var(--theme-color-second);
}

.inner-blog-left-sec .inner-blog-sec1 h3 {
  font-weight: 500;
  margin-bottom: 18px;
  font-size: 26px;
  color: var(--theme-color-second);
}



.inner-blog-left-sec .inner-blog-sec1 img {
  border-radius: 5px;
  margin-bottom: 0;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1c1c1c2b;
  margin-bottom: 10px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul {
  display: flex;
  gap: 15px;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li i {
  font-size: 17px;
  color: var(--theme-color);
}

.inner-blog-left-sec .inner-blog-sec1 .heading .blog-head i {
  color: var(--theme-color);
  font-size: 16px;
  margin-right: 3px;
}

.inner-blog-left-sec .inner-blog-sec1 .share-sec .social ul li a {
  color: #00000059;
}

.inner-blog-left-sec .inner-blog-sec1 ul {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.inner-blog-left-sec .inner-blog-sec1 ul li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
}

.inner-blog-left-sec .inner-blog-sec1 ul li i {
  color: var(--theme-color-second);
  font-size: 20px;
  line-height: 1.5;
}

.inner-blog-left-sec .inner-blog-sec1 ul li a {
  color: var(--theme-color-second);
}

.inner-blog-left-sec .inner-blog-sec1 ul li p {
  margin-bottom: 0px;
}


.inner-blog-left-sec .inner-blog-sec1 p a {
  color: var(--theme-color-second);
}

.inner-blog-left-sec .navigation-sec .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .navigation-sec .navigation a {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-left-sec .navigation-sec .navigation i {
  color: var(--theme-color);
}

.inner-blog-left-sec .navigation-sec .blog-contain {
  padding: 25px 18px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  border-radius: 5px;
  height: 100%;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top {
  padding-bottom: 15px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .img-top img {
  border-radius: 5px;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading h3 {
  color: #000;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p strong {
  color: #00000059;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading p {
  color: #000000ab;
}

.inner-blog-left-sec .navigation-sec .blog-contain .blog-content .heading .blog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-blog-left-sec .inner-blog-comment .contact-form {
  padding: 20px 25px;
  border: 1px solid rgba(69, 69, 70, 0.2);
  border-radius: 8px;
  background: #fff;
  color: #000;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form input {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #1c1c1c3b;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button {
  color: #ffffff;
  background-color: #000;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid #000;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 400;
  transition: 0.5s;
}

.inner-blog-left-sec .inner-blog-comment .contact-form form button:hover {
  background: #1c1c1c3b;
  border: 1px solid #1c1c1c3b;
  color: #000;
  transition: 0.5s;
}

.inner-blog-left-sec .admin-sec p {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul {
  display: flex;
  gap: 25px;
  align-items: center;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li i {
  font-size: 18px;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content .social ul li a {
  color: #000000ab;
}

.inner-blog-left-sec .admin-sec .admin-info .admin-info-content {
  border-top: 1px solid #1c1c1c3b;
  border-bottom: 1px solid #1c1c1c3b;
  padding: 10px 20px;
}

.inner-blog-left-sec .admin-sec img {
  border-radius: 5px;
}


/* inner-blog-right-sec */

.inner-blog-right-sec {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: rgba(149, 157, 165, 0.2);
  padding: 35px 21px;
  border-radius: 8px;
  background: #fff;
  color: #000;
}

.inner-blog-right-sec .blog-search form {
  position: relative;
  border: 1px solid #1c1c1c3b;
  border-radius: 5px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inner-blog-right-sec .blog-search form input {
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
}

.inner-blog-right-sec .blog-search form button {
  /* position: absolute;
top: 0;
right: 0;
width: 50px;
height: 100%; */
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 15px;
  color: #000000;
}

.inner-blog-right-sec .popular-sec .popular-cards1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #1c1c1c3b;
  padding: 15px 0;
  gap: 10px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .img-top img {
  width: 130px;
}

.inner-blog-right-sec .popular-sec .popular-cards1 p {
  color: #000000ab;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.inner-blog-right-sec .popular-sec .popular-cards1 a {
  color: #000000ab;
  font-size: 15px;
  font-weight: 600;
}

.inner-blog-right-sec .popular-sec .popular-cards1 .heading {
  width: 100%;
}


.Document_production_sec {
  background-color: var(--theme-color-white);
  color: var(--theme-color);
  font-family: var(--paragraph-font);
  padding: 80px 0;
}

.Document_production_sec h2,
.Document_production_sec h3,
.Document_production_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.Document_production_sec .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.Document_production_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.Document_production_sec .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.Document_production_sec .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.Document_production_sec .highlight-box h3,
.Document_production_sec .highlight-box p,
.Document_production_sec .highlight-box i {
  color: var(--theme-color-white);
}

.Document_production_sec .location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}


.tender_sec {
  background-color: var(--theme-color-white);
  color: var(--theme-color);
  font-family: var(--paragraph-font);
  padding: 80px 0;
  overflow: hidden;
}

.tender_sec h2,
.tender_sec h3,
.tender_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.tender_sec .content-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  height: 100%;
}

.tender_sec .icon-box {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.tender_sec .contact-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.tender_sec .contact-box h3,
.tender_sec .contact-box p,
.tender_sec .contact-box i,
.tender_sec .contact-box a {
  color: var(--theme-color-white);
}

.tender_sec .contact-link {
  color: var(--theme-color-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.tender_sec .contact-link:hover {
  color: var(--theme-color-second);
}

.tender_sec .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}

.exibition_sec_1 {
  background-color: var(--theme-color-white);
  color: var(--theme-color);
  font-family: var(--paragraph-font);
  padding: 80px 0;
  overflow: hidden;
}

.exibition_sec_1 h2,
.exibition_sec_1 h3,
.exibition_sec_1 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.exibition_sec_1 .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.exibition_sec_1 .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.exibition_sec_1 .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.exibition_sec_1 .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.exibition_sec_1 .highlight-box h3,
.exibition_sec_1 .highlight-box p,
.exibition_sec_1 .highlight-box i {
  color: var(--theme-color-white);
}

.exibition_sec_1 .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}

.exibition_sec_1 .other-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exibition_sec_1 .other-items-list li {
  background-color: rgba(230, 57, 70, 0.08);
  color: var(--theme-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.stationary_sec_1 {
  background-color: var(--theme-color-white);
  color: var(--theme-color);
  font-family: var(--paragraph-font);
  padding: 80px 0;
  overflow: hidden;
}

.stationary_sec_1 h2,
.stationary_sec_1 h3,
.stationary_sec_1 h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.stationary_sec_1 .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.stationary_sec_1 .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.stationary_sec_1 .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.stationary_sec_1 .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.stationary_sec_1 .highlight-box h3,
.stationary_sec_1 .highlight-box p,
.stationary_sec_1 .highlight-box i {
  color: var(--theme-color-white);
}

.stationary_sec_1 .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}

.stationary_sec_1 .items-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stationary_sec_1 .items-list li {
  background-color: rgba(230, 57, 70, 0.08);
  color: var(--theme-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}


.large-format-printing {
  background-color: var(--theme-color-white);
  color: var(--theme-color);
  font-family: var(--paragraph-font);
  padding: 80px 0;
  overflow: hidden;
}

.large-format-printing h2,
.large-format-printing h3,
.large-format-printing h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.large-format-printing .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.large-format-printing .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.large-format-printing .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.large-format-printing .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.large-format-printing .highlight-box h3,
.large-format-printing .highlight-box p,
.large-format-printing .highlight-box i,
.large-format-printing .highlight-box a {
  color: var(--theme-color-white);
}

.large-format-printing .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}

.large-format-printing .blog-link {
  color: var(--theme-color-second);
  text-decoration: underline;
  font-weight: 600;
}

.finishing-service_sec h2,
.finishing-service_sec h3,
.finishing-service_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.finishing-service_sec .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.finishing-service_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.finishing-service_sec .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.finishing-service_sec .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.finishing-service_sec .highlight-box h3,
.finishing-service_sec .highlight-box p,
.finishing-service_sec .highlight-box i {
  color: var(--theme-color-white);
}

.finishing-service_sec .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}

.mounting-lamination_sec h2,
.mounting-lamination_sec h3,
.mounting-lamination_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.mounting-lamination_sec .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.mounting-lamination_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.mounting-lamination_sec .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.mounting-lamination_sec .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.mounting-lamination_sec .highlight-box h3,
.mounting-lamination_sec .highlight-box p,
.mounting-lamination_sec .highlight-box i {
  color: var(--theme-color-white);
}

.mounting-lamination_sec .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}


.graphic-design_sec h2,
.graphic-design_sec h3,
.graphic-design_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.graphic-design_sec .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.graphic-design_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.graphic-design_sec .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.graphic-design_sec .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.graphic-design_sec .highlight-box h3,
.graphic-design_sec .highlight-box p,
.graphic-design_sec .highlight-box i {
  color: var(--theme-color-white);
}

.graphic-design_sec .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}


.environment_sec h2,
.environment_sec h3,
.environment_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.environment_sec .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.environment_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.environment_sec .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.environment_sec .highlight-box {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-large);
}

.environment_sec .highlight-box h3,
.environment_sec .highlight-box p,
.environment_sec .highlight-box i {
  color: var(--theme-color-white);
}

.environment_sec .badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color-second);
  font-weight: 600;
  font-family: var(--span-font);
  margin-bottom: 15px;
}

.environment_sec .eco-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.environment_sec .eco-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.environment_sec .eco-list li:last-child {
  border-bottom: none;
}

.environment_sec .eco-list i {
  color: var(--theme-color-second);
  font-size: 20px;
  margin-top: 2px;
}

.environment_sec .fsc-link {
  color: var(--theme-color-second);
  text-decoration: underline;
  font-weight: 600;
}

.artwork-guides_sec h2,
.artwork-guides_sec h3,
.artwork-guides_sec h4 {
  font-family: var(--heading-font);
  color: var(--theme-color);
  font-weight: 700;
}

.artwork-guides_sec .card {
  border: none;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.artwork-guides_sec .card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.artwork-guides_sec .icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--theme-color-second);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.artwork-guides_sec .example-link {
  color: var(--theme-color-second);
  text-decoration: underline;
  font-weight: 600;
}

.artwork-guides_sec .services-list {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--theme-color);
}

.small1 p {
  display: block !important;
  font-size:.875rem;
}

.new_contact h1,
.new_contact h2,
.new_contact h3,
.new_contact h4,
.new_contact h5,
.new_contact h6 {
  font-family: var(--heading-font);
  color: var(--theme-color);
}

.new_contact span {
  font-family: var(--span-font), sans-serif;
}

.new_contact .new_contact_subtitle {
  color: var(--theme-color-second);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
}

.new_contact .new_contact_title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.new_contact .new_contact_text {
  color: #555555;
  margin-bottom: 2rem;
}

.new_contact .new_contact_info_card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
  height: 100%;
}

.new_contact .new_contact_details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.new_contact .new_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.new_contact .new_contact_icon {
  font-size: 1.5rem;
  color: var(--theme-color-second);
  background-color: rgba(230, 57, 70, 0.1);
  padding: 0.6rem;
  border-radius: 50%;
  line-height: 1;
}

.new_contact .new_contact_label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.new_contact .new_contact_value {
  margin-bottom: 0;
  color: #444444;
}

.new_contact .new_contact_value a {
  color: var(--theme-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.new_contact .new_contact_value a:hover {
  color: var(--theme-color-second);
}

.new_contact .new_contact_divider {
  border-color: #e0e0e0;
  margin: 2rem 0;
}

.new_contact .new_contact_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.new_contact .new_contact_tag a{
  color: var(--theme-color);
}

.new_contact .new_contact_tag {
  background-color: var(--theme-color-white);
  border: 1px solid #e0e0e0;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.new_contact .new_contact_review_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--theme-color);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--theme-color);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.new_contact .new_contact_review_btn:hover {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
}

.new_contact .new_contact_form_wrapper {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-base);
}

.new_contact .new_contact_form_label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--theme-color);
  margin-bottom: 0.4rem;
}

.new_contact .new_contact_input {
  border: 1px solid #cccccc;
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  font-family: var(--paragraph-font);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.new_contact .new_contact_input:focus {
  border-color: var(--theme-color-second);
  box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.15);
  outline: none;
}

.new_contact .new_contact_upload_area {
  position: relative;
  border: 2px dashed #cccccc;
  background-color: var(--theme-color-white);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.2s ease;
}

.new_contact .new_contact_upload_area:hover {
  border-color: var(--theme-color-second);
}

.new_contact .new_contact_file_input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.new_contact .new_contact_upload_label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #666666;
  font-size: 0.9rem;
  cursor: pointer;
}

.new_contact .new_contact_upload_icon {
  font-size: 1.8rem;
  color: var(--theme-color-second);
}

.new_contact .new_contact_submit_btn {
  background-color: var(--theme-color-second);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 6px;
  box-shadow: var(--shadow-small);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.new_contact .new_contact_submit_btn:hover {
  background-color: var(--theme-color);
  color: var(--theme-color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-base);
}