/*
* ----------------------------------------------------------------------------------------
Author       : Tanvir Hossain
Template Name: Vien - Portfolio
Version      : 1.0                                          
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.COMMON CSS STYLE
* 03.MENU CSS STYLE
* 04.HEADER CSS STYLE
* 05.ABOUT CSS STYLE
* 06.SERVICE CSS STYLE
* 07.SKILL CSS STYLE
* 08.RESUME CSS STYLE
* 09.PORTFOLIO CSS STYLE
* 10.TESTIMONIALS CSS STYLE
* 11.PRICING CSS STYLE
* 12.CLIENTS CSS STYLE
* 13.CONTACT CSS STYLE
* 14.FOOTER CSS STYLE
* 15.PRELOADER & BOUNCE CCS STYLE
* 16.BLOG CSS STYLE
* 17.Mobile Menu CSS STYLE
* 18.Responsive CSS STYLE
* ----------------------------------------------------------------------------------------
*/
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

/* Tailwind Css Import */
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
  /*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

  body {
    @apply font-textFont leading-[30px];
  }

  /* Heading styles */
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  .accordion-item .accordion-button {
    @apply mb-[.5rem] font-titleFont font-medium text-headingColor;
  }

  /* Heading sizes */
  h1,
  .h1 {
    @apply text-[58px] leading-[120%];
  }

  h2,
  .h2 {
    @apply text-[22px] leading-[120%];
  }

  h3,
  .h3 {
    @apply text-[30px] leading-[120%];
  }

  h4,
  .h4 {
    @apply text-[24px] leading-[120%];
  }

  h5,
  .h5 {
    @apply text-xl leading-[120%];
  }

  h6,
  .h6 {
    @apply text-[16px] leading-[120%];
  }

  /* Paragraph styles */
  p {
    @apply leading-[28px];
  }

  /* List styles */
  ul,
  li {
    @apply m-0 p-0;
  }

  /* Fieldset */
  fieldset {
    @apply m-0 border-0 p-0;
  }

  /* No padding class */
  .no-padding {
    @apply p-0 !important;
  }

  /* Anchor tags */
  a {
    @apply cursor-pointer font-textFont text-mainColor no-underline outline-none transition duration-500;
  }

  a:hover,
  a:focus,
  a:visited {
    @apply no-underline outline-none;
  }

  a:hover {
    @apply text-black;
  }

  /* Unordered and list items */
  ul,
  li {
    @apply m-0 list-none p-0;
  }

  /* Image styles */
  img {
    @apply inline-block max-w-full;
  }

  /* Mark styles */
  mark {
    @apply bg-transparent text-primaryColor underline;
  }

  /* Input, select, textarea, and form-control */
  input,
  select,
  textarea,
  .nice-select,
  .form-control {
    @apply w-full border-b-2 border-none border-b-[rgba(41,41,41,0.1)] bg-white text-xl;
  }

  /* Placeholder styles */
  input::placeholder,
  select::placeholder,
  textarea::placeholder,
  .nice-select::placeholder,
  .form-control::placeholder {
    @apply text-mainColor opacity-40;
  }

  /* Focus states */
  input:focus,
  select:focus,
  textarea:focus,
  .nice-select:focus,
  .form-control:focus {
    @apply border-b-2 border-[rgba(41,41,41,0.1)];
  }

  /* Textarea styles */
  textarea {
    @apply pt-5;
  }

  /* Label styles */
  label {
    @apply mb-1 cursor-pointer font-medium text-mainColor;
  }

  /* Form group styles */
  .form-group {
    @apply relative;
  }

  /* Focus states */
  input:focus,
  button:focus,
  .form-control:focus {
    @apply border-[#cfdbf1] shadow-none outline-none;
  }

  /* Search input styles */
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration,
  input[type="search"]::-ms-clear,
  input[type="search"]::-ms-reveal {
    @apply hidden;
  }

  /* Checkbox and radio input styles */
  input[type="checkbox"],
  input[type="radio"] {
    @apply h-auto w-auto;
  }

  /* HTML scroll behavior */
  html {
    @apply scroll-auto !important;
  }

  /*
* ----------------------------------------------------------------------------------------
* 02.COMMON TAILWIND STYLE
* ----------------------------------------------------------------------------------------
*/

  /* No gap */
  .no-gap {
    @apply ml-0 mr-0;
  }

  .no-gap > div {
    @apply pl-0 pr-0;
  }

  /* Section Title */
  .section-title {
    @apply mb-[30px] md:mb-[50px];
  }

  .has-border {
    @apply border-b border-gray-700;
  }

  .section-title .sub-title {
    @apply block font-medium text-white/65;
  }

  .section-black-title h2 {
    @apply text-mainColor;
  }

  .section-title h2 {
    @apply mb-[15px] pb-5 text-[50px] uppercase leading-[70px] md:text-[60px];
  }

  .section-title p {
    @apply text-base uppercase max-md:mb-0;
  }

  .section-title h2 span {
    @apply text-mainColor;
  }

  .section-title h6 {
    @apply text-lg;
  }

  .section-title h6 span {
    @apply text-primaryColor;
  }

  /* Theme Button */
  .theme-btn {
    @apply mb-2.5 mr-[5px] inline-block cursor-pointer rounded-[16px] border border-buttonBorder bg-mainColor px-[34px] py-5 text-center text-sm font-medium leading-[20px] text-white transition duration-300;
  }

  .theme-btn-two {
    @apply bg-primaryColor text-black;
  }

  .theme-btn:focus {
    @apply no-underline transition duration-300;
  }

  .theme-btn i {
    @apply ml-1;
  }

  .theme-btn:hover {
    @apply border border-buttonBorder bg-transparent text-mainColor no-underline;
  }

  .theme-btn-two:hover {
    @apply border border-bodyColor text-headingColor no-underline;
  }

  .theme-btn:active {
    @apply shadow-inner;
  }

  /* Details Button */
  .details-btn {
    @apply border-border-color inline-block h-[50px] w-[50px] -rotate-45 transform rounded-full border bg-[#131313] text-center leading-[50px];
  }

  .details-btn:hover {
    @apply bg-primaryColor text-black;
  }

  /* Read More */
  .read-more {
    @apply inline-flex items-center text-sm capitalize text-white;
  }

  .read-more i {
    @apply float-right ml-[7px] mt-0.5 transition duration-500;
  }

  .read-more:hover {
    @apply text-primaryColor;
  }

  .read-more:hover i {
    @apply ml-2.5;
  }

  /* List Style One */
  .list-style-one li {
    @apply flex items-center font-medium text-white;
  }

  .list-style-one li:not(:last-child) {
    @apply mb-2.5;
  }

  .list-style-one.two-column {
    @apply mt-[30px] flex flex-wrap;
  }

  .list-style-one.two-column li {
    @apply w-[48%] text-base text-gray-600;
  }

  .list-style-one.two-column li i {
    @apply pr-2.5;
  }

  /* List Style Two */
  .list-style-two li {
    @apply flex items-center;
  }

  .list-style-two li:before {
    @apply leading-1 font-awesome-5-pro mr-5 h-[30px] w-[30px] rounded-full bg-primaryColor text-center text-base leading-[30px] text-lighterColor content-["\f00c"];
  }

  .list-style-two li:not(:last-child) {
    @apply mb-[25px];
  }

  /* Social Style One */
  .social-style-one {
    @apply ml-[-5px] mr-[-5px] inline-flex flex-wrap;
  }

  .social-style-one a {
    @apply ml-[5px] mr-[5px] h-[35px] w-[35px] rounded-full bg-[#0c0b0b] text-center text-sm leading-[35px] text-[#b0afaf];
  }

  .social-style-one a:hover {
    @apply bg-primaryColor text-black;
  }

  /* Social Style Two */
  .social-style-two {
    @apply -mx-3 inline-flex flex-wrap;
  }

  .social-style-two a {
    @apply mx-3 text-white/35;
  }

  .social-style-two a:hover {
    @apply text-primaryColor;
  }

  /* Pagination */
  .pagination {
    @apply -mx-[-15px] items-center;
  }

  .pagination li {
    @apply mx-[15px] mb-0 mt-2.5;
  }

  .pagination li a,
  .pagination li .page-link {
    @apply border-none bg-transparent p-0 text-2xl font-semibold text-mainColor shadow-none;
  }

  .pagination li.active .page-link,
  .pagination li:hover:not(.disabled) .page-link {
    @apply bg-transparent text-primaryColor;
  }

  /* Rating */
  .ratting {
    @apply leading-1 ml-[-5px] mr-[-5px] inline-flex items-center;
  }

  .ratting i {
    @apply mx-[5px] text-[#ab6034];
  }

  /* Slick Arrow */
  .slick-arrow {
    @apply h-[40px] w-[40px] rounded-full border border-buttonBorder bg-mainColor leading-[40px] text-black transition duration-500;
  }

  .slick-arrow:focus,
  .slick-arrow:hover {
    @apply border-mainColor bg-transparent text-white;
  }

  .slider-arrows button:first-child {
    @apply mr-[5px];
  }

  /* Slick Dots */
  .slick-dots {
    @apply flex items-center justify-center;
  }

  .slick-dots li {
    @apply relative mx-[8px] h-[6px] w-[6px] cursor-pointer rounded-full bg-[#1d1b1a] opacity-30 transition duration-500;
  }

  .slick-dots li button {
    @apply h-0 opacity-0;
  }

  .slick-dots li:before {
    @apply absolute h-0 w-0 -translate-x-1/2 -translate-y-1/2 transform rounded-full border border-primaryColor transition duration-500 content-[""];
  }

  .slick-dots li.slick-active {
    @apply bg-primaryColor opacity-100;
  }

  .slick-dots li.slick-active:before {
    @apply h-[21px] w-[21px];
  }

  /* Single Page Hero Area */
  .single-page-hero-area {
    @apply bg-primaryColor pb-[50px] pt-[200px];
  }

  .single-page-hero-area h2 {
    @apply mb-[15px] pb-5 text-center text-[90px] font-medium uppercase text-mainColor md:text-[150px];
  }

  .single-page-hero-area p {
    @apply px-[30px] text-center text-[16px] leading-[24px] text-mainColor md:px-[200px];
  }

  /*
* ----------------------------------------------------------------------------------------
* 03.MENU CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Tailwind CSS conversion using @apply */

  /* Header Area */
  .header-area {
    @apply relative left-0 top-0 z-[999] w-full transition-all duration-500 ease-in-out;
  }

  .fixed-header .header-upper {
    @apply border-b border-buttonBorder bg-primaryColor transition-all duration-500 ease-in-out;
  }

  .fixed-header .header-inner {
    @apply py-4 transition-all duration-500 ease-in-out;
  }

  .fixed-header .main-menu .navbar-collapse li a {
    @apply max-md:text-white;
  }

  .fixed-header .main-menu .navbar-collapse li a:hover {
    @apply max-md:text-white;
  }

  .header-inner {
    @apply py-5 transition-all duration-500 ease-in-out md:py-[30px];
  }

  .main-header .header-upper {
    @apply fixed z-[5] w-full transition-all duration-500 ease-in-out;
  }

  /* Logo */
  .logo img {
    @apply w-[70px];
  }

  /* Main Menu */
  .main-menu {
    @apply text-right;
  }

  .main-menu ul li {
    @apply relative ml-[30px] inline-block;
  }

  .main-menu ul li:last-child {
    @apply mr-0;
  }

  .main-menu ul li.has-dropdown > a {
    @apply pr-[14px];
  }

  .main-menu ul li.has-dropdown > a:after {
    @apply absolute right-[-4px] top-[10px] text-[16px] text-mainColor transition duration-300 ease-in-out content-['\f107'];
    font-family: "Font Awesome 6 Pro";
  }

  .main-menu ul li .sub-menu li.has-dropdown > a:after {
    @apply right-[15px] top-[6px];
  }

  /* Main Menu Links */
  .main-menu ul li a {
    @apply inline-block py-2.5 text-[15px] font-medium uppercase leading-[20px] text-mainColor transition duration-300;
  }

  .main-menu ul li .active {
    @apply text-primaryColor;
  }

  .main-menu ul li:hover > a {
    @apply text-mainColor;
  }

  .main-menu ul li:hover > a:after {
    @apply text-mainColor;
  }

  .main-menu ul li:hover .sub-menu {
    @apply visible top-full opacity-100;
  }

  .main-menu .navbar-collapse li a:hover {
    @apply max-md:text-white max-md:no-underline;
  }

  /* Sub Menu */
  .main-menu ul li .sub-menu {
    @apply invisible absolute right-0 top-full mt-0 min-w-[180px] border-t-[2px] border-black bg-blackColor p-[20px_0px_15px] opacity-0 shadow-lg transition duration-500 ease-in-out;
  }

  .main-menu ul li .sub-menu li {
    @apply relative m-0 block w-full;
  }

  .main-menu ul li .sub-menu li a {
    @apply block px-[25px] py-[5px] text-left text-[13px] font-normal uppercase leading-[20px] text-headingColor transition duration-300;
  }

  .main-menu ul li .sub-menu li:hover > a {
    @apply text-primaryColor;
  }

  .main-menu ul li .sub-menu li > .sub-menu {
    @apply invisible right-[120%] top-2 opacity-0;
  }

  .main-menu ul li .sub-menu li:hover > .sub-menu {
    @apply visible right-full opacity-100;
  }

  /* Side Menu Icon */
  .side-menu-icon i {
    @apply relative top-[5px] cursor-pointer text-[32px] text-mainColor;
  }

  /* Link Style */
  .linkstyle {
    @apply relative cursor-pointer whitespace-nowrap text-lg;
  }

  .linkstyle {
    @apply before:absolute before:left-0 before:top-[90%] before:h-[1px] before:w-full before:origin-[100%_50%] before:scale-x-0 before:bg-mainColor before:transition-transform before:duration-300 before:ease-in-out hover:before:origin-[0%_50%] hover:before:scale-x-100;
  }

  /*----------------------------------------*/
  /*  MEAN MENU CSS START
/*----------------------------------------*/

  /* Tailwind CSS conversion using @apply */

  /* Mean Menu CSS */
  .mean-container a.meanmenu-reveal {
    @apply hidden;
  }

  .mean-container .mean-nav {
    @apply mt-0 bg-transparent;
  }

  .mean-container .mean-bar {
    @apply h-auto bg-transparent p-0;
  }

  .mean-container .mean-nav > ul {
    @apply m-0 block w-full list-none p-0 !important;
  }

  .mean-container a.meanmenu-reveal {
    @apply hidden !important;
  }

  .mean-container .mean-nav ul li a {
    @apply w-full border-t border-[#353535] py-2.5 text-[14px] font-medium leading-[1.5] text-primaryColor;
  }

  .mean-container .mean-nav ul li a:hover {
    @apply text-primaryColor;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    @apply mt-3 h-[30px] w-[30px] border border-[#353535] p-0 text-center font-normal leading-[14px] text-primaryColor;
  }

  .mean-container .mean-nav ul li a.mean-expand:hover {
    @apply border-[#353535];
  }

  .mean-container .mean-nav ul li > a > i {
    @apply hidden;
  }

  .mean-container .mean-nav ul li > a.mean-expand i {
    @apply inline-block;
  }

  .mean-container .mean-nav > ul > li:first-child > a {
    @apply border-t-0;
  }

  .mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    @apply rotate-[45deg] transform;
  }

  /* Sidebar CSS */
  .sidebar__area {
    @apply fixed right-[-485px] top-0 z-[9999] h-full w-[465px] overflow-y-scroll bg-blackColor transition-all duration-300;

    -ms-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -o-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 575px) {
    .sidebar__area {
      @apply w-[290px];
    }
  }

  .sidebar__area.sidebar-opened {
    @apply right-0;
  }

  .sidebar__area-2 {
    @apply left-[-485px];
  }

  .sidebar__area-2.sidebar-opened {
    @apply left-0;
  }

  .sidebar__wrapper {
    @apply relative p-[45px] lg:bg-primaryColor;
  }

  @media (max-width: 575px) {
    .sidebar__wrapper {
      @apply p-[20px];
    }
  }

  .sidebar__close {
    @apply absolute right-[45px] top-[35px];
  }

  @media (max-width: 575px) {
    .sidebar__close {
      @apply right-[20px] top-[12px];
    }
  }

  .sidebar__close-btn {
    @apply inline-block h-[45px] w-[45px] rounded-full bg-black text-[16px] leading-[49px] text-white;
  }

  .sidebar__close-btn:hover {
    @apply bg-black;
  }

  .sidebar__close-btn-3 {
    @apply bg-[#666];
  }

  .sidebar__close-btn-3:hover {
    @apply bg-[#666];
  }

  /* Body Overlay */

  .body-overlay.opened {
    @apply visible opacity-100;
  }

  /*
* ----------------------------------------------------------------------------------------
* 04.HEADER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

  /* Main Hero Area */
  .main-hero-area {
    @apply bg-primaryColor pt-[110px] max-lg:pt-[130px] md:pt-[115px];
  }

  .hero-content h2 {
    @apply text-center font-medium uppercase text-mainColor;
  }

  .hero-content p {
    @apply text-mainColor;
  }

  .hero-btns {
    @apply mt-[30px];
  }

  .hero-content .hero-btns .read-more {
    @apply mt-[15px] underline;
  }

  .hero-content .dot-shape {
    @apply max-md:left-[3%] max-md:top-[15%];
  }

  .hero-content .dot-shape2 {
    @apply max-md:right-[6%] max-md:top-[58%];
  }

  /* Author Image Part */
  .author-image-part {
    @apply relative z-[1] mx-auto max-w-[575px] overflow-hidden rounded-b-[580px_565px] text-center;
  }

  .author-image-part .bg-circle {
    @apply absolute left-[5%] top-[4%] z-[-2] h-[425px] w-[425px] rounded-full bg-blackColor;
  }

  .author-image-part .progress-shape {
    @apply absolute bottom-0 right-0 z-[-1] w-full text-center;
  }

  /* Hero Counter Area */
  .hero-counter-area {
    @apply mt-[60px] max-md:w-full;
  }

  .counter-item {
    @apply text-center;
  }

  .counter-title {
    @apply text-primaryColor;
  }

  .hero-counter-area .count-text {
    @apply text-center text-3xl font-bold leading-[1] text-primaryColor md:text-[50px];
  }

  .hero-counter-area .count-text.plus:after {
    content: "+";
  }

  .hero-counter-area .count-text.k-plus:after {
    content: "k+";
  }

  .hero-counter-area .count-text.percent:after {
    content: "%+";
  }

  .hero-counter-area .counter-title {
    @apply block max-md:text-sm;
  }

  /* Hero Image */
  .hero-image {
    @apply relative text-center;
  }

  .hero-image img {
    @apply w-[400px] rotate-[10deg] rounded-[20px] border-[3px] border-white text-center transition-all duration-500 max-md:mt-0;
  }

  .hero-image img:hover {
    @apply rotate-0 transition-all duration-500;
  }

  /* Client Reviews */
  .clienti-reviews .clienti-profile {
    @apply m-0 flex list-none p-0 max-md:justify-center;
  }
  .clienti-reviews {
    @apply max-md:mb-10 max-md:text-center;
  }

  .clienti-reviews .clienti-profile li {
    @apply ml-[-15px] h-[60px] w-[60px] flex-none rounded-full;
  }

  .clienti-reviews .clienti-profile li img {
    @apply rounded-full;
  }

  .clienti-reviews .clienti-profile li:first-child {
    @apply ml-0;
  }

  .clienti-reviews .reviews {
    @apply mt-[20px] block text-xl font-medium text-mainColor;
  }

  .clienti-reviews .reviews span {
    @apply text-[#969696];
  }

  .clienti-reviews .reviews p {
    @apply mt-0 text-[16px] md:mt-[20px];
  }

  /*
* ----------------------------------------------------------------------------------------
* 05.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* About Area */
  .about-area {
    @apply pb-[100px] pt-0 md:pt-[100px];
  }

  .hero-content .job {
    @apply mt-0 inline-block bg-[#f5f5f5] px-[30px] py-[12px] md:mt-[10px] lg:p-0 xl:px-[40px] xl:py-[15px];
  }

  .hero-content .job span {
    @apply relative mr-[10px] inline-block pr-[15px];
  }

  .hero-content .job span:last-child {
    @apply m-0 p-0;
  }

  .hero-content .job span:last-child:after {
    @apply hidden;
  }

  .hero-content .job span:after {
    @apply absolute right-0 top-1/2 h-[6px] w-[6px] -translate-y-1/2 transform rounded-full bg-black/15 content-[''];
  }

  /* About Content Part */
  .about-content-part p {
    @apply text-2xl leading-[1.4em] md:text-[30px];
  }

  /* About Image Part */
  .about-image-part {
    @apply rounded-[10px] border border-black/5 pb-[30px] pt-10 text-center md:p-10;
  }

  .about-image-area img {
    @apply w-1/2 text-center;
  }

  .about-image-part img {
    @apply rounded-[10px];
  }

  .about-image-part h2 {
    @apply mt-[30px] text-[30px];
  }

  /* About Content Part H2 */
  .about-content-part h2 {
    @apply mb-5 mt-[30px] text-3xl leading-[72px] md:text-[40px] lg:text-[55px];
  }

  .about-content-part h2 span {
    @apply border border-black/10 px-[20px];
  }

  /* About Social */
  .about-social {
    @apply mt-[30px] md:max-lg:mb-[30px];
  }

  .about-social ul {
    @apply list-none;
  }

  .about-social ul li {
    @apply mr-[15px] inline-block;
  }

  .about-social ul li a {
    @apply rounded border border-black/5 px-[14px] py-[10px] text-xl;
  }

  /* About Image Part Dot Shape */
  .about-image-part .dot-shape {
    @apply absolute left-[-10%] top-[25%] animate-spin;
  }

  /* About Button */
  .about-btn {
    @apply inline-flex rounded-[30px] border border-[#ededee] px-[20px] py-[15px] text-white;
  }

  .about-btn img {
    @apply mr-[15px] rounded-full;
  }

  .about-btn h6 {
    @apply mb-0 mr-[15px] mt-[-5px] font-normal text-[#77777d];
  }

  .about-btn i {
    @apply -rotate-45 transform;
  }

  /* About Counter Part */
  .about-counter-part {
    @apply relative rounded-[10px] bg-mainColor py-[50px] text-center;
  }

  .about-counter-part:before {
    @apply absolute left-1/2 top-0 h-[28px] w-[28px] -translate-y-1/2 rotate-[48deg] transform bg-mainColor content-[''] md:left-[-22px] md:top-1/2;
  }

  .about-counter-part h2 {
    @apply mb-[15px] text-[80px] font-medium leading-[1] tracking-[-2.4px] text-blackColor;
  }

  .about-counter-part p {
    @apply text-[12px] font-bold uppercase leading-[1.5] tracking-[2.4px] text-blackColor;
  }

  /* About Pre-title */
  h2.about-pre-title {
    @apply text-[22px] capitalize text-primaryColor max-md:mb-[30px];
  }

  .single-about-content-part span {
    @apply text-mainColor;
  }

  /*
* ----------------------------------------------------------------------------------------
* 06.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Services Area */
  .services-area {
    @apply bg-primaryColor py-20 md:py-[100px];
  }

  /* Service Item */
  .service-item {
    @apply relative rounded-[20px] border border-borderColor bg-lighterColor px-[40px] py-[60px] transition duration-[0.5s] max-md:mb-[30px];
  }

  .service-item:hover {
    @apply border-primaryColor transition duration-[0.5s];
  }

  .service-item h5 {
    @apply mb-[60px] inline-block rounded-[6px] border px-[10px] py-[4px] font-textFont text-[14px] text-bodyColor transition duration-[0.5s];
  }

  .service-item:hover h5 {
    @apply bg-mainColor text-primaryColor transition duration-[0.5s];
  }

  .service-item p {
    @apply mb-0 text-bodyColor;
  }

  .service-item h4 {
    @apply mb-[20px] mt-[20px] text-[30px] uppercase text-mainColor;
  }

  .service-item i {
    @apply absolute right-[4%] top-[18%] text-[30px] text-mainColor transition duration-[0.5s];
  }

  .service-item:hover i {
    @apply rotate-[45deg];
  }

  .service-item:hover .details-btn {
    @apply bg-primaryColor text-blackColor;
  }

  /*
* ----------------------------------------------------------------------------------------
* 07.SKILL CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Skill Area */
  .skill-area {
    @apply pt-[20px];
  }

  /* Skill Item */
  .skill-item {
    @apply rounded-[14px] border border-borderColor p-[25px] text-center transition duration-[0.5s];
  }

  .skill-item h5 {
    @apply mt-[20px] text-[16px] leading-[19px] text-subtitleColor;
  }

  .skill-item .percent {
    @apply block p-[10px] text-xl font-[600] text-blackColor;
  }

  .skill-item:hover {
    @apply border-primaryColor;
  }

  .skill-item:hover .percent {
    @apply bg-blackColor text-headingColor;
  }

  .extra-skills ul {
    @apply mt-[30px];
  }

  ul.extra-skills li {
    @apply mb-[10px] mr-[20px] inline-block rounded-[12px] border border-borderColor px-[10px] py-[3px];
  }

  ul.extra-skills li i {
    @apply pr-[10px];
  }

  /*
* ----------------------------------------------------------------------------------------
* 08.RESUME CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Resume Area */
  .resume-area {
    @apply bg-primaryColor pb-[100px] pt-[50px] md:pt-[100px];
  }

  /* Resume Wrapper */
  .resume-wrapper {
    @apply relative;
  }

  .resume-wrapper:before {
    content: "";
    @apply absolute left-0 top-0 h-full;
  }

  .resume-wrapper i {
    @apply mb-[30px] block text-[40px] text-primaryColor;
  }

  /* Resume Box */
  .resume-wrapper .resume-box {
    @apply mb-[20px] rounded-[20px] bg-lighterColor p-[60px];
  }

  .resume-box h2 {
    @apply mb-[20px] mt-[20px] text-[30px] uppercase text-mainColor;
  }

  .resume-wrapper .resume-box:last-child {
    @apply mb-0;
  }

  .resume-wrapper .resume-box .resume-date {
    @apply relative mb-[1em] inline-block rounded-[2em] border-2 border-borderColor bg-mainColor p-[5px] text-[10px] font-[500] uppercase tracking-wider text-white duration-100;
  }

  .resume-wrapper .resume-box .resume-date:before {
    content: "";
    @apply absolute left-[-20px] top-1/2 h-[1px] w-[20px] -translate-y-1/2 transform border-t-2 border-mainColor;
  }

  .resume-wrapper .resume-box .resume-date:after {
    content: "";
    @apply absolute left-[-23px] top-1/2 h-[5px] w-[5px] -translate-y-1/2 transform rounded-full bg-mainColor;
  }

  .resume-box p {
    @apply mb-0 mt-[20px] text-[rgb(119,119,125)];
  }

  .resume-box span {
    @apply text-[rgb(119,119,125)];
  }

  .resume-item .content h4 {
    @apply max-md:text-3xl;
  }

  /* Skill Area */
  .skill-area {
    @apply bg-primaryColor pt-[50px] md:pt-[120px];
  }

  /* Skill Item */
  .skill-item {
    @apply rounded-[14px] bg-lighterColor p-[40px] text-center transition duration-[0.5s];
  }

  .skill-item h5 {
    @apply mb-[20px] mt-[20px] text-xl uppercase text-mainColor;
  }

  .skill-item .percent {
    @apply block p-[10px] text-xl font-[600] text-blackColor;
  }

  .skill-item:hover {
    @apply border-primaryColor;
  }

  .skill-item:hover .percent {
    @apply bg-blackColor text-headingColor;
  }

  /* Extra Skills */

  .extra-skills ul {
    @apply mt-[30px];
  }

  ul.extra-skills li {
    @apply mb-[10px] mr-[20px] inline-block rounded-[12px] border-2 border-borderColor px-[10px] py-[3px];
  }

  ul.extra-skills li i {
    @apply pr-[10px];
  }

  /*
* ----------------------------------------------------------------------------------------
* 09.PORTFOLIO CSS STYLE
* ----------------------------------------------------------------------------------------
*/

  /* Projects Area */
  .projects-area {
    @apply pb-20 pt-[50px] md:py-[100px];
  }

  /* Filter */
  .filter ul {
    @apply m-0 p-0;
  }

  .filter ul li {
    @apply relative mx-[7px] mb-[10px] inline-block cursor-pointer rounded-[2em] border-dashed border-black px-[1em] py-[0.5em] text-[0.9em] text-black transition duration-100;
    font-family: "Roboto Mono", monospace;
  }

  .filter ul li:hover,
  .filter ul li.mixitup-control-active {
    @apply bg-black text-white;
  }

  .theme-dark .filter ul li {
    @apply border-white text-white;
  }

  .theme-dark .filter ul li:hover,
  .theme-dark .filter ul li.mixitup-control-active {
    @apply bg-white text-black;
  }

  /* Portfolio Box */
  .portfolio-box {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: hidden;
    border-radius: 0.5em;
  }

  .portfolio-box:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background-image: -webkit-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.3),
      transparent
    );
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    width: 100%;
    height: 100%;
    -webkit-transition: ease-out 0.16s;
    transition: ease-out 0.16s;
  }

  .portfolio-box img {
    -webkit-transform: scale(1);
    transform: scale(1);
    width: 100%;
    -webkit-transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition: -webkit-transform 0.4s
      cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition:
      transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .portfolio-box .portfolio-category {
    @apply absolute right-4 top-4 inline-block rounded-[2em] bg-[rgba(0,0,0,0.2)] px-[1em] py-[0.5em] text-[0.9em] font-normal uppercase tracking-[5px] text-white;

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }

  .portfolio-box .portfolio-caption {
    @apply invisible absolute bottom-0 left-0 right-0 z-[100] mb-[-6px] px-[30px] pb-6 opacity-0 transition duration-500 ease-out;

    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  .portfolio-box .portfolio-caption * {
    @apply m-0 text-[30px] font-[500] uppercase tracking-[0.5px] text-white transition duration-[0.06s];
  }

  .portfolio-box .portfolio-caption *:hover {
    text-shadow: 0 0 white;
  }

  .portfolio-box:hover:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  .portfolio-box:hover img {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-filter: blur(1.5px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="1.5" /></filter></svg>#filter');
    filter: blur(1.5px);
  }

  .portfolio-box:hover .portfolio-caption {
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    margin-bottom: 0;
  }

  /* Single Project Page */
  .single-project-page-right,
  .single-project-page-left {
    @apply border border-[rgba(0,0,0,0.05)];
  }

  .single-project-page-design {
    @apply pt-[30px];
  }

  .single-project-image img {
    @apply w-full;
  }

  .single-info h3 {
    @apply text-xl;
  }

  .single-image {
    @apply mb-[30px];
  }

  .single-info {
    @apply pb-[30px];
  }

  .single-info:last-child {
    @apply pb-0;
  }

  .single-info p {
    @apply mb-0;
  }

  .project-image {
    @apply mb-[45px];
  }

  .single-project-item {
    @apply border border-borderColor p-[30px];
  }
  .single-service-information-wrap .title {
    @apply max-xl:pb-0 max-xl:text-3xl;
  }

  .project-item.style-two .project-content h3 {
    @apply max-xl:text-xl max-xl:text-white;
  }
  /*
* ----------------------------------------------------------------------------------------
* 10.TESTIMONIALS CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Testimonials Area */
  .testimonials-area {
    @apply bg-primaryColor py-20 md:py-[100px];
  }

  /* Testimonial Item */
  .testimonial-item {
    @apply mb-[30px] rounded-[16px] border border-borderColor bg-lighterColor p-[20px] transition duration-500;
  }

  .testimonial-item .author {
    @apply mb-[25px] inline-flex h-[72px] w-[72px] items-center justify-center overflow-hidden rounded-[12px] bg-[#f4f1ec];
  }

  .testimonial-item .author img {
    @apply h-full w-full object-cover object-center;
  }

  .testimonial-item .text {
    @apply mb-[30px] text-[rgb(119,119,125)];
  }

  .testimonial-item .testi-des h5 {
    @apply mb-0 mt-[20px] text-[30px] uppercase text-mainColor;
  }

  .testimonial-item .testi-des span {
    @apply mb-0 text-[14px] leading-[22px] text-[rgb(119,119,125)];
  }

  .testimonial-item:hover {
    @apply border border-mainColor;
  }

  .testimonial-item:hover .author:before {
    @apply bg-primaryColor text-black;
  }

  /* Testimonials Wrap */
  .testimonials-wrap {
    @apply -mx-[15px];
  }

  .testimonials-wrap .testimonial-item {
    @apply mx-[15px];
  }

  /*
* ----------------------------------------------------------------------------------------
* 11.PRICING CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Pricing Area */
  .pricing-area {
    @apply py-[50px] md:py-[100px];
  }

  /* Pricing Item */
  .pricing-item {
    @apply mb-[30px] rounded-[16px] border border-borderColor p-[10px];
  }

  /* Pricing Header */
  .pricing-item .pricing-header {
    @apply rounded-[16px] border border-borderColor p-[20px];
  }

  .pricing-header h4.title {
    @apply my-[12px] pb-[20px] text-[40px] uppercase leading-[49px] text-subtitleColor;
  }

  .pricing-item .pricing-header .save-percent {
    @apply mb-[20px] text-xl leading-[27px] text-[rgb(119,119,125)];
  }

  .pricing-item .pricing-header .save-percent span {
    @apply text-primaryColor;
  }

  .pricing-item .pricing-header .price {
    @apply text-[38px] font-medium text-primaryColor;
  }

  .pricing-item .pricing-header .price:before {
    content: "$";
  }

  .pricing-item .pricing-header .price:after {
    @apply text-[16px] font-normal text-mainColor;
    content: "/Hour";
  }

  /* Pricing Details */
  .pricing-item .pricing-details {
    @apply p-[20px];
  }

  .pricing-item .pricing-details p {
    @apply mb-[35px];
  }

  .pricing-item .pricing-details ul {
    @apply pb-[12px];
  }

  .pricing-item .pricing-details ul li {
    @apply mb-[10px];
  }

  .pricing-item .pricing-details ul li i {
    @apply pr-[10px];
  }

  .pricing-item .pricing-details ul li.unable {
    @apply text-[rgb(119,119,125)] opacity-35; /* Note: Tailwind does not have direct support for MS filters */
  }

  .pricing-item .pricing-details ul li.unable:before {
    @apply text-white;
  }

  /*
* ----------------------------------------------------------------------------------------
* 12.CLIENTS CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Client Logo Area */
  .client-logo-area {
    @apply pt-50px md:pt-[20px];
  }

  /* Client Logo Wrap */
  .client-logo-wrap {
    @apply mx-[-30px] flex flex-wrap items-center justify-between;
  }

  /* Client Logo Item */
  .client-logo-wrap .client-logo-item {
    @apply mx-[30px] mb-[10px] w-[calc(20%-60px)];
  }

  /*
* ----------------------------------------------------------------------------------------
* 13.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  .contact-area {
    @apply bg-primaryColor py-20 md:py-[100px];
  }
  .contact-form-area {
    @apply rounded-[10px] border border-borderColor bg-lighterColor pb-[20px] pl-[40px] pr-[30px] pt-[50px];
  }

  .contact-form-area .form-group .for-icon {
    @apply absolute right-[26px] mt-4 text-base text-mainColor;
  }

  .contact-form-area .form-group .form-control {
    @apply rounded-[10px] border border-solid border-blackColor bg-transparent px-5 py-[18px] text-base font-normal leading-[1.3] text-mainColor;
  }

  .contact-form-area .form-group input[type="text"] {
    @apply text-mainColor;
  }

  .contact-form-area .form-group .form-control:focus {
    @apply border border-mainColor bg-transparent;
  }

  .contact-form-area .form-group label {
    @apply mb-[18px] text-base uppercase text-mainColor;
  }

  .contact-form-area .form-group .nice-select .current {
    @apply text-[rgba(255,255,255,0.2)];
  }

  .contact-form-area .form-group .nice-select:focus .current {
    @apply text-white;
  }

  .contact-form-area .form-group .nice-select:focus:after {
    @apply border-[white];
  }

  .contact-form-area .form-group .nice-select .list {
    @apply bg-black text-blackColor;
  }

  .contact-form-area .form-group .nice-select .option.focus,
  .contact-form-area .form-group .nice-select .option.selected.focus,
  .contact-form-area .form-group .nice-select .option:hover {
    @apply bg-headingColor;
  }

  .contact-form-area .form-group .nice-select:after {
    @apply absolute right-[26px] mt-[-6px] border-[rgba(255,255,255,0.2)];
  }

  .contact-icon {
    @apply pb-[1px];
  }

  .circle-btn i {
    @apply text-[30px] text-blackColor;
  }

  .single-contact {
    @apply pb-[20px];
  }

  .single-contact p {
    @apply text-[rgb(119,119,125)];
  }

  .single-contact h2 {
    @apply mb-[5px] mt-[15px] text-[20px] font-normal uppercase text-mainColor transition-all duration-300;
  }

  .contact-content-part {
    @apply rounded-[10px] border border-borderColor bg-lighterColor p-[50px] pb-[20px] pl-[40px] pr-[30px] pt-[50px] max-md:mb-[30px];
  }

  .contact-page-content h6 {
    @apply mb-[22px] text-[18px] text-[rgb(119,119,125)];
  }

  .contact-page-content .social-style-one a {
    @apply text-lighbg-lighterColor h-[40px] w-[40px] leading-[40px];
  }

  .contact-page-content .social-style-one a:not(:hover) {
    @apply bg-white;
  }

  .contact-page-form {
    @apply rounded-[14px] border border-borderColor bg-lighterColor p-[45px] pb-[50px] pr-[50px] pt-[45px];
  }

  .contact-page-form .form-group .nice-select,
  .contact-page-form .form-group .form-control {
    @apply bg-[rgba(255,255,255,0.07)];
  }

  /* Location Map */
  .our-location iframe {
    @apply h-[600px];
  }

  /* Input States */
  .input-success,
  .input-error {
    @apply mb-0 mt-[10px] hidden rounded-[4px];
  }

  .input-success {
    @apply border-[1px] border-[#9C383C] bg-[#9C383C] px-4 py-3 text-white;
  }

  .input-error {
    @apply border-[1px] border-[#ff0000];
  }

  .has-error .help-block.with-errors {
    @apply mt-[5px] text-red-600;
  }

  /* Message Submission */
  #msgSubmit.h4 {
    @apply mb-0 mt-[10px] text-[20px];
  }
  /*
* ----------------------------------------------------------------------------------------
* 14.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* Main Footer */
  .main-footer {
    @apply bg-primaryColor px-0 max-md:py-[50px];
  }

  /* Copy Left Text */
  p.copy-left-text {
    @apply text-center text-[12px] font-light leading-[20px] text-mainColor max-md:mt-[60px] md:text-left;
  }

  /* Copy Right Text */
  p.copy-right-text {
    @apply text-center text-[12px] font-light leading-[20px] text-mainColor md:text-right;
  }

  /* Footer Top */
  .footer-top {
    @apply pb-[50px] pt-[10px] md:pb-[100px] md:pt-[100px];
  }

  .footer-top h2 {
    @apply text-center font-bold uppercase leading-[1em] text-mainColor;
  }

  .footer-top p {
    @apply text-center text-xl text-mainColor;
  }

  /* Main Container styles */
  .container {
    @apply mx-auto max-sm:max-w-[90%] sm:max-w-[540px] md:max-w-[720px] lg:max-w-[960px] xl:max-w-[1140px] xxl:max-w-[1296px];
  }

  .progress-wrap {
    @apply invisible translate-y-5 opacity-0 duration-500;
    mix-blend-mode: difference;
  }
  .progress-wrap.active-progress {
    @apply visible translate-y-0 opacity-100;
  }

  /*----------------------------------------*/
  /* BLOG CSS START
/*----------------------------------------*/
  .blog-page-area {
    @apply bg-blackColor py-24;
  }

  .blog_sidebar__wrapper {
    @apply pl-0 max-lg:pl-0 md:pl-10;
  }

  .postbox__title a {
    @apply text-[30px] uppercase;
  }

  .postbox__title a:hover {
    @apply text-blackColor;
  }

  .blog__section-title-7 .section__title-wrapper-7 > p {
    @apply text-[20px] leading-[1.5] text-[#525258];
  }

  .postbox__video .play-btn {
    @apply absolute left-[45%] top-[40%] -translate-x-1/2 -translate-y-1/2 transform;
  }

  .postbox__video .play-btn:hover {
    @apply bg-blackColor text-headingColor;
  }

  .pulse-btn {
    @apply inline-block h-[80px] w-[80px] animate-pulse rounded-full bg-headingColor text-center leading-[80px] text-blackColor;
  }

  .pulse-btn:hover {
    @apply bg-blackColor text-headingColor;
  }

  .tp-pagination ul li a:hover,
  .tp-pagination ul li a.current,
  .tp-pagination ul li span:hover,
  .tp-pagination ul li span.current {
    @apply border-primaryColor bg-[#333] text-white shadow-sm;
  }

  .tp-pagination-style-2 ul li a,
  .tp-pagination-style-2 ul li span {
    @apply border border-[#EAEAEF] leading-[42px] shadow-none;
  }

  .tp-pagination ul li a.page-numbers {
    @apply px-[19px] py-[12px] leading-[1.2];
  }

  .tp-pagination ul li a,
  .tp-pagination ul li span {
    @apply flex min-h-[44px] min-w-[44px] items-center justify-center gap-2 bg-primaryColor text-center text-[16px] font-medium leading-[20px] text-blackColor shadow-sm;
  }

  .tp-pagination ul li {
    @apply mb-5 inline-block;
  }

  .tp-pagination ul li:not(:last-child) {
    @apply mr-px;
  }

  .postbox__breadcrumb {
    @apply mb-[72px];
  }

  .postbox__main-wrapper p {
    @apply mb-[17px] text-[16px] leading-[1.75];
  }

  .postbox__category {
    @apply mb-[5px];
  }

  .postbox__category a {
    @apply bg-tpTheme1 inline-block px-[12px] py-[5px] text-[15px] font-medium leading-none text-white;
  }

  .postbox__category a:hover {
    @apply bg-blackColor text-white;
  }

  .postbox__title {
    @apply mb-[20px] text-[38px];
  }

  .postbox__title {
    @apply lg:max-xl:text-[35px];
  }
  .postbox__title {
    @apply md:max-lg:text-[35px];
  }

  .postbox__title {
    @apply sm:max-md:text-[30px];
  }

  .postbox__title {
    @apply max-sm:text-[25px];
  }

  .postbox__meta {
    @apply mb-[7px];
  }

  .postbox__meta a:hover {
    @apply text-blackColor;
  }

  .postbox__meta-wrapper {
    @apply mb-[10px] text-left;
  }

  [dir="rtl"] .postbox__meta-wrapper {
    @apply text-right;
  }

  .postbox__meta-author-thumb img {
    @apply mr-[12px] h-[50px] w-[50px] rounded-full;
  }

  [dir="rtl"] .postbox__meta-author-thumb img {
    @apply ml-[12px] mr-0;
  }

  .postbox__meta-item {
    @apply mr-[47px];
  }

  [dir="rtl"] .postbox__meta-item {
    @apply ml-[47px];
  }

  .postbox__meta-item {
    @apply lg:max-xl:mr-[40px];
  }
  [dir="rtl"] .postbox__meta-item {
    @apply lg:max-xl:ml-[40px];
  }

  .postbox__meta-item {
    @apply sm:max-md:mr-[35px];
  }
  [dir="rtl"] .postbox__meta-item {
    @apply sm:max-md:ml-[35px];
  }

  .postbox__meta-item {
    @apply max-sm:mr-[25px];
  }
  [dir="rtl"] .postbox__meta-item {
    @apply max-sm:ml-[25px];
  }
  .postbox__meta-item:last-child {
    @apply mr-0;
  }

  [dir="rtl"] .postbox__meta-item:last-child {
    @apply ml-0;
  }

  .postbox__meta-type {
    @apply text-[14px] leading-none text-[#6B6B7B];
  }

  p.postbox__meta-name {
    @apply mb-[4px] text-[15px] font-medium leading-none text-blackColor;
  }

  .postbox__meta span {
    @apply mb-[5px] mr-[30px] inline-block text-[14px] font-medium;
  }

  .postbox__meta span:last-child {
    @apply mr-0;
  }

  [dir="rtl"] .postbox__meta span:last-child {
    @apply ml-0;
  }

  .postbox__meta span svg,
  .postbox__meta span i {
    @apply mr-[5px];
  }

  [dir="rtl"] .postbox__meta span svg,
  [dir="rtl"] .postbox__meta span i {
    @apply ml-[5px] mr-0;
  }

  .postbox__meta span svg {
    @apply translate-y-[-2px] transform;
  }

  .postbox__meta span svg path {
    @apply stroke-blackColor;
  }

  .postbox__meta span i {
    @apply text-blackColor;
  }

  .postbox__meta span a:hover {
    @apply text-blackColor;
  }

  .postbox__details-title {
    @apply mb-[35px] text-[30px] uppercase leading-[1.27] tracking-[-0.02em];
  }

  .postbox__details-title {
    @apply max-sm:text-[25px];
  }

  .postbox__details-title br {
    @apply max-xl:hidden;
  }

  .postbox__details-title-2 {
    @apply text-blackColorSolid mb-[20px] text-[40px] leading-none tracking-[-0.04em];
  }

  .postbox__details-title-3 {
    @apply text-blackColorSolid text-[22px] leading-[1.27] tracking-[-0.02em];
  }

  .postbox__details-social a {
    @apply mb-[8px] mr-[6px] inline-block h-[40px] w-[40px] rounded-full border border-[#DDDDE3] text-center leading-[36px] text-blackColor;
  }

  [dir="rtl"] .postbox__details-social a {
    @apply ml-[6px] mr-0;
  }

  .postbox__details-social a:hover {
    @apply bg-tpTheme1 border-tpTheme1 text-white;
  }

  .postbox__details-social ul li {
    @apply list-none;
  }

  .postbox__details-social ul li a {
    @apply inline-block h-[40px] w-[40px] border border-[#DDDDE3] text-center leading-[38px] text-blackColor;
  }

  .postbox__details-social ul li a:hover {
    @apply bg-tpTheme1 border-tpTheme1 text-white;
  }

  .postbox__details-content {
    @apply mb-[35px] mt-[50px] border-t border-[#EAEAEF] pt-[52px];
  }

  .postbox__details-content p {
    @apply pr-[15px];
  }

  [dir="rtl"] .postbox__details-content p {
    @apply pl-[15px] pr-0;
  }

  .postbox__img-caption {
    @apply mt-[18px] text-center text-[13px] font-normal text-[#6B6B7B];
  }

  .postbox__img-caption a {
    @apply font-medium text-blackColor;
  }

  .postbox__features {
    @apply mb-[30px];
  }

  .postbox__features-title {
    @apply mb-[15px] text-[34px] uppercase leading-none tracking-[-0.02em];
  }

  .postbox__features p {
    @apply mb-[30px];
  }

  .postbox__features ul li {
    @apply relative list-none pl-[15px] text-[16px] leading-[2] text-white;
  }

  [dir="rtl"] .postbox__features ul li {
    @apply pl-0 pr-[15px];
  }

  /* new post commet */
  [dir="rtl"] .postbox__features ul li::after {
    @apply right-0;
  }

  .postbox__features-2 {
    @apply mb-6 mt-6;
  }

  .postbox__more-menu span {
    @apply inline-block h-12 w-12 rounded-full border border-black border-opacity-20 text-center leading-[46px];
  }

  .postbox__more-menu span svg {
    @apply -translate-y-px;
  }

  .postbox__more-menu span:hover {
    @apply bg-tp-theme-1 border-tp-theme-1 text-white;
  }

  .postbox__more-navigation {
    @apply shadow-opacity-6 mt-12 p-8 shadow-sm;
  }

  .postbox__more-navigation-2 {
    @apply p-10 pb-6 pt-6;
  }

  .postbox__more-icon a {
    @apply mr-4 text-lg;
  }

  [dir="rtl"] .postbox__more-icon a {
    @apply ml-4 mr-0;
  }

  .postbox__more-icon a svg {
    @apply -translate-y-[2px];
  }

  .postbox__more-icon a:hover {
    @apply text-tp-theme-1;
  }

  .postbox__more-content p {
    @apply mb-1 text-xs font-medium uppercase leading-tight tracking-widest text-gray-500;
  }

  .postbox__more-content p a:hover {
    @apply text-tp-theme-1;
  }

  .postbox__more-content h4 {
    @apply mb-0 text-lg leading-tight tracking-tight;
  }

  .postbox__more-content h4 a:hover {
    @apply text-tp-theme-1;
  }

  .postbox__more-right {
    @apply text-right;
  }

  [dir="rtl"] .postbox__more-right {
    @apply text-left;
  }

  .postbox__author {
    @apply p-8 pr-16;
  }

  [dir="rtl"] .postbox__author {
    @apply pl-16 pr-8;
  }

  @media (min-width: 576px) and (max-width: 767px) {
    .postbox__author {
      @apply pr-9;
    }
    [dir="rtl"] .postbox__author {
      @apply pl-9 pr-0;
    }
  }

  @media (max-width: 575px) {
    .postbox__author {
      @apply pr-8;
    }
    [dir="rtl"] .postbox__author {
      @apply pl-8 pr-0;
    }
  }

  .postbox__author-thumb img {
    @apply mr-6 h-16 w-16 rounded-full;
  }

  [dir="rtl"] .postbox__author-thumb img {
    @apply ml-6 mr-0;
  }

  .postbox__author-title {
    @apply font-inter text-lg font-semibold;
  }

  .postbox__author-content p {
    @apply mb-5 text-sm leading-relaxed;
  }

  .postbox__author-social a {
    @apply mr-1 inline-block h-9 w-9 border border-gray-300 text-center leading-8;
  }

  [dir="rtl"] .postbox__author-social a {
    @apply ml-1 mr-0;
  }

  .postbox__author-social a:last-child {
    @apply mr-0;
  }

  [dir="rtl"] .postbox__author-social a:last-child {
    @apply ml-0;
  }

  .postbox__author-social a:hover {
    @apply bg-tp-theme-1 border-tp-theme-1 text-white;
  }

  .postbox__author-2 {
    @apply border-tp-common-black border pb-12;
  }

  .postbox__comment ul li {
    @apply mb-5 list-none;
  }

  .postbox__comment ul.children {
    @apply ml-24 mt-5;
  }

  [dir="rtl"] .postbox__comment ul.children {
    @apply ml-0 mr-24;
  }

  @media (min-width: 576px) and (max-width: 767px) {
    .postbox__comment ul.children {
      @apply ml-10;
    }
    [dir="rtl"] .postbox__comment ul.children {
      @apply ml-0 mr-10;
    }
  }

  @media (max-width: 575px) {
    .postbox__comment ul.children {
      @apply ml-4;
    }
    [dir="rtl"] .postbox__comment ul.children {
      @apply mx-4;
    }
  }

  .postbox__comment-form-title {
    @apply mb-2.5 text-4xl uppercase leading-tight tracking-tight;
  }

  .postbox__comment-form p {
    @apply mb-12 text-sm leading-tight;
  }

  .postbox__comment-input {
    @apply relative mb-5;
  }

  .postbox__comment-input span {
    @apply mb-3 block font-semibold;
  }

  .postbox__comment-input input,
  .postbox__comment-input textarea {
    @apply w-full border-blackColor border-opacity-60 bg-primaryColor p-6 text-sm text-blackColor shadow-sm;
  }

  .postbox__comment-input textarea {
    @apply resize-none pb-6 pt-6;
  }

  .postbox__comment-title {
    @apply mb-9 text-4xl uppercase leading-tight tracking-tight;
  }

  .postbox__comment-box {
    @apply bg-primaryColor p-8 pb-8 pr-20 shadow-sm;
  }

  [dir="rtl"] .postbox__comment-box {
    @apply pl-20 pr-0;
  }

  @media (min-width: 992px) and (max-width: 1199px),
    (min-width: 576px) and (max-width: 767px) {
    .postbox__comment-box {
      @apply pr-9;
    }
    [dir="rtl"] .postbox__comment-box {
      @apply pl-9 pr-0;
    }
  }

  @media (max-width: 575px) {
    .postbox__comment-box {
      @apply pr-9;
    }
    [dir="rtl"] .postbox__comment-box {
      @apply pl-9 pr-0;
    }
  }

  .postbox__comment-info {
    @apply flex-shrink-0;
  }

  .postbox__comment-avater img {
    @apply mr-5 h-20 w-20;
  }

  [dir="rtl"] .postbox__comment-avater img {
    @apply ml-5 mr-0;
  }

  .postbox__comment-name {
    @apply mb-1;
  }

  .postbox__comment-name h5 {
    @apply mb-2.5 text-lg leading-tight;
  }

  .postbox__comment-text p {
    @apply mb-5 text-base leading-relaxed text-bodyColor;
  }

  .postbox__comment-reply a {
    @apply inline-block border border-black px-4 py-1.5 text-sm font-medium leading-tight tracking-tight text-black;
  }

  .postbox__comment-reply a:hover {
    @apply bg-black text-headingColor;
  }

  .postbox__comment-agree {
    @apply pl-1;
  }

  [dir="rtl"] .postbox__comment-agree {
    @apply pl-0 pr-1 text-white;
  }

  .postbox__comment-agree input {
    @apply m-0 block size-[18px] appearance-none border border-gray-200 bg-gray-100 shadow-none outline-none;
    @apply -translate-y-0.5;
  }

  .postbox__comment-agree input:checked {
    @apply relative border-transparent bg-primaryColor;
  }

  /* new post commet */

  .postbox__quote {
    margin-top: 40px;
    text-align: center;
    background-color: var(--tp-common-white);
    box-shadow: 0px 1px 3px rgba(3, 4, 28, 0.1);
  }
  .postbox__quote-icon span {
    font-size: 34px;
    display: inline-block;
    color: #000;
    margin-bottom: 9px;
  }
  .postbox__quote p {
    @apply text-center text-[22px] font-medium text-blackColor;

    line-height: 1.36;
    letter-spacing: -0.02em;
  }
  .postbox__quote blockquote {
    @apply mb-11 bg-primaryColor;
    padding: 32px 60px 35px;
  }
  @media only screen and (min-width: 576px) and (max-width: 767px) {
    .postbox__quote blockquote {
      padding-left: 40px;
      padding-right: 40px;
    }
  }
  @media (max-width: 575px) {
    .postbox__quote blockquote {
      padding-left: 30px;
      padding-right: 30px;
    }
  }

  .postbox__features ul li::after {
    @apply absolute left-0 top-1/2 h-[5px] w-[5px] -translate-y-1/2 transform rounded-full bg-headingColor content-[""];
  }

  .postbox__share span {
    @apply mr-[12px] text-[14px] font-bold;
  }
  [dir="rtl"] .postbox__share span {
    @apply ml-0 mr-[12px];
  }
  .postbox__share a {
    @apply mb-[6px] inline-block h-[36px] w-[36px] bg-primaryColor text-center leading-[36px] text-blackColor shadow-[0px_1px_3px_rgba(3,4,28,0.1)];
  }
  .postbox__share a:hover {
    @apply bg-headingColor;
  }
  .postbox__share-2 a {
    @apply mr-[1px] border border-[#eaeaef] leading-[34px] shadow-none;
  }
  [dir="rtl"] .postbox__share-2 a {
    @apply ml-[1px] mr-0;
  }
  .postbox__thumb-overlay {
    @apply relative;
  }
  .postbox__thumb-overlay::after {
    @apply absolute inset-0 bg-[rgba(3,4,28,0.3)];
  }
  .postbox__content {
    @apply bg-primaryColor p-[43px_50px_45px];
  }
  .postbox__content {
    @apply max-sm:p-[33px_28px_35px];
  }
  .postbox__content p {
    @apply mb-[30px] text-[#777777];
  }
  .postbox__content .tp-btn {
    @apply px-[40px] py-[17px] text-[16px] font-normal tracking-normal;
  }

  .postbox__audio {
    @apply h-[420px];
  }
  .postbox__audio iframe {
    @apply h-full w-full;
  }
  .postbox__nav button {
    @apply absolute left-[15px] top-1/2 z-[1] h-[50px] w-[50px] -translate-y-1/2 transform border border-[rgba(255,255,255,0.7)] bg-transparent text-center text-[18px] leading-[48px];
  }

  .postbox__nav button.postbox-slider-button-next {
    @apply left-auto right-[15px];
  }
  [dir="rtl"] .postbox__nav button.postbox-slider-button-next {
    @apply left-[15px] right-auto;
  }
  .postbox__style-2 .postbox__top {
    @apply relative z-[1] pb-[150px] pt-[185px] text-center;
  }
  .postbox__style-2 .postbox__title {
    @apply mb-[27px] text-[70px];
  }
  .postbox__style-2 .postbox__title {
    @apply lg:max-xl:text-[50px];
  }
  .postbox__style-2 .postbox__title {
    @apply md:text-[45px];
  }
  .postbox__style-2 .postbox__title {
    @apply sm:text-[40px];
  }
  .postbox__style-2 .postbox__title {
    @apply max-sm:text-[30px];
  }
  .postbox__style-2 .postbox__thumb {
    @apply absolute left-0 top-0 -z-10 h-full w-full bg-cover bg-center bg-no-repeat;
  }
  .postbox__style-2 .postbox__meta-type {
    @apply text-white/[0.7607843137];
  }
  .postbox__style-2 p.postbox__meta-name {
    @apply text-[var(--tp-common-white)];
  }

  .rc__post {
    @apply mb-1.5 bg-primaryColor p-3 pr-9 shadow-[0px_1px_3px_rgba(3,4,28,0.06)] transition duration-500;
  }
  [dir="rtl"] .rc__post {
    @apply pl-9 pr-3;
  }
  .rc__post:hover .rc__post-thumb img {
    @apply scale-110 transition duration-500;
  }
  .rc__post:last-child {
    @apply mb-0;
  }
  .rc__post-thumb {
    @apply mr-6 flex-none overflow-hidden;
  }
  [dir="rtl"] .rc__post-thumb {
    @apply ml-6 mr-0;
  }
  .rc__post-thumb img {
    @apply h-[90px] w-[90px] object-cover;
  }
  .rc__post-title {
    @apply text-base leading-tight;
  }
  .rc__post-title a:hover {
    @apply text-blackColor;
  }
  .rc__meta span {
    @apply text-sm text-[#333];
  }
  .rc__meta span svg,
  .rc__meta span i {
    @apply mr-1.5;
  }
  [dir="rtl"] .rc__meta span svg,
  [dir="rtl"] .rc__meta span i {
    @apply ml-1.5 mr-0;
  }
  .rc__meta span svg {
    @apply -translate-y-0.5;
  }
  .rc__meta span:hover a {
    @apply text-[var(--tp-theme-1)];
  }

  .sidebar__wrapper {
    @apply overflow-hidden lg:max-xl:pl-0;
  }
  [dir="rtl"] .sidebar__wrapper {
    @apply lg:max-xl:pr-0;
  }

  .sidebar__wrapper {
    @apply max-lg:pl-0;
  }
  [dir="rtl"] .sidebar__wrapper {
    @apply max-lg:pr-0;
  }
  .sidebar__widget-title {
    @apply relative mb-[23px] inline-block text-3xl font-medium uppercase;
  }
  .sidebar__widget ul li {
    @apply mb-1.5 list-none text-xs font-medium;
  }
  .sidebar__widget ul li:last-child {
    @apply mb-0;
  }
  .sidebar__widget ul li a {
    @apply relative block bg-primaryColor py-[7px] pl-[33px] pr-[14px] text-sm font-medium text-blackColor shadow-[0px_1px_3px_rgba(3,4,28,0.06)];
  }
  [dir="rtl"] .sidebar__widget ul li a {
    @apply pl-[14px] pr-[33px];
  }
  .sidebar__widget ul li a::after {
    @apply absolute left-5 top-1/2 h-1 w-1 -translate-x-1/2 -translate-y-1/2 rounded-full text-blackColor content-[''];
  }
  [dir="rtl"] .sidebar__widget ul li a::after {
    @apply left-auto right-5;
  }
  .sidebar__widget ul li a span {
    @apply float-right mt-0.5 inline-block rounded-full border border-[#333] px-[11px] py-1 text-xs font-medium leading-none text-blackColor;
  }
  [dir="rtl"] .sidebar__widget ul li a span {
    @apply float-left;
  }
  .sidebar__widget ul li a:hover {
    @apply bg-headingColor;
  }

  .sidebar__widget ul li:hover {
    @apply text-[var(--tp-common-white)];
  }
  .sidebar__widget ul li ul {
    @apply pl-[15px] pt-1.5;
  }
  [dir="rtl"] .sidebar__widget ul li ul {
    @apply pl-0 pr-[15px];
  }
  .sidebar__widget-style-2 ul li a {
    @apply border border-[#eaeaef] shadow-none;
  }
  .sidebar__widget-style-2 ul li a:hover {
    @apply;
  }
  .sidebar__widget-style-2 .sidebar__author {
    @apply border border-[#eaeaef] shadow-none;
  }
  .sidebar__widget-style-2 .sidebar__search input {
    @apply border border-[#eaeaef] shadow-none;
  }
  .sidebar__widget-style-2 .sidebar__search input:focus,
  .sidebar__widget-style-2 .sidebar__search input:hover {
    @apply border-[var(--tp-common-black)];
  }
  .sidebar__widget-style-2 .sidebar__search button {
    @apply bg-transparent;
  }
  .sidebar__widget-style-2 .rc__post {
    @apply border border-[#eaeaef] bg-[var(--tp-common-white)] shadow-none;
  }
  .sidebar__widget-style-2 .tagcloud a {
    @apply border border-[#eaeaef] shadow-none;
  }

  .sidebar__search {
    @apply relative;
  }
  .sidebar__search input {
    @apply h-[60px] w-full border-0 bg-primaryColor pl-[25px] pr-[50px] text-sm leading-[60px] shadow-[0px_1px_3px_rgba(3,4,28,0.06)] outline-none;
  }
  [dir="rtl"] .sidebar__search input {
    @apply pl-[50px] pr-[25px];
  }
  .sidebar__search input::placeholder {
    @apply text-sm tracking-[-0.02em] text-[#333];
  }
  .sidebar__search button {
    @apply absolute right-0 top-0 h-full bg-primaryColor px-6 leading-[60px] text-blackColor;
  }
  [dir="rtl"] .sidebar__search button {
    @apply left-0 right-auto;
  }
  .sidebar__search button svg {
    @apply -translate-y-0.5;
  }
  .sidebar__search button:hover {
    @apply text-[var(--tp-theme-1)];
  }
  .sidebar__banner::after {
    @apply absolute left-0 top-0 h-full w-full bg-black/50 content-[''];
  }
  [dir="rtl"] .sidebar__banner::after {
    @apply left-auto right-0;
  }
  .sidebar__banner-content {
    @apply absolute left-1/2 top-1/2 z-[1] -translate-x-1/2 -translate-y-1/2 bg-[var(--tp-common-white)];
  }
  .sidebar__banner-content h4 {
    @apply mb-0 px-5 py-[15px] text-2xl uppercase;
  }
  .sidebar__author {
    @apply bg-primaryColor px-[50px] py-[45px] text-center shadow-[0px_1px_3px_rgba(3,4,28,0.06)];
  }
  .sidebar__author-thumb {
    @apply mb-[25px];
  }
  .sidebar__author-thumb img {
    @apply h-36 w-36 rounded-full border border-[#e0e0e0] p-3;
  }
  .sidebar__author-title {
    @apply mb-5 mt-5 text-3xl uppercase text-mainColor;
  }
  .sidebar__author-content p {
    @apply mb-[22px] text-sm leading-[1.47] text-[rgb(119,119,125)];
  }
  .sidebar__author-social a {
    @apply mr-[3px] inline-block h-10 w-10 border border-[rgb(119,119,125)] text-center leading-[38px] text-blackColor;
  }
  [dir="rtl"] .sidebar__author-social a {
    @apply ml-[3px] mr-0;
  }
  .sidebar__author-social a:last-child {
    @apply mr-0;
  }
  [dir="rtl"] .sidebar__author-social a:last-child {
    @apply ml-0;
  }
  .sidebar__author-social a:hover {
    @apply border-headingColor bg-headingColor text-blackColor;
  }

  .tagcloud span {
    @apply mr-3 text-sm font-bold;
  }
  [dir="rtl"] .tagcloud span {
    @apply ml-3 mr-0;
  }
  .tagcloud a {
    @apply mb-1.5 mr-0.5 inline-block bg-primaryColor px-[18.5px] py-[9px] text-sm font-medium capitalize leading-none text-blackColor shadow-[0px_1px_3px_rgba(3,4,28,0.06)];
  }
  [dir="rtl"] .tagcloud a {
    @apply ml-0.5 mr-0;
  }
  .tagcloud a:hover {
    @apply bg-headingColor;
  }
  .tagcloud-sm a {
    @apply px-[12.5px] py-2;
  }
  .tagcloud-style-2 a {
    @apply border border-solid border-[#eaeaef] px-[11.5px] py-[7px] shadow-none;
  }

  blockquote {
    @apply mb-[35px] bg-[var(--tp-grey-1)] px-[50px] py-[35px] max-sm:px-[15px];
  }

  blockquote p {
    @apply text-[20px] font-normal leading-[1.5] text-[#57565e];
  }
  blockquote cite {
    @apply relative mt-[10px] block text-[18px] font-semibold not-italic text-[#070337];
  }
  blockquote cite::before {
    content: "";
    @apply relative top-[-4px] mr-[10px] inline-block h-[2px] w-[40px] pb-0 text-center text-[28px] font-normal;
  }
  [dir="rtl"] blockquote cite::before {
    @apply ml-[10px] mr-0;
  }

  /*
* ----------------------------------------------------------------------------------------
* 16.BLOG CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  /* BLOG CSS STYLE */
  .blog-area {
    @apply py-20 md:py-[100px];
  }

  .blog-post-box {
    @apply mb-14 border border-[#242424] p-10;
  }

  .blog-post-box .blog-post-img {
    @apply relative transform-gpu overflow-hidden rounded-md;
  }

  .blog-post-box .blog-post-img img {
    @apply transform transition-transform duration-500 ease-out;
  }

  .blog-post-box .blog-post-img:hover img {
    @apply scale-105 blur-sm;
  }

  .blog-post-box .blog-post-img .blog-post-category {
    @apply absolute left-4 top-4 rounded-full bg-black/20 px-4 py-2 text-sm font-normal uppercase tracking-wider text-white backdrop-blur-sm;
  }

  .blog-post-box .blog-post-img .blog-post-category a {
    @apply text-xs text-primaryColor;
  }

  .blog-post-box .blog-post-img .blog-post-category a:hover {
    @apply text-white;
  }

  .blog-post-caption {
    @apply pl-0 max-md:pt-[30px] lg:pl-14;
  }

  .blog-post-caption h2 a {
    @apply block py-2.5 font-titleFont text-[40px] font-medium uppercase !leading-[130%] tracking-[-0.3px] text-white;
  }

  .blog-post-caption h3 {
    @apply font-textFont text-xs uppercase text-primaryColor;
  }

  .blog-category {
    @apply py-20;
  }

  .single-blog-post {
    @apply mb-12;
  }

  .single-blog-post h2 {
    @apply text-xl;
  }

  .single-blog-post a.read-more {
    @apply border border-black bg-black px-5 py-1.5 text-white;
  }

  .single-blog-post a.read-more:hover {
    @apply bg-transparent text-black;
  }

  .post-date {
    @apply mb-2 border-b border-borderColor pb-8;
  }

  .post-date span {
    @apply bg-primatext-primaryColor mr-5 rounded-lg px-5 py-2 uppercase text-headingColor;
  }

  .single-blog-post p {
    @apply mb-5 text-lg;
  }

  .blog-carosel-control {
    @apply absolute top-1/2 -mt-12 h-24 w-6 bg-gray-800 text-center text-3xl leading-[5rem] text-black;
  }

  .blog-carosel-control.right {
    @apply right-0;
  }

  .pagination {
    @apply m-0;
  }

  ul.blog_pagination li a {
    @apply m-1 h-9 w-9 rounded-none border border-gray-300 text-lg leading-5 text-gray-800;
  }

  .black-icon {
    @apply bg-gray-800 text-white;
  }

  .black-icon:hover {
    @apply bg-gray-800;
  }

  .black-icon i {
    @apply text-sm;
  }

  ul.blog_pagination li a:hover {
    @apply border border-gray-800 bg-gray-800 text-white;
  }

  .single-side-bar {
    @apply mb-10;
  }

  .single-side-bar h2 {
    @apply mb-4 mt-0 text-lg uppercase;
  }

  .single-side-bar input {
    @apply h-12 rounded-none border border-gray-800 bg-transparent pl-2 text-gray-300 shadow-none;
  }

  .single-side-bar input:hover,
  .single-side-bar input:focus {
    @apply border border-gray-800 shadow-none outline-none;
  }

  .single-side-bar button {
    @apply h-10 bg-gray-800 px-8 text-white transition duration-300;
  }

  .single-side-bar button:hover {
    @apply border border-gray-800 bg-transparent text-white;
  }

  .single-side-bar ul {
    @apply m-0 list-none p-0;
  }

  .single-side-bar ul li a {
    @apply block py-1 text-lg text-white opacity-70;
  }

  .single-side-bar ul li a:hover {
    @apply text-primaryColor;
  }

  .single-blog-social-icon {
    @apply float-left mb-2.5 w-44;
  }

  .single-blog-social-icon i {
    @apply leading-12 float-left mr-4 h-12 w-12 rounded-full border border-gray-800 text-center text-2xl;
  }

  .tag a {
    @apply float-left mx-1.5 my-1 rounded-lg border border-borderColor px-5 py-2 text-sm font-light text-white transition-all duration-300 ease-in;
  }

  .tag a:hover {
    @apply border border-gray-800 bg-transparent text-gray-400;
  }

  .single-blog-post-details blockquote {
    @apply border-l border-white pl-10 text-lg leading-7;
  }

  .single-blog-post-details img {
    @apply w-full;
  }

  .single-blog-post-details h2 {
    @apply py-5 text-4xl text-white;
  }

  .next-previews-button-design {
    @apply mt-10;
  }

  .next-previews-button-design a {
    @apply text-black;
  }

  .post-comments-area {
    @apply mt-12;
  }

  .post-comments-area h2 {
    @apply mb-5;
  }

  .single-comment {
    @apply mb-14;
  }

  .single-comment img {
    @apply float-left mb-20 mr-12 w-24 rounded-full;
  }

  .single-comment h5 {
    @apply font-bold;
  }

  .single-comment a {
    @apply text-white transition-all duration-300 ease-in;
  }

  .single-comment a:hover {
    @apply text-gray-800;
  }

  .comment-form-area {
    @apply ml-36 rounded-lg bg-gray-900 p-12;
  }

  .comment-form-area input,
  .comment-form-area textarea {
    @apply rounded-none border border-gray-300 bg-white pl-2 text-blackColor shadow-none;
  }

  .comment-form-area button {
    @apply bg-primatext-primaryColor rounded-lg border border-gray-800 px-5 py-2 text-lg text-blackColor;
  }

  .owl-theme .owl-controls .owl-page span {
    @apply m-1.5 block h-1.5 w-1.5 rounded-full bg-black opacity-50;
  }

  .single-blog h5 {
    @apply text-xs font-light;
  }

  .single-blog h3 {
    @apply inline-block px-4 text-xs uppercase tracking-wide text-gray-500;
  }

  .blog-description {
    @apply border border-gray-100 px-7 py-5 text-center;
  }

  .single-side-bar {
    @apply mb-7 rounded-lg border border-borderColor p-6 transition duration-500;
  }

  .company-design-area {
    @apply py-24;
  }

  .company-design-area h2 {
    @apply mb-7 text-center text-lg font-medium uppercase tracking-[5px] text-white;
  }

  .scroller__inner {
    @apply flex flex-wrap gap-20 py-4;
  }

  /*
* ----------------------------------------------------------------------------------------
* 17.Mobile Menu CSS STYLE
* ----------------------------------------------------------------------------------------
*/
  a.meanmenu-reveal {
    @apply hidden;
  }

  /* when under viewport size, .mean-container is added to body */
  .mean-container .mean-bar {
    @apply relative z-[999999] float-left min-h-[42px] w-full bg-transparent px-0 py-1;
  }

  .mean-container a.meanmenu-reveal {
    @apply absolute right-0 top-0 block size-[22px] cursor-pointer py-[13px] pl-[11px] pr-[13px] -indent-[9999em] text-base font-bold leading-[22px] text-white;
  }

  .mean-container a.meanmenu-reveal span {
    @apply mt-[3px] block h-[3px] bg-white;
  }

  .mean-container .mean-nav {
    @apply float-left mt-11 w-full bg-transparent;
  }

  .mean-container .mean-nav ul {
    @apply m-0 w-full p-0;
  }

  .mean-container .mean-nav ul li {
    @apply relative float-left w-full;
  }

  .mean-container .mean-nav ul li a {
    @apply float-left m-0 block w-[90%] border-t border-[#26272b] px-[5%] py-2.5 text-left uppercase text-white;
  }

  .mean-container .mean-nav ul li li a {
    @apply visible w-[80%] px-[10%] py-2.5;
    text-shadow: none !important;
  }

  .mean-container .mean-nav ul li.mean-last a {
    @apply mb-0;
    margin-bottom: 0;
  }

  .mean-container .mean-nav ul li li li a {
    @apply w-[70%] px-[15%] py-2.5;
  }

  .mean-container .mean-nav ul li li li li a {
    @apply w-[60%] px-[20%] py-2.5;
  }

  .mean-container .mean-nav ul li li li li li a {
    @apply w-1/2 px-[25%] py-2.5;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    @apply absolute right-0 top-1.5 z-[2] mt-px h-[32px] w-[26px] !border-none bg-transparent text-center text-sm font-bold;
  }

  .mean-container .mean-push {
    @apply float-left clear-both m-0 w-full p-0;
  }

  .mean-nav .wrapper {
    @apply m-0 w-full p-0;
  }

  /* Fix for box sizing on Foundation Framework etc. */
  .mean-container .mean-bar,
  .mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }

  .mean-remove {
    display: none !important;
  }
}

.dashboard-page {
  background: #f4f0eb;
  color: #191816;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
}

.dashboard-shell:not(.is-authenticated) > :not(.dashboard-login) {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.dashboard-shell.is-authenticated .dashboard-login {
  display: none;
}

.dashboard-login {
  align-items: center;
  background: #f8fafc;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 2000;
}

.dashboard-login__panel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 16px;
  max-width: 448px;
  padding: 32px;
  width: 100%;
}

.dashboard-login__brand {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.dashboard-login__brand img {
  height: 34px;
  object-fit: contain;
  width: auto;
}

.dashboard-login__panel p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
  margin: -6px 0 14px;
  text-transform: none;
}

.dashboard-login__panel h1 {
  color: #191816;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.dashboard-login__field {
  display: grid;
  gap: 8px;
}

.dashboard-login__field label {
  color: #191816;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.dashboard-login__field input {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  color: #191816;
  font: inherit;
  font-size: 14px;
  min-height: 40px;
  outline: 0;
  padding: 8px 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}

.dashboard-login__field input:focus {
  border-color: #9c383c;
  box-shadow: 0 0 0 3px rgba(156, 56, 60, 0.16);
}

.dashboard-login__panel span {
  color: #b42318;
  font-size: 13px;
  min-height: 18px;
}

.dashboard-login__submit {
  align-items: center;
  background: #9c383c;
  border: 1px solid #9c383c;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}

.dashboard-login__submit:hover,
.dashboard-login__submit:active,
.dashboard-login__submit:focus-visible {
  background: #873033;
  border-color: #873033;
  box-shadow: 0 0 0 3px rgba(156, 56, 60, 0.16);
}

.dashboard-sidebar {
  background: #191816;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 100vh;
  padding: 24px;
  position: sticky;
  top: 0;
}

.dashboard-brand {
  align-items: center;
  color: #fff;
  display: flex;
  gap: 14px;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.dashboard-brand:hover {
  color: #9c383c;
}

.dashboard-brand img {
  max-height: 40px;
  width: auto;
}

.dashboard-nav {
  display: grid;
  gap: 10px;
}

.dashboard-nav__item,
.dashboard-back {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 12px;
  grid-template-columns: 20px 1fr auto;
  min-height: 48px;
  padding: 0 12px;
  text-align: left;
}

.dashboard-nav__item strong {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 8px;
}

.dashboard-nav__item:hover,
.dashboard-nav__item.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.dashboard-back {
  grid-template-columns: 20px 1fr;
  margin-top: auto;
}

.dashboard-back:hover {
  background: #9c383c;
  color: #191816;
}

.dashboard-main {
  display: grid;
  gap: 24px;
  padding: 32px;
}

.dashboard-header {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.dashboard-header > .dashboard-button {
  align-self: flex-start;
}

.dashboard-eyebrow {
  align-items: center;
  color: #9c383c;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.dashboard-header h1 {
  color: #191816;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  margin: 10px 0 0;
}

.dashboard-header span {
  color: #66615b;
  display: block;
  margin-top: 10px;
  max-width: 640px;
}

.dashboard-button {
  align-items: center;
  border-radius: 16px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  white-space: nowrap;
}

.dashboard-button--primary {
  background: #191816;
  border: 1px solid #191816;
  color: #fff;
}

.dashboard-button--primary:hover {
  background: #9c383c;
  border-color: #9c383c;
  color: #191816;
}

.dashboard-button--secondary {
  background: #fff;
  border: 1px solid #d8d0c8;
  color: #191816;
}

.dashboard-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dashboard-stats article,
.dashboard-table,
.dashboard-modal__panel {
  background: #fff;
  border: 1px solid #e0d8cf;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(33, 30, 26, 0.06);
}

.dashboard-stats article {
  display: grid;
  gap: 8px;
  min-height: 104px;
  padding: 18px;
}

.dashboard-stats span {
  color: #716b64;
  font-size: 14px;
}

.dashboard-stats strong {
  color: #191816;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  line-height: 1;
}

.dashboard-toolbar {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.dashboard-search {
  align-items: center;
  background: #fff;
  border: 1px solid #ddd4cb;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 48px;
  min-width: min(430px, 100%);
  padding: 0 14px;
}

.dashboard-search input,
.dashboard-modal input,
.dashboard-modal select,
.dashboard-modal textarea {
  background: transparent;
  border: 0;
  color: #191816;
  font: inherit;
  outline: 0;
  width: 100%;
}

.dashboard-segments {
  background: #e6ded6;
  border-radius: 8px;
  display: flex;
  gap: 4px;
  padding: 4px;
}

.dashboard-segments button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #625c55;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 38px;
  padding: 0 12px;
}

.dashboard-segments button.is-active {
  background: #fff;
  color: #191816;
  box-shadow: 0 8px 20px rgba(33, 30, 26, 0.08);
}

.dashboard-table {
  overflow: hidden;
}

.dashboard-table__head,
.dashboard-row {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(320px, 1.8fr) 132px 126px 140px 100px;
}

.dashboard-table__head {
  background: #191816;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  padding: 14px 18px;
  text-transform: uppercase;
}

.dashboard-row {
  align-items: center;
  border-top: 1px solid #ece5df;
  padding: 18px;
}

.dashboard-row__title {
  align-items: center;
  color: inherit;
  display: grid;
  gap: 7px;
  grid-template-columns: auto 1fr;
  min-width: 0;
}

.dashboard-row__title:hover strong {
  color: #9c383c;
}

.dashboard-row__title img {
  aspect-ratio: 6 / 5;
  border-radius: 8px;
  height: 74px;
  object-fit: cover;
  width: 88px;
}

.dashboard-row__title strong {
  color: #191816;
  font-size: 16px;
}

.dashboard-row__title p {
  color: #625c55;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

.dashboard-row__title small {
  color: #8b837a;
}

.dashboard-open-link {
  align-items: center;
  color: #191816;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 6px;
}

.dashboard-open-link:hover {
  color: #9c383c;
}

.dashboard-status {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  width: fit-content;
}

.dashboard-status--published {
  background: #e7f5da;
  color: #4f6500;
}

.dashboard-status--draft {
  background: #f3eee8;
  color: #735e48;
}

.dashboard-status--review {
  background: #fff0d9;
  color: #935b00;
}

.dashboard-row__actions {
  display: flex;
  gap: 8px;
}

.dashboard-row__actions button,
.dashboard-modal header button {
  align-items: center;
  background: #f5f0eb;
  border: 1px solid #ddd4cb;
  border-radius: 8px;
  color: #191816;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.dashboard-row__actions button:hover,
.dashboard-modal header button:hover {
  background: #191816;
  color: #fff;
}

.dashboard-empty {
  color: #716b64;
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 54px 20px;
  text-align: center;
}

.dashboard-empty strong {
  color: #191816;
}

.dashboard-modal {
  align-items: center;
  background: rgba(25, 24, 22, 0.52);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 1000;
}

.dashboard-modal.is-open {
  display: flex;
}

.dashboard-modal__panel {
  max-height: min(820px, 94vh);
  max-width: 820px;
  overflow: auto;
  padding: 22px;
  width: 100%;
}

.dashboard-modal header,
.dashboard-modal footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.dashboard-modal header p {
  color: #9c383c;
  font-size: 13px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.dashboard-modal h2 {
  color: #191816;
  font-size: 34px;
  margin: 4px 0 0;
}

.dashboard-modal form {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.dashboard-modal label {
  background: #f9f6f3;
  border: 1px solid #ddd4cb;
  border-radius: 8px;
  color: #716b64;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 8px;
  padding: 12px;
}

.dashboard-modal textarea {
  min-height: 116px;
  resize: vertical;
}

.dashboard-field-note {
  color: #8b837a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.dashboard-image-field input[type="file"] {
  background: #fff;
  border: 1px dashed #c8beb3;
  border-radius: 8px;
  cursor: pointer;
  padding: 12px;
}

.dashboard-image-preview {
  align-items: center;
  aspect-ratio: 6 / 5;
  background: #ede6df;
  border: 1px solid #ddd4cb;
  border-radius: 8px;
  color: #716b64;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: min(100%, 360px);
}

.dashboard-image-preview img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dashboard-image-field small {
  color: #9c383c;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-form__wide,
.dashboard-modal footer {
  grid-column: 1 / -1;
}

@media (max-width: 1020px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    min-height: auto;
    position: static;
  }

  .dashboard-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-back {
    margin-top: 0;
  }

  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-table {
    overflow-x: auto;
  }

  .dashboard-table__head,
  .dashboard-row {
    min-width: 900px;
  }
}

@media (max-width: 720px) {
  .dashboard-main,
  .dashboard-sidebar {
    padding: 18px;
  }

  .dashboard-header,
  .dashboard-toolbar,
  .dashboard-modal header,
  .dashboard-modal footer {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-nav,
  .dashboard-stats,
  .dashboard-modal form {
    grid-template-columns: 1fr;
  }

  .dashboard-search {
    min-width: 0;
  }

  .dashboard-segments {
    overflow-x: auto;
  }
}

.project-card-area {
  background: #f4f0eb;
  padding: 110px 0;
}

.project-card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  background: #fff;
  border: 1px solid #e0d8cf;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(25, 24, 22, 0.08);
  color: #191816;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    box-shadow 0.5s ease,
    transform 0.5s ease;
}

.project-card:hover {
  box-shadow: 0 22px 54px rgba(25, 24, 22, 0.16);
  transform: translateY(-8px);
}

.project-card__image {
  aspect-ratio: 6 / 5;
  display: block;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 24px rgba(28, 21, 16, 0.2);
  z-index: 2;
}

.project-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

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

.project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.project-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.project-card__tool {
  background: #ffc8ca;
  border-radius: 10px;
  color: #9c383c;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 12px;
}

.project-card__content h3 {
  color: #191816;
  font-size: 24px;
  margin: 0;
  transition: color 0.3s ease;
}

.project-card:hover .project-card__content h3 {
  color: #9c383c;
}

.project-card__content p {
  color: #625c55;
  line-height: 1.65;
  margin: 12px 0 0;
}

.project-card__link {
  align-items: center;
  color: #9c383c;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  width: fit-content;
}

.project-card__link i {
  transition: transform 0.3s ease;
}


.project-card-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.project-card-actions[hidden] {
  display: none !important;
}

.project-card-view-all {
  align-items: center;
  background: #9c383c !important;
  border-color: #9c383c !important;
  color: #fff !important;
  display: inline-flex;
  gap: 10px;
  border-radius: 16px;
}

.project-card-view-all:hover,
.project-card-view-all:focus-visible {
  background: #782b2e !important;
  border-color: #782b2e !important;
  color: #fff !important;
}

.project-card-view-all i {
  transition: transform 0.3s ease;
}

.project-card-view-all:hover i {
  transform: translateX(4px);
}

.project-card__link:hover i,
.project-card:hover .project-card__link i {
  transform: translateX(4px);
}

@media (max-width: 1020px) {
  .project-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .project-card-area {
    padding: 70px 0;
  }

  .project-card-grid {
    grid-template-columns: 1fr;
  }
}

.main-menu ul li .active,
.onepage-menu .active a,
.pagination li.active .page-link,
.tp-pagination ul li a.current,
.tp-pagination ul li span.current {
  color: #9c383c !important;
}

.filter ul li.mixitup-control-active,
.dashboard-nav__item.is-active,
.dashboard-segments button.is-active {
  background: #9c383c !important;
  border-color: #9c383c !important;
  color: #ffffff !important;
}

.dashboard-nav__item.is-active strong {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.dashboard-button--primary:hover,
.dashboard-button--primary:active,
.dashboard-button--primary:focus-visible,
.dashboard-back:hover,
.dashboard-back:active,
.dashboard-row__actions button:hover,
.dashboard-row__actions button:active,
.dashboard-modal header button:hover,
.dashboard-modal header button:active {
  background: #9c383c !important;
  border-color: #9c383c !important;
  color: #ffffff !important;
}

.project-card:hover .project-card__content h3,
.project-card__content span,
.project-card__link,
.project-card__link:hover,
.project-card__link:active,
.dashboard-row__title:hover strong,
.dashboard-open-link:hover,
.dashboard-open-link:active {
  color: #9c383c !important;
}

.project-card:focus-within {
  border-color: #9c383c;
  box-shadow: 0 22px 54px rgba(156, 56, 60, 0.18);
}

.testimonial-link {
  color: inherit;
  display: block;
  height: 100%;
}

.testimonial-link:hover .testi-des h5 {
  color: #9c383c;
}

/* Dashboard layout inspired by the provided admin mockup */
.dashboard-page {
  background: #ffffff;
}

.dashboard-shell {
  background: #ffffff;
  grid-template-columns: 248px minmax(0, 1fr);
}

.dashboard-sidebar {
  background: #fafafa;
  border-right: 1px solid #e3e3e3;
  color: #141414;
  gap: 24px;
  padding: 24px 16px;
}

.dashboard-brand {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 800;
  gap: 12px;
  padding: 0 10px 24px;
}

.dashboard-brand img {
  max-height: 24px;
}

.dashboard-nav {
  gap: 8px;
}

.dashboard-nav::before {
  align-items: center;
  color: #777777;
  content: "\ea54  Dashboard";
  display: grid;
  font-family: remixicon, "Poppins", sans-serif;
  gap: 12px;
  grid-template-columns: 20px 1fr;
  min-height: 40px;
  padding: 0 10px;
}

.dashboard-nav__item,
.dashboard-back {
  border-radius: 4px;
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  grid-template-columns: 20px 1fr;
  min-height: 40px;
  padding: 0 10px;
}

.dashboard-nav__item:hover {
  background: rgba(156, 56, 60, 0.08);
  color: #9c383c;
}

.dashboard-nav__item.is-active {
  background: #9c383c !important;
  border-color: #9c383c !important;
  color: #ffffff !important;
}

.dashboard-back {
  margin-top: 8px;
}

.dashboard-back:first-of-type {
  border-top: 1px solid #e3e3e3;
  padding-top: 24px;
}

.dashboard-back:hover,
.dashboard-back:active {
  background: rgba(156, 56, 60, 0.08) !important;
  border-color: transparent !important;
  color: #9c383c !important;
}

.dashboard-main {
  align-content: start;
  gap: 0;
  padding: 0;
}

.dashboard-topbar {
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
}

.dashboard-topbar .dashboard-search {
  border-color: #cfcfcf;
  border-radius: 6px;
  box-shadow: none;
  min-height: 42px;
  min-width: min(360px, 48vw);
}

.dashboard-topbar .dashboard-search input {
  font-size: 14px;
}

.dashboard-topbar .dashboard-search kbd {
  align-items: center;
  background: #eeeeee;
  border: 0;
  border-radius: 3px;
  color: #666666;
  display: inline-flex;
  font-size: 13px;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding: 0 6px;
}

.dashboard-topbar__meta {
  align-items: center;
  color: #666666;
  display: flex;
  gap: 28px;
  white-space: nowrap;
}

.dashboard-topbar__meta a,
.dashboard-user {
  align-items: center;
  color: #666666;
  display: inline-flex;
  gap: 10px;
  font-size: 15px;
}

.dashboard-user {
  color: #111111;
}

.dashboard-user img {
  border-radius: 999px;
  height: 32px;
  object-fit: cover;
  width: 32px;
}

.dashboard-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 24px 32px 16px;
}

.dashboard-header h1 {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.dashboard-header span,
.dashboard-eyebrow,
.dashboard-header .dashboard-button--secondary {
  display: none;
}

.dashboard-header .dashboard-button--primary {
  background: #9c383c;
  border-color: #9c383c;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  min-height: 38px;
  padding: 0 28px;
}

.dashboard-toolbar {
  background: #e4e4e4;
  border-bottom: 1px solid #d7d7d7;
  display: block;
  padding: 0 32px;
}

.dashboard-segments {
  background: transparent;
  border-radius: 0;
  gap: 0;
  padding: 0;
}

.dashboard-segments button {
  border-radius: 0;
  color: #666666;
  font-size: 15px;
  font-weight: 500;
  min-height: 54px;
  padding: 0 16px;
  position: relative;
}

.dashboard-segments button.is-active {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none;
  color: #111111 !important;
}

.dashboard-segments button.is-active::after {
  background: #9c383c;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.dashboard-card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 32px;
}

.dashboard-content-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  min-width: 0;
  overflow: hidden;
}

.dashboard-content-card__media {
  aspect-ratio: 1 / 0.92;
  background: #f1f1f1;
  display: block;
  margin: 12px 12px 0;
  overflow: hidden;
  position: relative;
}

.dashboard-content-card__media img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
  width: 100%;
}

.dashboard-content-card:hover .dashboard-content-card__media img {
  transform: scale(1.03);
}

.dashboard-content-card__media .dashboard-status {
  left: 10px;
  position: absolute;
  top: 10px;
}

.dashboard-content-card__body {
  display: grid;
  gap: 14px;
  padding: 14px 12px 12px;
}

.dashboard-content-card__body h3 {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-content-card__role,
.dashboard-content-card__body p {
  color: #111111;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.dashboard-content-card__body p:not(.dashboard-content-card__role) {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.dashboard-content-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-content-card__tags span {
  background: #ffc6cb;
  border-radius: 4px;
  color: #111111;
  font-size: 13px;
  line-height: 1;
  padding: 7px 9px;
}

.dashboard-content-card__actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.dashboard-content-card__actions a {
  align-items: center;
  color: #9c383c;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
}

.dashboard-content-card__actions button {
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #dddddd;
  border-radius: 4px;
  color: #333333;
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.dashboard-content-card__actions button:hover {
  background: #9c383c;
  border-color: #9c383c;
  color: #ffffff;
}

.dashboard-testimonial-card {
  background: #f7f7f7;
  border: 1px solid #dddddd;
  border-radius: 16px;
  display: grid;
  gap: 12px;
  padding: 20px;
  position: relative;
}

.dashboard-testimonial-card .testimonial-item {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

.dashboard-testimonial-card .testimonial-item:hover {
  border: 0;
}

.dashboard-testimonial-card .testimonial-item .author {
  margin-bottom: 25px;
}

.dashboard-testimonial-card .testimonial-item .author img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.dashboard-testimonial-card .testimonial-item .text {
  color: rgb(119, 119, 125);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 30px;
  min-height: 76px;
}

.dashboard-testimonial-card .testimonial-item .testi-des h5 {
  color: #070707;
  font-size: 28px;
  line-height: 1.1;
  margin: 20px 0 0;
  text-transform: uppercase;
}

.dashboard-testimonial-card .testimonial-item .testi-des span {
  color: rgb(119, 119, 125);
  display: block;
  font-size: 14px;
  line-height: 22px;
  margin-top: 6px;
}

.dashboard-testimonial-card > .dashboard-status {
  position: absolute;
  right: 16px;
  top: 16px;
}

.dashboard-testimonial-card .dashboard-content-card__actions {
  border-top: 1px solid #e5e5e5;
  padding-top: 12px;
}

.dashboard-status--active {
  background: rgba(33, 150, 83, 0.14);
  color: #167344;
}

.dashboard-status--disabled {
  background: rgba(17, 17, 17, 0.14);
  color: #333333;
}

.dashboard-status--unread {
  background: rgba(156, 56, 60, 0.16);
  color: #9c383c;
}

.dashboard-status--read {
  background: rgba(33, 150, 83, 0.14);
  color: #167344;
}

.dashboard-card-grid--blog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-blog-card,
.dashboard-blog-card .postbox__item,
.dashboard-blog-card .postbox__thumb,
.dashboard-blog-card .dashboard-status,
.dashboard-blog-card .postbox__content {
  padding: 24px;
}

.dashboard-blog-card .postbox__title {
  font-size: 28px;
  line-height: 1.18;
}

.dashboard-preview-actions {
  border-top: 1px solid #e5e5e5;
  padding: 14px 18px;
}

.dashboard-contact-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
}

.dashboard-contact-card__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dashboard-contact-card__top time {
  color: #777777;
  font-size: 13px;
}

.dashboard-contact-card h3 {
  color: #111111;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.dashboard-contact-card__sender {
  color: #111111;
  display: grid;
  font-size: 14px;
  gap: 4px;
  margin: 0;
}

.dashboard-contact-card__sender a {
  color: #9c383c;
}

.dashboard-contact-card__message {
  color: #555555;
  display: -webkit-box;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  min-height: 72px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 1180px) {
  .dashboard-card-grid,
  .dashboard-card-grid--blog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  @media (max-width: 760px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    min-height: auto;
    position: static;
  }

  .dashboard-topbar,
  .dashboard-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dashboard-topbar {
    align-items: stretch;
    flex-direction: column;
    height: auto;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .dashboard-topbar .dashboard-search {
    min-width: 0;
    width: 100%;
  }

  .dashboard-toolbar {
    overflow-x: auto;
    padding: 0 18px;
  }

  .dashboard-card-grid,
  .dashboard-card-grid--blog {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }
}
}

@layer base {
  .eventunset {
    pointer-events: unset;
  }
}
/*
* ----------------------------------------------------------------------------------------
* 15.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes loading {
  0% {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }

  100% {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.color-pulse {
  background: #00ff00;
}

.circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
}

.pulse {
  -webkit-animation: pulse-animation 2s infinite;
  animation: pulse-animation 2s infinite;
}

@-webkit-keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.light-dark-version {
  position: fixed;
  top: 45px;
  right: 40px;
  z-index: 9999;
  cursor: pointer;
}

/* ===== # Magic Cursor ===== */
#magic-cursor {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  pointer-events: none;
  z-index: 10000;
  -webkit-transition: opacity 0.2s ease-in-out 0.5s;
  transition: opacity 0.2s ease-in-out 0.5s;
}

#ball {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #999999;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  box-sizing: border-box;
  /* -webkit-transform: scale(0.5);
  transform: scale(0.5); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* -webkit-transition: 0.2s;
  transition: 0.2s; */
  margin-left: -20px;
  margin-top: -20px;
}

.magic-cursor.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #cc0000;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}

#ball.hovered {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0 !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.scroller__inner img {
  margin-right: 30px;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: -webkit-linear-gradient(
    left,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(-50% - 0.5rem));
    transform: translate(calc(-50% - 0.5rem));
  }
}

/*
* ----------------------------------------------------------------------------------------
* 17.Responsive CSS STYLE
* ----------------------------------------------------------------------------------------
*/

@layer utilities {
  /* Tablet Layout: 768px. */
  @media only screen and (min-width: 767px) and (max-width: 991px) {
    .main-hero-area {
      @apply pt-[130px];
    }

    .about-area {
      @apply pt-0;
    }

    .resume-area {
      @apply py-20;
    }

    .single-project-page-right {
      @apply pl-0 pt-[30px];
    }

    .skill-area {
      @apply pt-[50px];
    }

    .services-area,
    .projects-area,
    .testimonials-area,
    .contact-area,
    .blog-area {
      @apply py-20;
    }

    .client-logo-area {
      @apply pt-[50px];
    }

    .pricing-area {
      @apply py-[50px];
    }

    .hero-content {
      @apply p-0;
    }

    .section-title {
      @apply mb-[30px];
    }

    .main-menu .navbar-collapse li a:hover {
      @apply text-white no-underline;
    }

    .section-title p {
      @apply mb-0;
    }

    .service-item {
      @apply mb-[30px];
    }

    .section-title h2 {
      @apply text-[60px] leading-[70px];
    }

    .fixed-header .main-menu .navbar-collapse li a {
      @apply text-white;
    }

    .fixed-header .main-menu .navbar-collapse li a:hover {
      @apply text-white;
    }

    .blog-item {
      @apply mb-[30px];
    }

    .main-footer {
      @apply py-[50px];
    }

    .about-counter-part::before {
      @apply left-1/2 top-0;
    }

    .blog-post-caption {
      @apply pl-0 pt-[30px];
    }

    .contact-form-area {
      @apply pt-[30px];
    }

    .footer-top h2 {
      @apply mb-[60px] leading-[1em];
    }

    .project-item.style-two .project-content h3 {
      @apply text-xl;
    }

    .single-service-information-wrap {
      @apply ml-0;
    }

    .resume-item .content h4 {
      @apply text-xl leading-[1.3em];
    }

    .hero-image img {
      @apply mt-0;
    }

    .hero-content {
      @apply px-[10px] text-center;
    }

    .clienti-reviews {
      @apply mb-10 text-center;
    }

    .clienti-reviews .clienti-profile {
      @apply justify-center;
    }

    .clienti-reviews .reviews p {
      @apply mt-0;
    }

    .footer-top {
      @apply pb-[50px] pt-[10px];
    }
  }
  .blog-details-wrap .content h4 {
    @apply mb-[18px];
  }

  @media only screen and (min-width: 1400px) {
    .container-fluid.gap-wide {
      @apply px-[100px];
    }
    .error-content .section-title h1 {
      @apply text-[85px];
    }

    .error-content .section-title h2 {
      @apply text-[55px];
    }
  }

  @media only screen and (max-width: 375px) {
    .admin-comment .comment-body {
      @apply px-[25px];
    }
    .admin-comment .comment-body .author-thumb {
      @apply max-w-[100px];
    }
    .banner-inner h1 {
      @apply text-[35px];
    }
    .banner-inner h3 {
      @apply text-[25px];
    }
    .breadcrumb {
      @apply text-base;
    }
    .project-content {
      @apply px-0;
    }
    .project-item.style-two .project-content {
      @apply px-0;
    }
    .project-item.style-three .project-content {
      @apply px-[25px];
    }
    .project-details-info {
      @apply px-[35px];
    }
    .pricing-item .pricing-header .price {
      @apply text-[35px];
    }
    .pricing-item .pricing-details ul li {
      @apply text-lg;
    }
    .client-logo-wrap .client-logo-item {
      @apply w-[calc(50%-60px)];
    }
    .blog-item .content h5 {
      @apply text-xl;
    }
    .main-sidebar {
      @apply px-[25px];
    }
    .widget-recent-news ul li h5 {
      @apply text-base;
    }
    .cta-widget {
      @apply px-[25px];
    }
    .col-small {
      @apply max-w-full flex-[0_0_100%];
    }
    .about-image-part {
      @apply pl-[50px];
    }
    .blog-item.style-two .content {
      @apply px-[15px];
    }
    .blog-content h4 {
      @apply text-xl;
    }
    .author-date-share .text h5 {
      @apply text-lg;
    }
    blockquote {
      @apply pl-[25px] text-lg;
    }

    blockquote:before {
      @apply hidden;
    }

    .comments {
      @apply px-[25px];
    }
  }

  @media only screen and (max-width: 479px) {
    .author-date-share .text {
      @apply mr-5;
    }
    blockquote {
      @apply pl-[60px] pr-[25px] text-xl;
    }

    blockquote:before {
      @apply left-[15px] text-[25px];
    }

    .about-btn h6 {
      @apply text-sm;
    }
    .service-item {
      @apply block;
    }
    .service-item .content {
      @apply mb-[25px] mt-[25px];
    }
    .contact-page-form {
      @apply px-5;
    }
    .project-content {
      @apply px-[25px];
    }
    .project-content h2 {
      @apply text-3xl leading-[1.3];
    }
    .project-item.style-two .project-content h3 {
      @apply text-[25px];
    }
    .tag-share {
      @apply px-[15px];
    }
    .list-style-one.two-column li {
      @apply w-full;
    }
    .resume-item .content h4 {
      @apply text-xl leading-[1.3];
    }
    .blog-details-wrap .content {
      @apply px-0;
    }
  }

  @media only screen and (max-width: 1399px) {
    .author-image-part .bg-circle {
      @apply left-0 top-[15%] h-[300px] w-[300px];
    }
    .onepage-menu {
      @apply py-5;
    }

    .onepage-menu li .menu-item {
      @apply py-[15px];
    }
    .onepage-menu .active a {
      @apply rounded-[5px];
    }
    .main-menu .navbar-collapse li {
      @apply px-[10px];
    }
    .our-location iframe {
      @apply h-[500px];
    }
  }

  @media only screen and (min-width: 376px) {
    .list-style-one li {
      @apply text-xl;
    }
    .next-prev-post .post-item h6 {
      @apply text-lg;
    }
    .comment-body .content h6 {
      @apply text-lg;
    }
    .admin-comment .comment-body .content h5 {
      @apply text-[22px];
    }
    .list-style-two li {
      @apply text-xl;
    }
    .pd-info-item h5 {
      @apply text-[22px];
    }
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .project-details-info {
      @apply px-[35px];
    }
    .main-sidebar {
      @apply px-5;
    }
    .hero-counter-area {
      @apply px-7;
    }
    .blog-item {
      @apply block;
    }

    .blog-item .image {
      @apply mb-[15px] mr-0 max-w-none;
    }
    .blog-item.style-two .content {
      @apply px-[15px];
    }
    .project-content {
      @apply px-5;
    }
  }

  @media only screen and (max-width: 767px) {
    .project-content {
      @apply px-10;
    }
    .project-content h2 {
      @apply text-[35px];
    }
    .client-logo-wrap .client-logo-item {
      @apply w-[calc(33.33%-60px)];
    }
    .menu-social {
      @apply hidden;
    }
    .hero-counter-area {
      @apply px-[25px];
    }
    .resume-items-wrap:before {
      @apply hidden;
    }
    blockquote {
      @apply pl-[100px] text-[22px];
    }

    blockquote:before {
      @apply left-[30px] text-[40px];
    }
    .comments {
      @apply px-10;
    }
    .admin-comment .comment-body {
      @apply block px-10;
    }
    .onepage-menu li .menu-item span {
      @apply hidden;
    }
    .hero-menu {
      @apply hidden;
    }
    .banner-inner h1 {
      @apply text-[55px];
    }
  }

  @media only screen and (max-width: 575px) {
    .service-item {
      @apply px-[25px];
    }
    .banner-inner h1 {
      @apply text-[45px];
    }
    .our-location iframe {
      @apply h-[350px];
    }
    .onepage-menu li .menu-item {
      @apply py-[10px];
    }
    .comment-body.comment-child {
      @apply ml-[30px];
    }
    .main-menu .mobile-logo {
      @apply max-w-[150px];
    }
  }

  @media only screen and (max-width: 1199px) {
    .resume-items-wrap {
      @apply px-[25px];
    }

    .resume-items-wrap:before {
      @apply left-[45%];
    }
    .blog-details-wrap .content {
      @apply px-[15px];
    }
    .project-item.style-two .project-content {
      @apply px-[25px];
    }
    .testimonial-item {
      @apply px-[25px];
    }
    .pricing-item .pricing-header {
      @apply px-[25px];
    }
    .pricing-item .pricing-header .price {
      @apply text-[40px];
    }
    .pricing-item .pricing-details {
      @apply px-[25px];
    }
    .widget-recent-news ul li .image {
      @apply mr-5;
    }
  }

  @media only screen and (max-width: 991px) {
    .our-location iframe {
      @apply h-[400px];
    }
    .client-logo-wrap {
      @apply justify-center;
    }
    .nav-outer {
      @apply w-full;
    }
    .main-menu .navbar-collapse li ul li {
      @apply px-[15px];
    }
    .client-logo-wrap .client-logo-item {
      @apply mb-10 w-[calc(25%-60px)];
    }
    .about-btn.btn-one {
      @apply left-[5%];
    }
    .main-menu .navbar-collapse li ul {
      @apply min-w-0;
    }
    .main-menu .navbar-header {
      @apply flex items-center justify-start;
    }
    .banner-inner h1 {
      @apply text-[65px];
    }
    .main-menu .navbar-collapse li ul {
      @apply relative hidden w-full shadow-none;
    }

    .main-menu .navbar-collapse li ul:after {
      @apply clear-both block content-[''];
    }
    .main-menu .navbar-collapse li.dropdown .dropdown-btn {
      @apply absolute right-[10px] top-0 h-[43px] w-[50px] border-l border-borderColor text-center leading-[43px];
    }
    .main-menu .navbar-collapse li {
      @apply block border-t border-borderColor px-[15px];
    }
    .main-menu .navbar-collapse li a {
      @apply px-[10px] py-[10px] leading-[22px] text-white opacity-70;
    }
    .main-menu .navbar-collapse li .megamenu {
      @apply relative w-full shadow-none;
    }

    .main-menu .navbar-collapse li .megamenu .container {
      @apply max-w-full;
    }

    .main-menu .navbar-collapse li .megamenu .row {
      @apply m-0;
    }
    .main-menu .navbar-collapse {
      @apply absolute left-[45%] w-1/2;
    }
    .main-menu .navbar-collapse > ul {
      @apply block max-h-[calc(100vh-100px)] overflow-x-hidden bg-[#333] py-[25px];
    }

    .main-menu .navbar-collapse > ul > li:last-child {
      @apply border-b border-[var(--border-color)];
    }
    .main-menu .collapse {
      @apply overflow-auto;
    }
    .main-menu {
      @apply w-full;
    }
    .hero-menu li .menu-item span {
      @apply hidden;
    }
    .main-header .logo-outer {
      @apply hidden;
    }
    .blog-content {
      @apply px-[25px];
    }

    .blog-content h4 {
      @apply text-[23px];
    }
    .author-date-share .text {
      @apply mr-[30px];
    }
  }

  @media only screen and (min-width: 992px) {
    .widget_newsletter form {
      @apply mx-auto;
    }
    .widget_nav_menu {
      @apply mx-auto max-w-max;
    }
  }

  @media only screen and (min-width: 768px) {
    .admin-comment .comment-body .author-thumb {
      @apply mb-0;
    }
    .banner-inner h3 {
      @apply text-[35px];
    }
    .comment-body {
      @apply flex;
    }
  }

  @media only screen and (min-width: 576px) {
    .author-date-share .text h5 {
      @apply text-[22px];
    }
  }

  @media only screen and (min-width: 480px) {
    .blog-details-wrap .content h4 {
      @apply text-[27px];
    }
  }

  @media only screen and (max-width: 991px) and (max-width: 375px) {
    .main-menu .navbar-collapse li ul li ul {
      @apply left-auto;
    }
  }

  @media only screen and (min-width: 1200px) {
    .main-header .container-fluid {
      @apply px-[55px];
    }
  }

  @media (max-width: 991.98px) {
    .resume-wrapper .resume-box {
      @apply mb-6;
    }

    .resume-wrapper .resume-box:last-child {
      @apply mb-0;
    }
  }
}


.dashboard-brand {
  justify-content: center;
}

.dashboard-card-grid--logo {
  align-items: start;
  grid-template-columns: minmax(0, 640px);
}

.dashboard-logo-card {
  background: #ffffff;
  border: 1px solid #e6e1dd;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(18, 18, 18, 0.05);
  display: grid;
  gap: 18px;
  padding: 22px;
}

.dashboard-logo-card__preview {
  align-items: center;
  background: #fbfaf9;
  border: 1px solid #ebe5df;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 132px;
  padding: 20px;
}

.dashboard-logo-card__preview img {
  max-height: 72px;
  max-width: 220px;
  object-fit: contain;
}

.dashboard-logo-card form {
  display: grid;
  gap: 12px;
}

.dashboard-logo-card label {
  color: #3e3a37;
  display: grid;
  font-size: 13px;
  font-weight: 500;
  gap: 7px;
  line-height: 1.35;
}

.dashboard-logo-card input {
  background: #ffffff;
  border: 1px solid #ded8d2;
  border-radius: 6px;
  color: #171717;
  font-size: 13px;
  font-weight: 400;
  min-height: 40px;
  padding: 9px 11px;
}

.dashboard-logo-card input[type="file"] {
  color: #5f5a56;
  font-size: 12px;
}

.dashboard-logo-card__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.dashboard-logo-card__actions .dashboard-button {
  min-height: 40px;
  padding: 0 14px;
}

.dashboard-logo-card small {
  color: #9c383c;
  font-size: 12px;
  font-weight: 500;
}

.dashboard-logo-card__preview--favicon {
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  min-height: 74px;
}

.dashboard-logo-card__preview--favicon img {
  background: #ffffff;
  border: 1px solid #e4ded8;
  border-radius: 8px;
  height: 40px;
  padding: 7px;
  width: 40px;
}

.dashboard-logo-card__preview--favicon span {
  color: #6f6964;
  font-size: 12px;
  font-weight: 500;
}



.project-case-study {
  background: #f4f1ec;
  color: #151515;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}

.project-case-study h1,
.project-case-study h2,
.project-case-study h3,
.project-case-study p,
.project-case-study span,
.project-case-study strong,
.project-case-study a,
.project-case-study button {
  font-family: "Roboto", sans-serif;
}

.project-case-study .container {
  box-sizing: border-box;
  max-width: 1228px;
  padding-left: 24px;
  padding-right: 24px;
}

.project-case-nav {
  align-items: center;
  background: rgba(244, 241, 236, 0.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
  display: flex;
  gap: 8px;
  left: 50%;
  padding: 8px;
  position: sticky;
  top: 18px;
  transform: translateX(-50%);
  width: max-content;
  z-index: 50;
}

.project-case-nav a {
  border-radius: 999px;
  color: #55514d;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 14px;
  transition: all 0.25s ease;
}

.project-case-nav a:hover {
  background: #9c383c;
  color: #ffffff;
}

.project-case-hero {
  background:
    radial-gradient(circle at 16% 12%, rgba(156, 56, 60, 0.14), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f4f1ec 100%);
  padding: 92px 0 70px;
}

.project-case-kicker,
.project-case-eyebrow {
  color: #9c383c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.project-case-hero__grid {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 390px;
}

.project-case-hero h1 {
  color: #111111;
  font-size: clamp(76px, 15vw, 210px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.82;
  margin: 0 0 22px;
}

.project-case-hero p,
.project-case-lead {
  color: #57524d;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
  max-width: 840px;
}

.project-case-meta {
  align-content: end;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-case-meta article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
  padding: 18px;
}

.project-case-meta span {
  color: #8b837d;
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.project-case-meta strong {
  color: #111111;
  font-size: 19px;
  line-height: 1.2;
}

.project-case-hero__media {
  background: #111111;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.22);
  margin-top: 54px;
  overflow: hidden;
  padding: 12px;
}

.project-case-hero__media img {
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.project-case-section {
  padding: 104px 0;
  position: relative;
}

.project-case-section:nth-of-type(odd):not(.project-case-section--outcome) {
  background: #fbfaf7;
}

.project-case-copy-grid {
  display: grid;
  gap: 72px;
  grid-template-columns: 0.8fr 1.35fr;
}

.project-case-section h2 {
  color: #151515;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 30px;
}

.project-case-richtext > p {
  color: #2f2f2f;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 650;
  line-height: 1.36;
}

.project-case-richtext p,
.project-case-card-grid p,
.project-case-timeline p,
.project-case-prototype p,
.project-case-outcome-grid p {
  color: #625c56;
  font-size: 17px;
  line-height: 1.75;
}

.project-case-two-col,
.project-case-card-grid,
.project-case-outcome-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.project-case-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-case-two-col article,
.project-case-card-grid article,
.project-case-outcome-grid article,
.project-case-role-list,
.project-case-prototype {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.06);
  padding: 28px;
}

.project-case-card-grid article {
  min-height: 260px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-case-card-grid article:hover {
  box-shadow: 0 24px 60px rgba(156, 56, 60, 0.12);
  transform: translateY(-6px);
}

.project-case-card-grid span {
  align-items: center;
  background: rgba(156, 56, 60, 0.1);
  border-radius: 999px;
  color: #9c383c;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 26px;
  width: 48px;
}

.project-case-section h3 {
  color: #151515;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.16;
  margin-bottom: 14px;
}

.project-case-role-list {
  margin-top: 20px;
}

.project-case-role-list ul,
.project-case-prototype ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.project-case-role-list li,
.project-case-prototype li {
  color: #56504a;
  font-size: 17px;
  line-height: 1.55;
}

.project-case-image-row,
.project-case-mockups {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.project-case-image-row img,
.project-case-mockups img,
.project-case-wide-image img {
  box-shadow: 0 20px 55px rgba(17, 17, 17, 0.12);
  display: block;
  object-fit: cover;
  width: 100%;
}

.project-case-image-row img {
  aspect-ratio: 1.28 / 1;
  border-radius: 28px;
}

.project-case-wide-image {
  background: #efe8df;
  border-radius: 32px;
  margin-top: 44px;
  overflow: hidden;
  padding: 12px;
}

.project-case-wide-image img {
  aspect-ratio: 16 / 8;
  border-radius: 22px;
  object-position: top center;
}

.project-case-timeline {
  counter-reset: project-step;
  display: grid;
  gap: 0;
  margin-top: 46px;
}

.project-case-timeline article {
  align-items: baseline;
  background: transparent;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  display: grid;
  gap: 30px;
  grid-template-columns: 84px 260px minmax(0, 1fr);
  padding: 28px 0;
}

.project-case-timeline article:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.project-case-timeline article::before {
  color: #9c383c;
  content: counter(project-step, decimal-leading-zero);
  counter-increment: project-step;
  font-size: 20px;
  font-weight: 900;
}

.project-case-mockups {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-case-mockups img {
  aspect-ratio: 0.72 / 1;
  border-radius: 30px;
}

.project-case-mockups img:nth-child(even) {
  margin-top: 52px;
}

.project-case-prototype {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 40px;
}

.project-case-section--outcome {
  background:
    radial-gradient(circle at 20% 12%, rgba(156, 56, 60, 0.24), transparent 34%),
    #111111;
  color: #ffffff;
}

.project-case-section--outcome h2,
.project-case-section--outcome h3 {
  color: #ffffff;
}

.project-case-section--outcome .project-case-eyebrow {
  color: #ffc6cb;
}

.project-case-section--outcome article,
.project-case-cta {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.project-case-section--outcome p,
.project-case-section--outcome li {
  color: rgba(255, 255, 255, 0.72);
}

.project-case-cta {
  border-radius: 34px;
  margin-top: 34px;
  padding: clamp(28px, 5vw, 58px);
}

.project-case-cta span {
  color: #ffc6cb;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-case-cta h2 {
  color: #ffffff;
  font-size: clamp(38px, 6.4vw, 88px);
  margin: 18px 0 30px;
  max-width: 980px;
}

@media (max-width: 991px) {
  .project-case-nav {
    max-width: calc(100vw - 24px);
    overflow-x: auto;
  }

  .project-case-hero__grid,
  .project-case-copy-grid,
  .project-case-prototype {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-case-two-col,
  .project-case-card-grid,
  .project-case-outcome-grid,
  .project-case-image-row,
  .project-case-mockups {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-case-mockups img:nth-child(even) {
    margin-top: 0;
  }

  .project-case-timeline article {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .project-case-nav {
    justify-content: flex-start;
    left: 12px;
    transform: none;
    width: calc(100vw - 24px);
  }

  .project-case-hero {
    padding-top: 70px;
  }

  .project-case-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-case-section {
    padding: 70px 0;
  }
}

.dashboard-detail-editor {
  border-top: 1px solid #e4e4e4;
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding-top: 18px;
}

.dashboard-detail-editor h3 {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}

.dashboard-detail-editor__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-detail-editor small {
  color: #777777;
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .dashboard-detail-editor__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Project detail readability refinements */
.project-case-hero {
  padding: 82px 0 64px;
}

.project-case-hero__grid {
  align-items: end;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
}

.project-case-hero h1 {
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 820px;
  overflow-wrap: anywhere;
  text-transform: none;
}

.project-case-hero p,
.project-case-lead {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.62;
}

.project-case-hero p {
  max-width: 760px;
}

.project-case-kicker,
.project-case-eyebrow {
  margin-bottom: 14px;
}

.project-case-meta {
  gap: 14px;
  max-width: 460px;
  width: 100%;
}

.project-case-meta article {
  border-radius: 18px;
  min-height: 138px;
  padding: 22px;
}

.project-case-meta strong {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.25;
}

.project-case-hero__media {
  margin-top: 48px;
}

.project-case-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.project-case-demo {
  border-radius: 16px;
  background: #9c383c;
  border-color: #9c383c;
  color: #ffffff;
}

.project-case-demo:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.project-case-demo.is-disabled {
  cursor: default;
  opacity: 0.48;
  pointer-events: none;
}

/* Project detail: full-page Design Snapshot layout */
.project-case-hero--snapshot {
  background: #fbfaf7;
  padding: clamp(54px, 7vw, 110px) 0 clamp(44px, 6vw, 92px);
}

.project-case-snapshot__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.project-case-snapshot__top p {
  color: #756e67;
  font-size: clamp(17px, 1.7vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}

.project-case-demo--hero {
  align-items: center;
  background: #9c383c;
  border: 1.5px solid #9c383c;
  border-radius: 16px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  gap: 7px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.2;
  min-height: 40px;
  padding: 8px 14px;
}

.project-case-demo--hero:hover {
  background: #782b2e;
  border-color: #782b2e;
  color: #ffffff;
}

.project-case-close {
  align-items: center;
  background: #f2f0ec;
  border: 1px solid #e1ddd6;
  border-radius: 50%;
  color: #2a211a;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 30px;
  height: 64px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 64px;
}

.project-case-close:hover {
  background: #9c383c;
  color: #ffffff;
  transform: rotate(90deg);
}

.project-case-hero--snapshot h1 {
  color: #2a1608;
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  max-width: 960px;
}

.project-case-lead {
  color: #574c43;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 900px;
}

.project-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.project-case-tags span {
  border: 2px solid #16120f;
  border-radius: 14px;
  color: #16120f;
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 500;
  line-height: 1;
  padding: 10px 18px;
}

.project-case-tags .project-case-demo--hero {
  margin-left: auto;
}

@media (max-width: 640px) {
  .project-case-tags .project-case-demo--hero {
    margin-left: 0;
  }
}

.project-case-info-grid {
  border-top: 1px solid #dfdad2;
  display: grid;
  gap: 26px 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(36px, 5vw, 64px);
  padding-top: 32px;
}

.project-case-info-grid article {
  display: grid;
  gap: 8px;
}

.project-case-info-grid span {
  color: #8a8178;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.project-case-info-grid strong {
  color: #3a3028;
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 600;
  line-height: 1.2;
}

.project-case-snapshot-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(40px, 5vw, 70px);
}

.project-case-snapshot-carousel {
  margin-top: clamp(40px, 5vw, 70px);
}

.project-case-snapshot-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-case-snapshot-carousel__track::-webkit-scrollbar {
  display: none;
}

.project-case-snapshot-carousel__slide {
  display: block;
  flex: 0 0 calc((100% - 20px) / 2.05);
  min-width: 0;
  scroll-snap-align: center;
}

.project-case-snapshot-carousel__slide .project-case-snapshot-grid__item {
  grid-column: auto;
  min-width: 0;
}

.project-case-snapshot-carousel__blank {
  aspect-ratio: 1 / 1;
}

.project-case-snapshot-empty {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #edeae5;
  border-radius: 22px;
  color: #756e67;
  display: flex;
  justify-content: center;
  margin: 0;
}

.project-case-snapshot-carousel__dots {
  align-items: center;
  background: rgba(46, 39, 32, 0.68);
  border-radius: 999px;
  display: flex;
  gap: 7px;
  margin: 16px auto 0;
  padding: 8px 11px;
  width: max-content;
}

.project-case-snapshot-carousel__dots button {
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 11px;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 11px;
}

.project-case-snapshot-carousel__dots button[aria-current="true"] {
  background: #ffffff;
  transform: scale(1.08);
}

.project-case-snapshot-grid__item {
  aspect-ratio: 1 / 1;
  background: #edeae5;
  border-radius: 22px;
  margin: 0;
  overflow: hidden;
}

.project-case-snapshot-grid__item:only-child {
  grid-column: 1 / -1;
}

.project-case-snapshot-grid img {
  aspect-ratio: 1 / 1;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.project-case-section--overview,
.project-case-section--role,
.project-case-section--showcase,
.project-case-section--snapshot-gallery {
  background: #ffffff;
  padding: clamp(70px, 10vw, 150px) 0;
}

.project-case-story {
  border-top: 1px solid #e2ded7;
  display: grid;
  gap: clamp(30px, 6vw, 112px);
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1.52fr);
  padding-top: clamp(48px, 7vw, 96px);
}

.project-case-story h2 {
  color: #2a1608;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.project-case-story p {
  color: #504842;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.62;
  margin: 0 0 24px;
}

.project-case-story p:last-child {
  margin-bottom: 0;
}

.project-case-deliverables {
  display: grid;
  gap: clamp(36px, 6vw, 80px);
  margin: clamp(54px, 8vw, 116px) auto 0;
  max-width: 1180px;
}

.project-case-deliverables article {
  align-items: flex-start;
  display: grid;
  gap: 30px;
  grid-template-columns: 108px minmax(0, 1fr);
}

.project-case-deliverables i {
  align-items: center;
  background: #f3e1ce;
  border-radius: 16px;
  color: #9c5a2f;
  display: inline-flex;
  font-size: 42px;
  height: 88px;
  justify-content: center;
  width: 88px;
}

.project-case-deliverables h3 {
  color: #2a1608;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 14px;
}

.project-case-deliverables p {
  color: #504842;
  font-size: clamp(16px, 1.18vw, 19px);
  line-height: 1.6;
  margin: 0;
}

.project-case-showcase-image,
.project-case-snapshot-gallery figure {
  background: #efebe5;
  border-radius: 24px;
  margin: 0;
  overflow: hidden;
}

.project-case-showcase-image img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.project-case-snapshot-gallery {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-case-snapshot-gallery figure:first-child {
  grid-column: 1 / -1;
}

.project-case-snapshot-gallery img {
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  width: 100%;
}

.project-case-snapshot-gallery figure:first-child img {
  aspect-ratio: 1 / 1;
}

.project-case-section--quote {
  background: #2b1605;
  color: #ffffff;
  padding: clamp(64px, 9vw, 132px) 0;
}

.project-case-section--quote blockquote {
  color: #ffffff;
  font-size: clamp(32px, 4.1vw, 64px);
  font-weight: 400;
  line-height: 1.14;
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}

.project-case-quote__footer {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: clamp(40px, 6vw, 82px);
  padding-top: 28px;
}

.project-case-quote__footer p {
  color: rgba(255, 255, 255, 0.76);
  font-family: monospace;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.project-case-quote__footer .project-case-demo {
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .project-case-snapshot__top {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
  }

  .project-case-demo--hero {
    font-size: 13px;
    min-height: 40px;
    padding: 8px 12px;
  }

  .project-case-close {
    font-size: 24px;
    height: 50px;
    width: 50px;
  }

  .project-case-info-grid,
  .project-case-snapshot-grid,
  .project-case-snapshot-gallery,
  .project-case-story {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-case-story {
    gap: 28px;
  }

  .project-case-snapshot-carousel__slide {
    flex-basis: calc((100% - 12px) / 2.05);
    gap: 12px;
  }

  .project-case-deliverables article {
    gap: 20px;
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .project-case-deliverables i {
    border-radius: 12px;
    font-size: 30px;
    height: 58px;
    width: 58px;
  }

  .project-case-snapshot-grid__item:only-child,
  .project-case-snapshot-gallery figure:first-child {
    grid-column: auto;
  }

  .project-case-quote__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}



.project-case-section--outcome {
  padding-bottom: 96px;
}

@media (max-width: 991px) {
  .project-case-hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-case-meta {
    max-width: none;
  }
}


@media (max-width: 640px) {
  .project-case-study .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .project-case-hero h1 {
    font-size: clamp(38px, 13vw, 62px);
    line-height: 1.08;
  }

  .project-case-hero p {
    font-size: 17px;
  }

  .project-case-meta article {
    min-height: 112px;
  }
}


.dashboard-detail-editor__grid--mockups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


.dashboard-detail-image-field {
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 12px;
}

.dashboard-detail-image-field > span {
  color: #111111;
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.dashboard-detail-image-field input[type="file"] {
  background: #ffffff;
  cursor: pointer;
}

.dashboard-detail-image-field input[data-dashboard-detail-image-url] {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-detail-image-preview {
  align-items: center;
  background: #f1f1f1;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  min-height: 120px;
  overflow: hidden;
}

.dashboard-detail-image-preview img {
  height: 100%;
  max-height: 180px;
  object-fit: cover;
  width: 100%;
}

.dashboard-detail-image-preview small {
  color: #777777;
}

/* Dashboard typography */
.dashboard-page,
.dashboard-page *:not(i),
.dashboard-page input,
.dashboard-page select,
.dashboard-page textarea,
.dashboard-page button {
  font-family: "Roboto", sans-serif !important;
}

.dashboard-sidebar .dashboard-nav {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100% !important;
}

.dashboard-sidebar .dashboard-nav__item {
  grid-template-columns: 24px minmax(0, 1fr) auto !important;
  justify-content: start !important;
  width: 100% !important;
}

.dashboard-sidebar .dashboard-back {
  grid-template-columns: 24px minmax(0, 1fr) !important;
  justify-content: start !important;
  width: 100% !important;
}

.dashboard-sidebar .dashboard-nav__item span,
.dashboard-sidebar .dashboard-back span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.dashboard-sidebar__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dashboard-menu-toggle {
  align-items: center;
  background: #9c383c;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: none;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.dashboard-menu-toggle i {
  font-size: 20px;
}

@media (max-width: 760px) {
  .dashboard-shell {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .dashboard-sidebar {
    min-height: auto !important;
    padding: 14px 18px !important;
    position: sticky !important;
    top: 0;
    z-index: 80;
  }

  .dashboard-sidebar__head {
    width: 100%;
  }

  .dashboard-brand {
    padding: 0 !important;
  }

  .dashboard-brand img {
    max-height: 32px !important;
  }

  .dashboard-menu-toggle {
    display: inline-flex;
  }

  .dashboard-sidebar .dashboard-nav,
  .dashboard-sidebar .dashboard-back {
    display: none !important;
  }

  .dashboard-shell.is-menu-open .dashboard-sidebar .dashboard-nav {
    display: grid !important;
    margin-top: 18px;
  }

  .dashboard-shell.is-menu-open .dashboard-sidebar .dashboard-back {
    display: grid !important;
  }

  .dashboard-shell.is-menu-open .dashboard-menu-toggle i::before {
    content: "\eb99";
  }

  .dashboard-main {
    min-width: 0;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 *,
.dashboard-header h1,
.dashboard-content-card h3,
.project-card__content h3,
.case-study-hero__title,
.case-study-section h2,
.blog-post-caption h2,
.postbox__title,
.section-title h2 {
  font-family: "Roboto", sans-serif !important;
}


/* Site font override: use Roboto everywhere while preserving icon fonts. */
html,
body,
body *:not(i):not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.fa-brands):not(.fa-solid):not(.fa-regular):not(.fa-light):not(.fa-thin):not(.ri) {
  font-family: "Roboto", sans-serif !important;
}


.dashboard-project-editor {
  display: block;
}

.dashboard-project-editor__form {
  display: grid;
  gap: 24px;
  grid-template-columns: 268px minmax(0, 1fr);
}

.dashboard-project-editor__side {
  display: grid;
  gap: 24px;
  align-content: start;
}

.dashboard-project-editor__card,
.dashboard-project-editor__panel {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
}

.dashboard-project-editor__card {
  display: grid;
  gap: 16px;
  padding: 32px;
  position: relative;
}

.dashboard-project-editor__label {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-project-editor__label em {
  color: #9c383c;
  font-style: normal;
}

.dashboard-project-thumb {
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  min-height: 152px;
  overflow: hidden;
}

.dashboard-project-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dashboard-project-thumb__empty {
  align-items: center;
  background: #f8f8f8;
  border-radius: 8px;
  color: #e0e0e6;
  display: flex;
  font-size: 54px;
  height: 120px;
  justify-content: center;
  width: 120px;
}

.dashboard-project-thumb__edit {
  align-items: center;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  color: #9a9a9a;
  cursor: pointer;
  display: flex;
  height: 28px;
  justify-content: center;
  position: absolute;
  right: 48px;
  top: 80px;
  width: 28px;
}

.dashboard-project-thumb__edit input {
  display: none;
}

.dashboard-project-editor__card p,
.dashboard-project-editor__card small {
  color: #aaa;
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.dashboard-project-editor__card > input,
.dashboard-project-editor__card select,
.dashboard-project-editor__fields input,
.dashboard-project-editor__fields textarea {
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  color: #111111;
  min-height: 42px;
  padding: 10px 12px;
  width: 100%;
}

.dashboard-project-editor__card > input {
  font-size: 12px;
}

.dashboard-project-editor__panel {
  overflow: hidden;
}

.dashboard-project-editor__panel header {
  align-items: center;
  border-bottom: 1px solid #ededed;
  display: flex;
  justify-content: space-between;
  padding: 24px 28px;
}

.dashboard-project-editor__panel h2 {
  color: #111111;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.dashboard-project-editor__panel header button {
  background: transparent;
  border: 0;
  color: #111111;
  cursor: pointer;
  font-size: 22px;
}

.dashboard-project-editor__fields {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.dashboard-project-editor__fields label {
  color: #111111;
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 10px;
}

.dashboard-project-editor__fields textarea {
  min-height: 124px;
  resize: vertical;
}

.dashboard-project-editor__fields label small {
  color: #aaa;
  font-weight: 400;
  justify-self: end;
  margin-top: -34px;
  padding-right: 10px;
}

.dashboard-project-tools {
  align-items: center;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
}

.dashboard-project-tools span {
  align-items: center;
  background: #ffc8ca;
  border-radius: 4px;
  color: #111111;
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  gap: 3px;
  padding: 3px 7px;
}

.dashboard-project-tools button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.dashboard-project-tools input {
  border: 0 !important;
  flex: 1 1 180px;
  min-height: 24px !important;
  padding: 0 !important;
}

.dashboard-project-detail {
  border-top: 1px solid #ededed;
  padding-top: 8px;
}

.dashboard-project-detail summary {
  color: #9c383c;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-project-detail .dashboard-detail-editor {
  margin-top: 18px;
}

.dashboard-project-editor__panel footer {
  padding: 0 28px 28px;
}

.dashboard-project-editor__panel footer .dashboard-button {
  min-width: 98px;
}

@media (max-width: 1020px) {
  .dashboard-project-editor__form {
    grid-template-columns: 1fr;
  }

  .dashboard-project-editor__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dashboard-project-editor__side {
    grid-template-columns: 1fr;
  }

  .dashboard-project-editor__card,
  .dashboard-project-editor__panel header,
  .dashboard-project-editor__fields,
  .dashboard-project-editor__panel footer {
    padding: 20px;
  }
}


/* Project editor typography and status colors */
.dashboard-status--active,
.dashboard-status--published {
  background: #dff5e7 !important;
  color: #167044 !important;
}

.dashboard-status--draft {
  background: #fff2c7 !important;
  color: #9a6500 !important;
}

.dashboard-status--disabled {
  background: #eeeeee !important;
  color: #6f6f6f !important;
}

.dashboard-project-editor,
.dashboard-project-editor *:not(i) {
  font-family: "Roboto", sans-serif !important;
}

.dashboard-project-editor__label,
.dashboard-project-editor__fields label {
  color: #171717;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.dashboard-project-editor__panel h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.dashboard-project-editor__card p,
.dashboard-project-editor__card small {
  font-size: 13px;
  font-weight: 400;
}

.dashboard-project-editor__card > input,
.dashboard-project-editor__card select,
.dashboard-project-editor__fields input,
.dashboard-project-editor__fields textarea,
.dashboard-project-tools input {
  font-size: 14px;
  font-weight: 400;
}

.dashboard-project-editor__card > input::placeholder,
.dashboard-project-editor__fields input::placeholder,
.dashboard-project-editor__fields textarea::placeholder,
.dashboard-project-tools input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.dashboard-project-tools span {
  font-size: 13px;
  font-weight: 400;
}

.dashboard-project-detail summary {
  font-weight: 500;
}


.testimonial-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-marquee__track {
  animation: testimonial-scroll-left-to-right 34s linear infinite;
  display: flex;
  gap: 24px;
  width: max-content;
}

.testimonial-marquee:hover .testimonial-marquee__track {
  animation-play-state: paused;
}

.testimonial-marquee__item {
  flex: 0 0 min(390px, calc(100vw - 48px));
}

.testimonial-marquee__item .testimonial-item {
  height: calc(100% - 30px);
}

@keyframes testimonial-scroll-left-to-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
}


/* Contact socials: fixed icon layout */
.contact-content-part .about-social {
  margin-top: 18px !important;
}

.contact-content-part .about-social ul {
  align-items: center;
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-content-part .about-social ul li {
  display: block !important;
  margin: 0 !important;
}

.contact-content-part .about-social ul li a {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dedede;
  border-radius: 8px;
  color: #070707;
  display: flex !important;
  font-size: 24px;
  height: 52px;
  justify-content: center;
  line-height: 1;
  padding: 0 !important;
  width: 52px;
}

.contact-content-part .about-social ul li a i {
  display: block;
  line-height: 1;
}

.contact-content-part .single-contact h2 {
  position: relative;
  z-index: 1;
}


.contact-content-part .about-social ul li a {
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-content-part .about-social ul li a:hover {
  background: #9c383c;
  border-color: #9c383c;
  box-shadow: 0 12px 28px rgba(156, 56, 60, 0.24);
  color: #ffffff;
  transform: translateY(-4px);
}

.contact-content-part .about-social ul li a:active {
  transform: translateY(-1px);
}

.dashboard-flex-blocks {
  border: 1px solid #ededed;
  border-radius: 14px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.dashboard-flex-blocks__head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.dashboard-flex-blocks__head h4 {
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 2px;
}

.dashboard-flex-blocks__head button {
  background: #9c383c;
  border: 0;
  border-radius: 10px;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  padding: 9px 12px;
}

.dashboard-project-gallery {
  border: 1px solid #ededed;
  border-radius: 14px;
  display: grid;
  gap: 16px;
  padding: 16px;
}

.dashboard-project-gallery-image {
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  display: grid;
  gap: 12px;
  padding: 12px;
}

.dashboard-project-gallery-image header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dashboard-project-gallery-image header strong {
  color: #111111;
  font-size: 14px;
}

.dashboard-project-gallery-image header small {
  color: #877d73;
  font-size: 11px;
  font-weight: 500;
  margin-left: 4px;
}

.dashboard-project-gallery-image header button {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dfd8d1;
  border-radius: 8px;
  color: #8b3036;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
  height: 36px;
  justify-content: center;
  padding: 0 10px;
}

.dashboard-project-gallery-image header button i {
  font-size: 17px;
}

.dashboard-project-gallery-image input[data-dashboard-gallery-image-url] {
  font-size: 12px;
}

.dashboard-project-gallery-image .dashboard-detail-image-preview {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.dashboard-project-gallery-image .dashboard-detail-image-preview img {
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.dashboard-flex-block {
  border: 1px solid #ece7e1;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
}

.dashboard-flex-block header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.dashboard-flex-block header strong {
  color: #111111;
  font-size: 14px;
  font-weight: 600;
}

.dashboard-flex-block header button {
  align-items: center;
  background: #f4f1ec;
  border: 0;
  border-radius: 999px;
  color: #9c383c;
  cursor: pointer;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.project-case-section--flexible {
  background: #f4f1ec;
}

/* The detail page uses its existing rules as separators instead of changing background per section. */
.project-case-hero--snapshot,
.project-case-section--overview,
.project-case-section--role,
.project-case-section--showcase,
.project-case-section--snapshot-gallery,
.project-case-section--flexible,
.project-case-section--quote {
  background: #fbfaf7;
}

.project-case-section--quote {
  color: #2a1608;
}

.project-case-section--quote blockquote {
  color: #2a1608;
}

@media (max-width: 640px) {
  .project-case-hero--snapshot h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.1;
  }

  .project-case-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .project-case-tags {
    gap: 10px;
    margin-top: 24px;
  }

  .project-case-tags span {
    font-size: 16px;
    padding: 9px 14px;
  }

  .project-case-story h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .project-case-story p {
    font-size: 17px;
    line-height: 1.6;
  }

  .project-case-section--quote blockquote {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.16;
  }
}

.project-case-quote__footer {
  border-color: #dfdad2;
}

.project-case-quote__footer p {
  color: #574c43;
  font-family: "Roboto", sans-serif;
}

.project-case-flexible {
  display: grid;
  gap: 28px;
}

.project-case-flex-block {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.project-case-flex-block--text {
  padding: clamp(24px, 4vw, 46px);
}

.project-case-flex-block h3 {
  color: #111111;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 18px;
}

.project-case-flex-block p,
.project-case-flex-block figcaption span {
  color: #57524d;
  display: block;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
}

.project-case-flex-block img {
  display: block;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.project-case-flex-block--text img {
  border-radius: 18px;
  margin-top: 24px;
}

.project-case-flex-block figcaption {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
}

.project-case-flex-block figcaption strong {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .dashboard-flex-blocks__head {
    align-items: flex-start;
    flex-direction: column;
  }
}

.dashboard-social-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid #e7e2dc;
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 22px;
}

.dashboard-social-card__icon {
  align-items: center;
  background: #f4f1ec;
  border-radius: 16px;
  color: #111111;
  display: inline-flex;
  font-size: 34px;
  height: 74px;
  justify-content: center;
  width: 74px;
}

.dashboard-social-card h3 {
  color: #111111;
  font-size: 22px;
  font-weight: 600;
  margin: 8px 0 4px;
}

.dashboard-social-card a {
  color: #9c383c;
  overflow-wrap: anywhere;
}

.dashboard-social-card p {
  color: #6d6862;
  margin: 4px 0 0;
}

@media (max-width: 760px) {
  .dashboard-social-card {
    align-items: flex-start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dashboard-social-card .dashboard-content-card__actions {
    grid-column: 1 / -1;
  }
}


/* Skills marquee */
.skill-items-wrap {
  overflow: hidden;
  position: relative;
}

.skill-items-wrap::before,
.skill-items-wrap::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 72px;
  z-index: 2;
}

.skill-items-wrap::before {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}

.skill-items-wrap::after {
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}

.skill-marquee-track {
  animation: skillMarqueeRightToLeft 30s linear infinite;
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.skill-items-wrap:hover .skill-marquee-track {
  animation-play-state: paused;
}

.skill-marquee-item {
  flex: 0 0 220px;
}

.skill-marquee-item .skill-item {
  height: 100%;
}

@keyframes skillMarqueeRightToLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (max-width: 640px) {
  .skill-marquee-track {
    gap: 16px;
  }

  .skill-marquee-item {
    flex-basis: 170px;
  }

  .skill-item {
    padding: 28px 20px;
  }
}


/* Compact dashboard lists for Social and Skills */
.dashboard-card-grid--compact-list {
  grid-template-columns: minmax(0, 1fr);
  padding: 28px 32px;
}

.dashboard-card-grid--compact-list .dashboard-social-card {
  min-width: 0;
}

.dashboard-social-card {
  align-items: center;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  min-height: auto;
}

.dashboard-social-card > div:nth-child(2) {
  min-width: 0;
}

.dashboard-social-card h3 {
  line-height: 1.15;
}

.dashboard-social-card a:not(.dashboard-content-card__actions a) {
  display: block;
  line-height: 1.45;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

.dashboard-social-card .dashboard-content-card__actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  min-width: 170px;
}

.dashboard-social-card .dashboard-content-card__actions a {
  white-space: nowrap;
}

@media (max-width: 760px) {
  .dashboard-card-grid--compact-list {
    padding: 20px;
  }

  .dashboard-social-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .dashboard-social-card__icon {
    height: 62px;
    width: 62px;
  }

  .dashboard-social-card .dashboard-content-card__actions {
    min-width: 0;
  }
}


.dashboard-skill-card__icon img {
  display: none;
}


.skill-item i {
  align-items: center;
  color: #111111;
  display: inline-flex;
  font-size: 52px;
  height: 72px;
  justify-content: center;
  line-height: 1;
  width: 72px;
}

.dashboard-skill-card__icon i {
  display: block;
  font-size: 34px;
  line-height: 1;
}


/* Dashboard status display */
.dashboard-status--active,
.dashboard-status--published {
  background: #e0f8ea !important;
  border: 1px solid #b7ebca;
  color: #0d7a45 !important;
}

.dashboard-status--draft {
  background: #fff1ba !important;
  border: 1px solid #f1cd63;
  color: #8a5b00 !important;
}

.dashboard-status--disabled {
  background: #2f3135 !important;
  border: 1px solid #2f3135;
  color: #ffffff !important;
}

.dashboard-content-card:has(.dashboard-status--active),
.dashboard-blog-card:has(.dashboard-status--active),
.dashboard-testimonial-card:has(.dashboard-status--active),
.dashboard-social-card:has(.dashboard-status--active) {
  background: #ffffff;
  opacity: 1;
}

.dashboard-content-card:has(.dashboard-status--draft),
.dashboard-blog-card:has(.dashboard-status--draft),
.dashboard-testimonial-card:has(.dashboard-status--draft),
.dashboard-social-card:has(.dashboard-status--draft) {
  background: #fffaf0;
  border-color: #f1d386;
}

.dashboard-content-card:has(.dashboard-status--disabled),
.dashboard-blog-card:has(.dashboard-status--disabled),
.dashboard-testimonial-card:has(.dashboard-status--disabled),
.dashboard-social-card:has(.dashboard-status--disabled) {
  background: #f0f0f0;
  border-color: #d0d0d0;
  filter: grayscale(0.65);
  opacity: 0.58;
}

.dashboard-content-card:has(.dashboard-status--disabled) img,
.dashboard-blog-card:has(.dashboard-status--disabled) img,
.dashboard-testimonial-card:has(.dashboard-status--disabled) img {
  filter: grayscale(1) brightness(0.72);
}

.dashboard-statuses button.is-active {
  background: #9c383c;
  border-color: #9c383c;
  color: #ffffff;
}

.dashboard-statuses button[data-dashboard-status="Active"]:not(.is-active) {
  background: #f1fbf5;
  color: #0d7a45;
}

.dashboard-statuses button[data-dashboard-status="Draft"]:not(.is-active) {
  background: #fff7d9;
  color: #8a5b00;
}

.dashboard-statuses button[data-dashboard-status="Disabled"]:not(.is-active) {
  background: #eeeeee;
  color: #4d4d4d;
}


/* Custom skill icon fallbacks for selfhst/solar classes */
.selfhst-adobe-photoshop,
.selfhst-adobe-illustrator,
.selfhst-adobe-premiere-pro,
.selfhst-capcut,
.solar-figma-bold-duotone {
  align-items: center;
  border-radius: 18px;
  display: inline-flex;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0;
}

.selfhst-adobe-photoshop::before,
.selfhst-adobe-illustrator::before,
.selfhst-adobe-premiere-pro::before,
.selfhst-capcut::before,
.solar-figma-bold-duotone::before {
  display: block;
  line-height: 1;
}

.selfhst-adobe-photoshop {
  background: #001e36;
  color: #31a8ff;
}

.selfhst-adobe-photoshop::before {
  content: "Ps";
}

.selfhst-adobe-illustrator {
  background: #330000;
  color: #ff9a00;
}

.selfhst-adobe-illustrator::before {
  content: "Ai";
}

.selfhst-adobe-premiere-pro {
  background: #00005b;
  color: #9999ff;
}

.selfhst-adobe-premiere-pro::before {
  content: "Pr";
}

.selfhst-capcut {
  background: #111111;
  color: #ffffff;
}

.selfhst-capcut::before {
  content: "Cc";
}

.solar-figma-bold-duotone {
  background: #ffffff;
  box-shadow: inset 0 0 0 2px #111111;
  color: #111111;
}

.solar-figma-bold-duotone::before {
  content: "Fg";
}

.skill-item .selfhst-adobe-photoshop,
.skill-item .selfhst-adobe-illustrator,
.skill-item .selfhst-adobe-premiere-pro,
.skill-item .selfhst-capcut,
.skill-item .solar-figma-bold-duotone {
  font-size: 28px;
  height: 72px;
  width: 72px;
}

.dashboard-skill-card__icon .selfhst-adobe-photoshop,
.dashboard-skill-card__icon .selfhst-adobe-illustrator,
.dashboard-skill-card__icon .selfhst-adobe-premiere-pro,
.dashboard-skill-card__icon .selfhst-capcut,
.dashboard-skill-card__icon .solar-figma-bold-duotone {
  font-size: 18px;
  height: 44px;
  width: 44px;
}


/* Render custom skill icon classes as SVG icons */

.selfhst-adobe-photoshop {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 0 !important;
}

.selfhst-adobe-photoshop::before {
  background-image: url("data:image/svg+xml;base64,CiAgICA8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDY0IDY0Ij4KICAgICAgPHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiByeD0iMTQiIGZpbGw9IiMwMDFlMzYiLz4KICAgICAgPHJlY3QgeD0iNyIgeT0iNyIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzMxYThmZiIgc3Ryb2tlLXdpZHRoPSI0Ii8+CiAgICAgIDx0ZXh0IHg9IjE2IiB5PSI0MiIgZmlsbD0iIzMxYThmZiIgZm9udC1mYW1pbHk9IkFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWYiIGZvbnQtc2l6ZT0iMjUiIGZvbnQtd2VpZ2h0PSI4MDAiPlBzPC90ZXh0PgogICAgPC9zdmc+CiAg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  height: 100%;
  width: 100%;
}

.selfhst-adobe-illustrator {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 0 !important;
}

.selfhst-adobe-illustrator::before {
  background-image: url("data:image/svg+xml;base64,CiAgICA8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDY0IDY0Ij4KICAgICAgPHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiByeD0iMTQiIGZpbGw9IiMzMzAwMDAiLz4KICAgICAgPHJlY3QgeD0iNyIgeT0iNyIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmOWEwMCIgc3Ryb2tlLXdpZHRoPSI0Ii8+CiAgICAgIDx0ZXh0IHg9IjE4IiB5PSI0MiIgZmlsbD0iI2ZmOWEwMCIgZm9udC1mYW1pbHk9IkFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWYiIGZvbnQtc2l6ZT0iMjUiIGZvbnQtd2VpZ2h0PSI4MDAiPkFpPC90ZXh0PgogICAgPC9zdmc+CiAg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  height: 100%;
  width: 100%;
}

.selfhst-adobe-premiere-pro {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 0 !important;
}

.selfhst-adobe-premiere-pro::before {
  background-image: url("data:image/svg+xml;base64,CiAgICA8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDY0IDY0Ij4KICAgICAgPHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiByeD0iMTQiIGZpbGw9IiMwMDAwNWIiLz4KICAgICAgPHJlY3QgeD0iNyIgeT0iNyIgd2lkdGg9IjUwIiBoZWlnaHQ9IjUwIiByeD0iMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzk5OTlmZiIgc3Ryb2tlLXdpZHRoPSI0Ii8+CiAgICAgIDx0ZXh0IHg9IjE1IiB5PSI0MiIgZmlsbD0iIzk5OTlmZiIgZm9udC1mYW1pbHk9IkFyaWFsLCBIZWx2ZXRpY2EsIHNhbnMtc2VyaWYiIGZvbnQtc2l6ZT0iMjUiIGZvbnQtd2VpZ2h0PSI4MDAiPlByPC90ZXh0PgogICAgPC9zdmc+CiAg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  height: 100%;
  width: 100%;
}

.selfhst-capcut {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 0 !important;
}

.selfhst-capcut::before {
  background-image: url("data:image/svg+xml;base64,CiAgICA8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDY0IDY0Ij4KICAgICAgPHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiByeD0iMTQiIGZpbGw9IiMxMTEiLz4KICAgICAgPHBhdGggZD0iTTE4IDE5aDI4bC05IDkgOSA5SDE4bDktOS05LTlaIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgogICAgICA8cGF0aCBkPSJNMTggNDVoMjhNMTggMTloMjgiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI1IiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KICAgIDwvc3ZnPgogIA==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  height: 100%;
  width: 100%;
}

.solar-figma-bold-duotone {
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-size: 0 !important;
}

.solar-figma-bold-duotone::before {
  background-image: url("data:image/svg+xml;base64,CiAgICA8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDY0IDY0Ij4KICAgICAgPHJlY3Qgd2lkdGg9IjY0IiBoZWlnaHQ9IjY0IiByeD0iMTQiIGZpbGw9IiNmZmYiLz4KICAgICAgPGNpcmNsZSBjeD0iMjQiIGN5PSIxNiIgcj0iMTAiIGZpbGw9IiNmMjRlMWUiLz4KICAgICAgPGNpcmNsZSBjeD0iNDAiIGN5PSIxNiIgcj0iMTAiIGZpbGw9IiNmZjcyNjIiLz4KICAgICAgPGNpcmNsZSBjeD0iNDAiIGN5PSIzMiIgcj0iMTAiIGZpbGw9IiMxYWJjZmUiLz4KICAgICAgPGNpcmNsZSBjeD0iMjQiIGN5PSI0OCIgcj0iMTAiIGZpbGw9IiMwYWNmODMiLz4KICAgICAgPHBhdGggZD0iTTI0IDIyYTEwIDEwIDAgMCAxIDAgMjAgMTAgMTAgMCAxIDEgMC0yMFoiIGZpbGw9IiNhMjU5ZmYiLz4KICAgIDwvc3ZnPgogIA==");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  display: block;
  height: 100%;
  width: 100%;
}



/* Skills image mode */
.dashboard-skill-card__icon img {
  display: block !important;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.skill-item img {
  display: inline-block;
  height: 72px;
  object-fit: contain;
  width: 72px;
}


/* Compact skill marquee cards */
.skill-marquee-item {
  flex-basis: 220px;
}

.skill-marquee-item .skill-item {
  border-radius: 16px !important;
  min-height: 136px;
  padding: 22px 18px !important;
}

.skill-marquee-item .skill-item img {
  height: 54px;
  width: 54px;
}

.skill-marquee-item .skill-item h5 {
  font-size: 16px;
  line-height: 1.2;
  margin: 14px 0 0 !important;
}

@media (max-width: 640px) {
  .skill-marquee-item {
    flex-basis: 178px;
  }

  .skill-marquee-item .skill-item {
    min-height: 118px;
    padding: 18px 14px !important;
  }

  .skill-marquee-item .skill-item img {
    height: 46px;
    width: 46px;
  }
}


/* Skill dashboard cards: cleaner media and hidden inline status */
.dashboard-skill-card .dashboard-status {
  display: none;
}

.dashboard-skill-card .dashboard-social-card__icon {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dashboard-skill-card__icon img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}


/* Blog dashboard cards: keep status compact in the action row */
.dashboard-blog-card .dashboard-preview-actions {
  align-items: center;
  gap: 12px;
}

.dashboard-preview-actions__left {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.dashboard-blog-card .dashboard-preview-actions .dashboard-status {
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  min-height: 24px;
  padding: 0 9px;
}

.dashboard-blog-card .postbox__thumb .dashboard-status {
  display: none;
}


/* Blog dashboard cards: status opposite Read more */
.dashboard-blog-card__read-row {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.dashboard-blog-card__read-row .dashboard-status {
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  min-height: 24px;
  padding: 0 9px;
}


/* Blog dashboard cards: unified background behind image and content */
.dashboard-blog-card .postbox__item {
  background: #f7f5ef;
}

.dashboard-blog-card .postbox__thumb {
  background: #f7f5ef;
}

.dashboard-blog-card .postbox__thumb img {
  display: block;
  width: 100%;
}


/* System color scheme */
:root {
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background: #101010 !important;
    color: #d7d2cc !important;
  }

  body,
  main,
  section,
  .grey-bg,
  .white-bg,
  .blog-area,
  .about-area,
  .service-area,
  .projects-area,
  .portfolio-area,
  .testimonial-area,
  .contact-area,
  .skill-area,
  .resume-area,
  .client-area,
  .breadcrumb-area,
  .project-case-section,
  .dashboard-page,
  .dashboard-shell,
  .dashboard-main {
    background-color: #101010 !important;
  }

  .project-case-section:nth-of-type(odd):not(.project-case-section--outcome),
  .project-case-section--flexible,
  .project-case-hero {
    background: #141312 !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .section-title h2,
  .hero-content h1,
  .about-content h2,
  .project-case-hero h1,
  .project-case-section h2,
  .project-case-section h3,
  .postbox__title,
  .postbox__title a,
  .dashboard-header h1,
  .dashboard-content-card h3,
  .dashboard-social-card h3,
  .dashboard-modal h2,
  .dashboard-project-editor__panel h2,
  .dashboard-project-editor__label,
  .dashboard-flex-block header strong,
  .dashboard-flex-blocks__head h4 {
    color: #f7f2ec !important;
  }

  p,
  li,
  span,
  small,
  label,
  .hero-content p,
  .about-content p,
  .section-title p,
  .project-case-hero p,
  .project-case-lead,
  .project-case-richtext p,
  .project-case-card-grid p,
  .project-case-timeline p,
  .project-case-prototype p,
  .project-case-outcome-grid p,
  .project-case-role-list li,
  .postbox__text p,
  .dashboard-header span,
  .dashboard-content-card__body p,
  .dashboard-content-card__role,
  .dashboard-social-card p,
  .dashboard-contact-card__message,
  .dashboard-field-note,
  .dashboard-logo-card small,
  .dashboard-project-editor__card p,
  .dashboard-project-editor__card small {
    color: #b9b1aa !important;
  }

  a {
    color: inherit;
  }

  input,
  select,
  textarea,
  .nice-select {
    background: #181716 !important;
    border-color: #34302c !important;
    color: #f3eee8 !important;
  }

  input::placeholder,
  textarea::placeholder {
    color: #7f7770 !important;
  }

  .main-menu ul li a,
  .mobile-menu ul li a,
  .mean-container .mean-nav ul li a,
  .header-area a {
    color: #f4eee8 !important;
  }

  .header-area,
  .sticky,
  .mobile-menu.mean-container,
  .mean-container .mean-nav {
    background: #101010 !important;
  }

  .theme-btn,
  .dashboard-button--primary,
  .dashboard-header .dashboard-button--primary {
    background: #9c383c !important;
    border-color: #9c383c !important;
    color: #ffffff !important;
  }

  .theme-btn:hover,
  .dashboard-button--primary:hover {
    background: #b94b50 !important;
    border-color: #b94b50 !important;
    color: #ffffff !important;
  }

  .theme-btn-two,
  .dashboard-button--secondary {
    background: #181716 !important;
    border-color: #34302c !important;
    color: #f3eee8 !important;
  }

  .service-item,
  .skill-item,
  .resume-item,
  .pricing-item,
  .client-logo,
  .testimonial-item,
  .blog-item,
  .postbox__item,
  .postbox__content,
  .project-card,
  .project-case-meta article,
  .project-case-two-col article,
  .project-case-card-grid article,
  .project-case-role-list,
  .project-case-prototype,
  .project-case-flex-block,
  .dashboard-stats article,
  .dashboard-table,
  .dashboard-modal__panel,
  .dashboard-content-card,
  .dashboard-testimonial-card,
  .dashboard-contact-card,
  .dashboard-logo-card,
  .dashboard-project-editor__card,
  .dashboard-project-editor__panel,
  .dashboard-social-card,
  .dashboard-blog-card .postbox__item,
  .dashboard-blog-card .postbox__thumb,
  .dashboard-blog-card .postbox__content {
    background: #181716 !important;
    border-color: #34302c !important;
    color: #f3eee8 !important;
  }

  .project-case-hero__media,
  .project-case-wide-image,
  .dashboard-content-card__media,
  .dashboard-image-preview,
  .dashboard-detail-image-preview,
  .dashboard-project-thumb,
  .dashboard-logo-card__preview,
  .dashboard-social-card__icon,
  .contact-content-part .about-social ul li a {
    background: #22201e !important;
    border-color: #34302c !important;
  }

  .dashboard-sidebar,
  .dashboard-topbar,
  .dashboard-toolbar,
  .dashboard-segments,
  .dashboard-search {
    background: #151413 !important;
    border-color: #302c29 !important;
  }

  .dashboard-nav__item,
  .dashboard-back,
  .dashboard-topbar__meta a,
  .dashboard-user,
  .dashboard-search input {
    color: #d7d2cc !important;
  }

  .dashboard-nav__item:hover,
  .dashboard-back:hover {
    background: rgba(156, 56, 60, 0.18) !important;
  }

  .dashboard-nav__item.is-active,
  .dashboard-segments button.is-active,
  .dashboard-statuses button.is-active {
    background: #9c383c !important;
    color: #ffffff !important;
  }

  .dashboard-segments button.is-active {
    background: transparent !important;
  }

  .dashboard-segments button.is-active::after {
    background: #9c383c !important;
  }

  .dashboard-content-card__tags span,
  .dashboard-project-tools span {
    background: rgba(156, 56, 60, 0.28) !important;
    color: #ffd7da !important;
  }

  .dashboard-status--active,
  .dashboard-status--published {
    background: rgba(33, 150, 83, 0.2) !important;
    border-color: rgba(33, 150, 83, 0.38) !important;
    color: #8ee0ad !important;
  }

  .dashboard-status--draft {
    background: rgba(245, 184, 48, 0.22) !important;
    border-color: rgba(245, 184, 48, 0.4) !important;
    color: #ffd873 !important;
  }

  .dashboard-status--disabled {
    background: #2b2b2b !important;
    border-color: #3c3c3c !important;
    color: #c8c8c8 !important;
  }

  .dashboard-content-card:has(.dashboard-status--active),
  .dashboard-blog-card:has(.dashboard-status--active),
  .dashboard-testimonial-card:has(.dashboard-status--active),
  .dashboard-social-card:has(.dashboard-status--active) {
    background: #181716 !important;
  }

  .dashboard-content-card:has(.dashboard-status--draft),
  .dashboard-blog-card:has(.dashboard-status--draft),
  .dashboard-testimonial-card:has(.dashboard-status--draft),
  .dashboard-social-card:has(.dashboard-status--draft) {
    background: #211d14 !important;
    border-color: rgba(245, 184, 48, 0.36) !important;
  }

  .dashboard-content-card:has(.dashboard-status--disabled),
  .dashboard-blog-card:has(.dashboard-status--disabled),
  .dashboard-testimonial-card:has(.dashboard-status--disabled),
  .dashboard-social-card:has(.dashboard-status--disabled) {
    background: #151515 !important;
    opacity: 0.62;
  }

  .contact-content-part .about-social ul li a {
    color: #f3eee8 !important;
  }

  .contact-content-part .about-social ul li a:hover {
    background: #9c383c !important;
    border-color: #9c383c !important;
    color: #ffffff !important;
  }

  .project-case-section--outcome {
    background: #0b0b0b !important;
  }

  img {
    filter: brightness(0.92);
  }

  .logo img,
  .dashboard-brand img,
  .dashboard-login__brand img,
  .dashboard-logo-card__preview img,
  .dashboard-skill-card__icon img {
    filter: none;
  }
}

/* Desktop sidebar collapse control. Mobile keeps the existing expandable menu. */
@media (min-width: 761px) {
  .dashboard-menu-toggle {
    background: #f0efed;
    border: 1px solid #dedbd7;
    color: #3b3937;
    display: inline-flex;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .dashboard-menu-toggle:hover {
    background: #9c383c;
    color: #ffffff;
  }

  .dashboard-shell {
    transition: grid-template-columns 220ms ease;
  }

  .dashboard-sidebar {
    transition: padding 220ms ease;
  }

  .dashboard-shell.is-sidebar-collapsed {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }

  .dashboard-shell.is-sidebar-collapsed .dashboard-sidebar {
    align-items: center;
    padding: 18px 10px;
  }

  .dashboard-shell.is-sidebar-collapsed .dashboard-sidebar__head {
    justify-content: center;
  }

  .dashboard-shell.is-sidebar-collapsed .dashboard-brand,
  .dashboard-shell.is-sidebar-collapsed .dashboard-nav::before,
  .dashboard-shell.is-sidebar-collapsed .dashboard-nav__item span,
  .dashboard-shell.is-sidebar-collapsed .dashboard-nav__item strong,
  .dashboard-shell.is-sidebar-collapsed .dashboard-back span,
  .dashboard-shell.is-sidebar-collapsed .dashboard-sidebar__foot {
    display: none !important;
  }

  .dashboard-shell.is-sidebar-collapsed .dashboard-nav,
  .dashboard-shell.is-sidebar-collapsed .dashboard-back {
    width: 100%;
  }

  .dashboard-shell.is-sidebar-collapsed .dashboard-nav__item,
  .dashboard-shell.is-sidebar-collapsed .dashboard-back {
    grid-template-columns: 1fr !important;
    justify-items: center;
    padding: 0;
  }

  .dashboard-shell.is-sidebar-collapsed .dashboard-nav__item i,
  .dashboard-shell.is-sidebar-collapsed .dashboard-back i {
    font-size: 20px;
  }
}

@media (prefers-color-scheme: dark) and (min-width: 761px) {
  .dashboard-menu-toggle {
    background: #2a2826;
    border-color: #3d3935;
    color: #f4efe9;
  }
}

/* Company logos should move continuously at a readable, brisk pace. */
.company-design-area .scroller[data-animated="true"] .scroller__inner {
  animation-duration: 16s;
  will-change: transform;
}

/* Dynamic testimonial cards are injected after WOW initializes, so they must
   not inherit its hidden pre-animation state on small screens. */
@media (max-width: 640px) {
  .testimonial-marquee__track {
    animation-name: testimonial-scroll-mobile;
    animation-duration: 26s;
  }

  .testimonial-marquee__item {
    flex-basis: calc(100vw - 40px);
  }
}

@keyframes testimonial-scroll-mobile {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

/* Contact unread counter: visible against the light dashboard sidebar. */
.dashboard-sidebar .dashboard-nav__item strong {
  background: #9c383c;
  box-shadow: 0 2px 8px rgba(156, 56, 60, 0.26);
  color: #ffffff;
  font-weight: 700;
}

.dashboard-sidebar .dashboard-nav__item.is-active strong {
  background: #ffffff;
  color: #9c383c;
}

/* Header actions without a supported workflow must not reserve space. */
.dashboard-header [data-dashboard-add][hidden] {
  display: none !important;
}

@media (prefers-color-scheme: dark) {
  .dashboard-sidebar .dashboard-nav__item strong {
    background: #e07b80;
    color: #1b1010;
  }

  .dashboard-sidebar .dashboard-nav__item.is-active strong {
    background: #ffffff;
    color: #9c383c;
  }
}


/* Contact section dark mode contrast fix */
@media (prefers-color-scheme: dark) {
  .contact-area {
    background: #101010 !important;
  }

  .contact-content-part,
  .contact-form-area,
  .contact-page-form {
    background: #181716 !important;
    border-color: #34302c !important;
    color: #f3eee8 !important;
  }

  .contact-content-part .single-contact h2,
  .contact-form-area .form-group label,
  .contact-page-form .form-group label {
    color: #f7f2ec !important;
  }

  .contact-content-part .single-contact p,
  .contact-content-part .single-contact a,
  .contact-page-content h6 {
    color: #b9b1aa !important;
  }

  .contact-content-part .circle-btn,
  .contact-content-part .circle-btn i {
    color: #f7f2ec !important;
  }

  .contact-form-area .form-group .form-control,
  .contact-page-form .form-group .form-control,
  .contact-form-area .form-group input[type="text"],
  .contact-form-area .form-group input[type="email"],
  .contact-form-area .form-group textarea {
    background: #11100f !important;
    border-color: #3d3834 !important;
    color: #f7f2ec !important;
  }

  .contact-form-area .form-group .form-control::placeholder,
  .contact-page-form .form-group .form-control::placeholder {
    color: #817972 !important;
    opacity: 1;
  }

  .contact-form-area .form-group .for-icon {
    color: #b9b1aa !important;
  }

  .contact-form-area .form-group .form-control:focus,
  .contact-page-form .form-group .form-control:focus {
    border-color: #9c383c !important;
    box-shadow: 0 0 0 3px rgba(156, 56, 60, 0.18) !important;
  }

  .contact-content-part .about-social ul li a {
    background: #11100f !important;
    border-color: #3d3834 !important;
    color: #f7f2ec !important;
  }

  .contact-content-part .about-social ul li a:hover {
    background: #9c383c !important;
    border-color: #9c383c !important;
    color: #ffffff !important;
  }
}


/* Footer theme contrast */
.main-footer {
  background: #f4f1ec !important;
  color: #111111 !important;
}

.footer-top {
  padding-bottom: clamp(56px, 8vw, 96px) !important;
  padding-top: clamp(56px, 8vw, 96px) !important;
}

.footer-top p,
p.copy-left-text,
p.copy-right-text,
p.copy-left-text a {
  color: #6f6760 !important;
}

.footer-top h2,
.footer-top h2 a {
  color: #111111 !important;
  display: inline-block;
  text-decoration: none;
}

.footer-top h2 a:hover,
p.copy-left-text a:hover {
  color: #9c383c !important;
}

@media (prefers-color-scheme: dark) {
  .main-footer {
    background: #101010 !important;
    color: #f7f2ec !important;
  }

  .footer-top p,
  p.copy-left-text,
  p.copy-right-text,
  p.copy-left-text a {
    color: #b9b1aa !important;
  }

  .footer-top h2,
  .footer-top h2 a {
    color: #f7f2ec !important;
  }

  .footer-top h2 a:hover,
  p.copy-left-text a:hover {
    color: #ffb7bb !important;
  }
}


/* Service icon color in system dark mode */
.service-item i {
  color: #111111;
}

.service-item:hover i {
  color: #9c383c;
}

@media (prefers-color-scheme: dark) {
  .service-item i {
    color: #f7f2ec !important;
  }

  .service-item:hover i {
    color: #ffb7bb !important;
  }

  .service-item h5 {
    border-color: #d7d2cc !important;
    color: #f7f2ec !important;
  }
}


/* Center footer CTA title */
.footer-top {
  text-align: center !important;
}

.footer-top h2 {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  width: 100% !important;
}

.footer-top h2 a {
  display: inline-block !important;
  text-align: center !important;
}


/* About page and menu dark mode fixes */
@media (prefers-color-scheme: dark) {
  .main-header,
  .main-header .header-upper,
  .main-header .header-inner,
  .fixed-header .header-upper,
  .sidebar__area,
  .sidebar__wrapper,
  .mean-container .mean-nav,
  .mean-container .mean-bar {
    background: #101010 !important;
    border-color: #302c29 !important;
  }

  .main-menu ul li a,
  .main-menu ul li.has-dropdown > a::after,
  .side-menu-icon a,
  .side-menu-icon i,
  .mean-container .mean-nav ul li a,
  .mean-container .mean-nav ul li a.mean-expand,
  .sidebar__close-btn {
    color: #f7f2ec !important;
  }

  .main-menu ul li:hover > a,
  .main-menu ul li .active,
  .main-menu ul li a:hover {
    color: #ffb7bb !important;
  }

  .main-menu ul li .sub-menu {
    background: #181716 !important;
    border: 1px solid #34302c !important;
  }

  .main-menu ul li .sub-menu li a {
    color: #d7d2cc !important;
  }

  .main-menu ul li .sub-menu li:hover > a {
    color: #ffb7bb !important;
  }

  .single-page-hero-area,
  .resume-area,
  .skill-area {
    background: #101010 !important;
  }

  .resume-wrapper .resume-box,
  .about-image-part,
  .about-counter-part,
  .skill-item {
    background: #181716 !important;
    border-color: #34302c !important;
    color: #f3eee8 !important;
  }

  .resume-box h2,
  .single-page-hero-area h2,
  .skill-item h5,
  .about-image-part h2,
  .about-counter-part h2 {
    color: #f7f2ec !important;
  }

  .resume-box p,
  .resume-box span:not(.resume-date),
  .single-page-hero-area p,
  .about-counter-part p,
  .skill-item .percent {
    color: #b9b1aa !important;
  }

  .resume-wrapper .resume-box .resume-date {
    background: #0f0f0f !important;
    border-color: #5b5550 !important;
    color: #f7f2ec !important;
  }

  .resume-wrapper .resume-box .resume-date::before {
    border-color: #f7f2ec !important;
  }

  .resume-wrapper .resume-box .resume-date::after {
    background: #f7f2ec !important;
  }
}


/* Center footer copyright */
.main-footer .copy-left-text,
.main-footer .copy-right-text {
  text-align: center !important;
}

.main-footer .copy-left-text {
  width: 100%;
}

.main-footer .grid:last-child > div {
  grid-column: 1 / -1 !important;
}

.main-footer .grid:last-child > div:has(.copy-right-text:empty) {
  display: none;
}


/* Hero review contrast */
.clienti-reviews .reviews {
  color: #111111 !important;
}

.clienti-reviews .reviews span,
.clienti-reviews .reviews p {
  color: #6f6760 !important;
}

.clienti-reviews .clienti-profile li img {
  border: 2px solid #f4f1ec;
}

@media (prefers-color-scheme: dark) {
  .clienti-reviews .reviews {
    color: #f7f2ec !important;
  }

  .clienti-reviews .reviews span,
  .clienti-reviews .reviews p {
    color: #b9b1aa !important;
  }

  .clienti-reviews .clienti-profile li img {
    border-color: #101010;
    filter: none !important;
  }
}


/* About counter suffix cleanup */
.hero-counter-area .count-text.percent:after {
  content: "%" !important;
}


/* Managed company logos */
.company-logo-link {
  align-items: center;
  display: inline-flex;
}

.company-list .scroller__inner img {
  max-height: 64px;
  object-fit: contain;
  width: auto;
}


/* Company dashboard editor */
.dashboard-company-card .dashboard-content-card__actions {
  justify-content: flex-end;
}

.dashboard-company-card__logo {
  background: #ffffff;
  border: 1px solid #eeeeee;
}

.dashboard-company-card__logo img {
  display: block;
  max-height: 44px;
  max-width: 72px;
  object-fit: contain;
}

@media (prefers-color-scheme: dark) {
  .dashboard-company-card__logo {
    background: #22201e !important;
    border-color: #34302c !important;
  }
}


/* Dashboard hero management */
.dashboard-card-grid--hero {
  grid-template-columns: minmax(0, 640px);
}

.dashboard-hero-card .dashboard-content-card__media img {
  object-position: center;
}


/* Avata editor grouped fields */
.dashboard-form-section {
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid #e5ded7 !important;
  display: block !important;
  margin-top: 8px;
  padding: 18px 0 2px !important;
}

.dashboard-form-section h3 {
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}

.dashboard-form-section p {
  color: #8b837d;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .dashboard-form-section {
    border-color: #34302c !important;
  }

  .dashboard-form-section h3 {
    color: #f7f2ec !important;
  }

  .dashboard-form-section p {
    color: #b9b1aa !important;
  }
}


/* Avata dashboard split cards */
.dashboard-card-grid--avata-blocks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-hero-review-card {
  display: flex;
  flex-direction: column;
}

.dashboard-hero-review-card__avatars {
  align-items: center;
  background: #f4f1ec;
  display: flex;
  gap: 0;
  min-height: 220px;
  padding: 28px;
}

.dashboard-hero-review-card__avatars img {
  border: 3px solid #ffffff;
  border-radius: 999px;
  height: 82px;
  margin-left: -18px;
  object-fit: cover;
  width: 82px;
}

.dashboard-hero-review-card__avatars img:first-child {
  margin-left: 0;
}

@media (max-width: 900px) {
  .dashboard-card-grid--avata-blocks {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  .dashboard-hero-review-card__avatars {
    background: #22201e !important;
  }

  .dashboard-hero-review-card__avatars img {
    border-color: #181716;
  }
}


.dashboard-review-avatar-field {
  background: #f7f3ef;
  border: 1px solid #ddd4cb;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.dashboard-review-avatar-field > span {
  color: #141414;
  font-size: 14px;
  font-weight: 700;
}

.dashboard-review-avatar-field input[type="file"] {
  background: #fff;
  border: 1px dashed #c8beb3;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px;
}

.dashboard-review-avatar-preview {
  align-items: center;
  aspect-ratio: 1;
  background: #ede6df;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 96px;
}

.dashboard-review-avatar-preview img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}


/* Keep hero review avatars perfectly circular regardless of uploaded image ratio */
.clienti-reviews .clienti-profile li {
  align-items: center !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  display: flex !important;
  height: 64px !important;
  justify-content: center !important;
  overflow: hidden !important;
  width: 64px !important;
}

.clienti-reviews .clienti-profile li img {
  border-radius: 50% !important;
  display: block !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  width: 100% !important;
}


.dashboard-login__password {
  position: relative;
}

.dashboard-login__password input {
  padding-right: 58px !important;
}

.dashboard-login__password button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #6f7480;
  cursor: pointer;
  display: inline-flex;
  font-size: 22px;
  height: 44px;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
}

.dashboard-login__password button:hover,
.dashboard-login__password button:focus-visible {
  color: #9c383c;
}


/* Company and about section light background */
.company-design-area,
.about-area {
  background: #f4f1ec !important;
  color: #111111 !important;
}

.company-design-area h2,
.about-area .about-pre-title,
.about-area .about-content-part p,
.about-area .hero-counter-area .count-text,
.about-area .hero-counter-area .counter-title {
  color: #111111 !important;
}

.company-design-area .company-list {
  background: transparent !important;
}

.company-design-area .scroller__inner img {
  filter: none !important;
  opacity: 1 !important;
}

@media (prefers-color-scheme: dark) {
  .company-design-area,
  .about-area {
    background: #101010 !important;
    color: #f7f2ec !important;
  }

  .company-design-area h2,
  .about-area .about-pre-title,
  .about-area .about-content-part p,
  .about-area .hero-counter-area .count-text,
  .about-area .hero-counter-area .counter-title {
    color: #f7f2ec !important;
  }

  .company-design-area .company-list {
    background: transparent !important;
  }

  .company-design-area .scroller__inner img {
    filter: none !important;
    opacity: 0.92 !important;
  }
}

/* Public primary CTAs use the portfolio brand color in both system themes. */
.theme-btn {
  background: #9c383c !important;
  border-color: #9c383c !important;
  border-radius: 16px !important;
  color: #ffffff !important;
}

.theme-btn:hover,
.theme-btn:focus-visible {
  background: #782b2e !important;
  border-color: #782b2e !important;
  color: #ffffff !important;
}


/* Mobile typography and initial loader refinements */
/* The loader is visible only for the first document load in a browser session. */
.preloader {
  display: none !important;
}

html.has-initial-loader .preloader {
  display: flex !important;
}

@media (max-width: 640px) {
  /* Keep page hierarchy clear without headline-sized text taking over the screen. */
  body:not(.dashboard-page) main h1,
  body:not(.dashboard-page) .hero-content h1,
  body:not(.dashboard-page) .project-case-hero h1 {
    font-size: 48px !important;
    line-height: 1.08 !important;
  }

  body:not(.dashboard-page) main h2,
  body:not(.dashboard-page) .section-title h2,
  body:not(.dashboard-page) .project-case-section h2,
  body:not(.dashboard-page) .about-content h2 {
    font-size: 42px !important;
    line-height: 1.12 !important;
  }

  body:not(.dashboard-page) main h3,
  body:not(.dashboard-page) .project-case-flex-block h3 {
    font-size: 28px !important;
    line-height: 1.16 !important;
  }

  body:not(.dashboard-page) .project-case-section--quote blockquote {
    font-size: 34px !important;
    line-height: 1.16 !important;
  }

  .dashboard-header h1 {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }
}
