/* ================================
   CENTRALIZED DESIGN SYSTEM
   ================================
   
   All fonts and colors are defined here as CSS variables.
   To change fonts or colors globally, simply update the variables below.
   
   Usage: 
   - For headings: var(--font-heading)
   - For body text: var(--font-body)
   - For colors: var(--color-primary), var(--color-text), etc.
   
   ================================ */

/* Import fonts from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=Libre+Caslon+Condensed&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

/* Define design system variables at root level */
:root {
  /* ================================
     TYPOGRAPHY
     ================================ */

  /* Heading Font - Titles, Subtitles, Headers */
  --font-heading: "Libre Caslon Condensed", serif;

  /* Body Font - Normal text, paragraphs, content */
  --font-body: "Jost", sans-serif;

  /* ================================
     COLOR PALETTE
     ================================ */

  /* Primary Brand Color */
  --color-primary: #cda274;
  /* Accent Color */
  --color-accent: #cda274;
  /* Text Colors */
  --color-text: #616161;
  --color-text-dark: #272727;
  --color-text-light: #fff;
  --color-text-secondary: #33354b;

  /* Border & Divider Colors */
  --color-border: #9a99a6;
  --color-border-light: #e6e6e6;
  --color-border-subtle: #eceff8;
  --color-border-dashed: #f10;

  /* Background Colors */
  --color-bg-light: #f7f7f7;
  --color-bg-lighter: #f4f6f9;
  --color-bg-dark: #111;
  --color-bg-panel: #2c3e50;

  /* Status Colors */
  --color-error: #f10;
  --color-accent-orange: #ff783c;

  /* Hover & Interactive */
  --color-hover: rgba(205, 162, 116, 0.2);
  --color-hover-rgb: rgb(205, 162, 116);

  /* Motion */
  --motion-fast: 160ms;
  --motion-standard: 260ms;
  --motion-slow: 360ms;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-hover: 0 18px 42px rgba(17, 17, 17, 0.16);

  /* Rounded UI system */
  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --shadow-soft: 0 12px 34px rgba(17, 17, 17, 0.1);
  --shadow-soft-lg: 0 22px 52px rgba(17, 17, 17, 0.14);
  --transition-ui: 180ms var(--ease-out-quart);
}

/* Accessibility: Clear focus indicators */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Tinted Neutrals - subtle brand cohesion */
body {
  background-color: color-mix(
    in srgb,
    var(--color-bg-light),
    var(--color-primary) 1%
  );
  line-height: 1.6;
  letter-spacing: 0.01em;
}

html body.dark-theme .footer-middle,
html body.dark-theme .style-two.footer-middle {
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.62)),
    url(../images/resource/footer-bg.jpg) center / cover no-repeat !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  background-blend-mode: normal;
}

.el-style-footer .signature-name,
.el-style-footer .copyright-link .signature-name,
html body.dark-theme .el-style-footer .signature-name,
html body.dark-theme .el-style-footer .copyright-link .signature-name {
  font-family: "Dancing Script", cursive !important;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-primary) !important;
  text-transform: none;
  display: inline-block;
}

.el-style-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.el-style-footer .copyright-link .signature-name {
  font-size: 24px;
  vertical-align: baseline;
}

.el-style-footer .copyright-link {
  font-family: "Inter", var(--font-body), sans-serif;
}

.about-page-section.section-black,
.company-page-section.section-black {
  background: #f5f5f5 !important;
  background-color: #f5f5f5 !important;
}

html body.dark-theme .about-page-section.section-black,
html body.dark-theme .company-page-section.section-black {
  background: #000000 !important;
  background-color: #000000 !important;
}

.about-page-section.section-dark,
.company-page-section.section-dark {
  background: #f0f0f0 !important;
  background-color: #f0f0f0 !important;
}

.service-area,
.service-area.about-page-section.section-dark,
.service-area.company-page-section.section-dark {
  background: #272727 !important;
  background-color: #272727 !important;
}

html body.dark-theme .about-page-section.section-dark,
html body.dark-theme .company-page-section.section-dark {
  background: #111111 !important;
  background-color: #111111 !important;
}

html body.dark-theme .service-area,
html body.dark-theme .service-area.about-page-section.section-dark,
html body.dark-theme .service-area.company-page-section.section-dark {
  background: #272727 !important;
  background-color: #272727 !important;
}

html body.dark-theme .about-page-section :is(h1, h2, h3, h4, h5, h6),
html body.dark-theme .about-page-section :is(p, a, span, li),
html body.dark-theme .company-page-section :is(h1, h2, h3, h4, h5, h6),
html body.dark-theme .company-page-section :is(p, a, span, li) {
  color: var(--color-text-light) !important;
}

.about-page-section .RDD-section-title h4,
.about-page-section .dreamit-section-title h4,
.about-page-section .section-title h4,
.about-page-section :is(h1, h2, h3, h4, h5, h6) span,
.company-page-section .RDD-section-title h4,
.company-page-section .dreamit-section-title h4,
.company-page-section .section-title h4,
.company-page-section :is(h1, h2, h3, h4, h5, h6) span,
html body.dark-theme .about-page-section .RDD-section-title h4,
html body.dark-theme .about-page-section .dreamit-section-title h4,
html body.dark-theme .about-page-section .section-title h4,
html body.dark-theme .about-page-section :is(h1, h2, h3, h4, h5, h6) span,
html body.dark-theme .company-page-section .RDD-section-title h4,
html body.dark-theme .company-page-section .dreamit-section-title h4,
html body.dark-theme .company-page-section .section-title h4,
html body.dark-theme .company-page-section :is(h1, h2, h3, h4, h5, h6) span {
  color: var(--color-primary) !important;
}

html body.dark-theme .about-page-section .about-quote-box,
html body.dark-theme .about-page-section .single-service-box,
html body.dark-theme .about-page-section .process-single-box,
html body.dark-theme .company-page-section .single-skill-box,
html body.dark-theme .company-page-section .single-service-box,
html body.dark-theme .company-page-section .process-single-box,
html body.dark-theme .company-page-section .single-contact-form-box,
html body.dark-theme .company-page-section .contact-form-box,
html body.dark-theme .company-page-section .RDD-single-counter-box,
html body.dark-theme .company-page-section .dex-single-counter-box {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(205, 162, 116, 0.32) !important;
}

html body.dark-theme .contact-form-area,
html body.dark-theme .contact-form-area.style-two,
html body.dark-theme .contact-page-form {
  background: #141414 !important;
  background-color: #141414 !important;
}

html body.dark-theme .contact-form-box,
html body.dark-theme .single-contact-form-box,
html body.dark-theme .style-two .contact-form-box {
  background: #1f1f1f !important;
  background-color: #1f1f1f !important;
  border-color: rgba(205, 162, 116, 0.22) !important;
}

html body.dark-theme .from-box input,
html body.dark-theme .from-box textarea,
html body.dark-theme .form-box select {
  background: #2a2a2a !important;
  background-color: #2a2a2a !important;
  border-color: #3f3f3f !important;
  color: var(--color-text-light) !important;
}

.search-box-btn.search-box-outer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.search-box-btn.search-box-outer > i {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-light) !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

@media (min-width: 992px) {
  .dex_nav_manu .col-lg-10 {
    position: relative;
  }

  .dex_nav_manu .search-box-btn.search-box-outer {
    position: absolute !important;
    top: 50%;
    right: 270px;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    margin: 0 !important;
    float: none !important;
    transform: translateY(-50%);
    z-index: 30;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
  }

  .dex_nav_manu .search-box-btn.search-box-outer > i {
    width: 36px;
    height: 36px;
    font-size: 15px !important;
  }

  .dex_nav_manu .search-box-btn.search-box-outer:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .dex_nav_manu .search-box-btn.search-box-outer {
    right: 230px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .dex_nav_manu .search-box-btn.search-box-outer {
    right: 185px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .dex_nav_manu .search-box-btn.search-box-outer {
    right: 68px;
  }
}

@media (max-width: 991px) {
  .dex_nav_manu .search-box-btn.search-box-outer {
    display: none;
  }
}

.feature-area.pb-60 .RDD-feature-title :is(h1, h2, h3, h4, h5, h6),
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6) {
  color: var(--color-text-light) !important;
}

.feature-area.pb-60
  .RDD-sinlge-feature-box:hover
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6, p, span, a),
.feature-area.pb-60
  .RDD-sinlge-feature-box.active
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6, p, span, a),
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-sinlge-feature-box:hover
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6, p, span, a),
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-sinlge-feature-box.active
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6, p, span, a) {
  color: var(--color-text-light) !important;
}

.feature-area.pb-60
  .RDD-sinlge-feature-box:hover
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  img,
.feature-area.pb-60
  .RDD-sinlge-feature-box.active
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  img,
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-sinlge-feature-box:hover
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  img,
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-sinlge-feature-box.active
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  img {
  filter: brightness(0) invert(1) !important;
}

.feature-area.pb-60
  .RDD-sinlge-feature-box:hover
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  :is(i, span),
.feature-area.pb-60
  .RDD-sinlge-feature-box.active
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  :is(i, span),
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-sinlge-feature-box:hover
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  :is(i, span),
html
  body.dark-theme
  .feature-area.pb-60
  .RDD-sinlge-feature-box.active
  :is(.RDD-feature-icon, .RDD-feature-icon1)
  :is(i, span) {
  color: var(--color-text-light) !important;
}

/* ================================
   BUTTONS & LINKS
   ================================ */

.btn {
  border-radius: var(--radius-pill) !important;
  padding: 14px 35px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  transition:
    transform var(--motion-standard) var(--ease-out-quart),
    box-shadow var(--motion-standard) var(--ease-out-quart),
    background-color var(--motion-standard) var(--ease-out-quart),
    border-color var(--motion-standard) var(--ease-out-quart),
    color var(--motion-standard) var(--ease-out-quart) !important;
  font-family: var(--font-heading);
}

.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: var(--color-text-dark) !important;
  border-color: var(--color-text-dark) !important;
  color: var(--color-primary) !important;
}

.btn-secondary {
  background-color: var(--color-text-dark) !important;
  border-color: var(--color-text-dark) !important;
  color: #fff !important;
}

.btn-secondary:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

/* ================================
   PROFESSIONAL HOVER MOTION
   ================================ */

a,
button,
.theme-toggle-btn,
.header-button a,
.slider-button a,
.slider-button-1 a,
.about-button a,
.feature-button a,
.service-button-1 a,
.project-button a,
.project-button1 a,
.project-button2 a,
.from-box button,
.blog-button a,
.projects-button a,
.btn-icn a i,
.owl-prev i,
.owl-next i {
  transition:
    transform var(--motion-standard) var(--ease-out-quart),
    box-shadow var(--motion-standard) var(--ease-out-quart),
    background-color var(--motion-standard) var(--ease-out-quart),
    border-color var(--motion-standard) var(--ease-out-quart),
    color var(--motion-standard) var(--ease-out-quart),
    opacity var(--motion-standard) var(--ease-out-quart);
}

.btn:hover,
.header-button a:hover,
.slider-button a:hover,
.slider-button-1 a:hover,
.about-button a:hover,
.feature-button a:hover,
.service-button-1 a:hover,
.project-button a:hover,
.project-button1 a:hover,
.project-button2 a:hover,
.from-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

.btn:active,
.header-button a:active,
.slider-button a:active,
.slider-button-1 a:active,
.about-button a:active,
.feature-button a:active,
.service-button-1 a:active,
.project-button a:active,
.project-button1 a:active,
.project-button2 a:active,
.from-box button:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.12);
}

.dex_menu > ul.nav_scroll > li > a {
  position: relative;
  transition:
    color var(--motion-standard) var(--ease-out-quart),
    transform var(--motion-standard) var(--ease-out-quart);
}

.dex_menu > ul.nav_scroll > li > a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.65;
  transition:
    transform var(--motion-standard) var(--ease-out-quint),
    opacity var(--motion-standard) var(--ease-out-quart);
}

.dex_menu > ul.nav_scroll > li > a:hover,
.dex_menu > ul.nav_scroll > li > a:focus-visible {
  transform: translateY(-1px);
}

.dex_menu > ul.nav_scroll > li > a:hover::after,
.dex_menu > ul.nav_scroll > li > a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.single_blog,
.single_portfolio_box,
.project-single-box,
.single-project-box,
.RDD-single-team-box2,
.single-service-box,
.single-service-box-2,
.RDD-sinlge-feature-box,
.faq-contact-box,
.faq-contact-box1,
.why-choose-us-single-box,
.brand-thumb {
  transition:
    transform var(--motion-slow) var(--ease-out-quint),
    box-shadow var(--motion-slow) var(--ease-out-quint),
    border-color var(--motion-standard) var(--ease-out-quart),
    background-color var(--motion-standard) var(--ease-out-quart);
  will-change: transform;
}

.single_blog:hover,
.single_portfolio_box:hover,
.project-single-box:hover,
.single-project-box:hover,
.RDD-single-team-box2:hover,
.single-service-box-2:hover,
.RDD-sinlge-feature-box:hover,
.faq-contact-box:hover,
.faq-contact-box1:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.single_blog_thumb,
.single_portfolio_thumb,
.project-thumb,
.why-choose-us-thumb,
.single-team-thumb {
  overflow: hidden;
}

.single_blog_thumb img,
.single_portfolio_thumb img,
.project-thumb img,
.why-choose-us-thumb img,
.single-team-thumb img {
  transition:
    transform 1600ms var(--ease-out-quint),
    filter 1600ms var(--ease-out-quart);
  transform: translateZ(0) scale(1);
  will-change: transform;
}

.single_blog:hover .single_blog_thumb img,
.single_portfolio_box:hover .single_portfolio_thumb img,
.project-single-box:hover .project-thumb img,
.why-choose-us-single-box:hover .why-choose-us-thumb img,
.RDD-single-team-box2:hover .single-team-thumb img,
.dreamit-single-team-box2:hover .single-team-thumb img {
  transform: translateZ(0) scale(1.1);
}

.project-content,
.single-project-content,
.single_portfolio_content,
.portfolio-number,
.why-choose-us-content,
.thumb-icon span,
.team-content,
.team-share-social,
.port-content-icon,
.service-title,
.service-icon-thumb img,
.service-button a,
.single-service-box::before,
.project-thumb::before,
.single-project-box::before,
.single-project-box::after,
.RDD-sinlge-feature-box::before,
.RDD-sinlge-feature-box::after {
  transition-timing-function: var(--ease-out-quart) !important;
  transition-duration: var(--motion-slow) !important;
}

.blog-button a,
.btn-icn a i,
.projects-button a {
  transform: translateZ(0);
}

.blog-button a:hover,
.btn-icn a i:hover,
.projects-button a:hover {
  transform: translateX(3px);
}

.theme-toggle-btn:hover {
  transform: translateY(-1px) rotate(8deg);
  box-shadow: 0 10px 24px rgba(205, 162, 116, 0.22);
}

/* Keep hover accents beige instead of stark white in both themes. */
.dex_menu ul .sub-menu li:hover > a,
.dex_menu ul .sub-menu .sub-menu li:hover > a,
.dex_menu ul .sub-menu .sub-menu .sub-menu li:hover > a,
.dex_menu ul .sub-menu .sub-menu .sub-menu .sub-menu li:hover > a,
.RDD-sinlge-feature-box:hover .RDD-feature-title h2,
.RDD-sinlge-feature-box:hover .RDD-feature-title p,
.single-service-box-2:hover .service-title h2,
.single-service-box-2:hover .service-title p,
.style-3 .single-service-box2:hover .service-title h2 a,
.style-3 .single-service-box2:hover .service-title p,
.project-single-box:hover .project-title h1 a,
.single-project-box:hover .project-title h2,
.single-project-box:hover .project-text p,
.tm_coverimgbox_wrapper .tm_coverbox_contents:hover .featured-title h3,
.tm_coverimgbox_wrapper .tm_coverbox_contents:hover .featured-desc p,
.team-title h3 a:hover,
.single_blog:hover .blog-button a i,
.single_blog:hover .blog-button a span,
.theme-toggle-btn:hover,
html body.dark-theme .dex_menu ul .sub-menu li:hover > a,
html body.dark-theme .RDD-sinlge-feature-box:hover .RDD-feature-title h2,
html body.dark-theme .RDD-sinlge-feature-box:hover .RDD-feature-title p,
html body.dark-theme .single-service-box-2:hover .service-title h2,
html body.dark-theme .single-service-box-2:hover .service-title p,
html body.dark-theme .style-3 .single-service-box2:hover .service-title h2 a,
html body.dark-theme .style-3 .single-service-box2:hover .service-title p,
html body.dark-theme .project-single-box:hover .project-title h1 a,
html body.dark-theme .single-project-box:hover .project-title h2,
html body.dark-theme .single-project-box:hover .project-text p,
html
  body.dark-theme
  .tm_coverimgbox_wrapper
  .tm_coverbox_contents:hover
  .featured-title
  h3,
html
  body.dark-theme
  .tm_coverimgbox_wrapper
  .tm_coverbox_contents:hover
  .featured-desc
  p,
html body.dark-theme .team-title h3 a:hover,
html body.dark-theme .single_blog:hover .blog-button a i,
html body.dark-theme .single_blog:hover .blog-button a span,
html body.dark-theme .theme-toggle-btn:hover {
  color: var(--color-primary) !important;
}

.dex_menu ul .sub-menu li:hover a span,
.faq-contact-box:hover .faq-icon i,
.faq-contact-box1:hover .faq-icon i,
.choose-us-number span:hover,
.choose-us-number2 span:hover,
.animate-border i:hover,
.scroll-area .go-top:hover::before,
.top-wrap .go-top-button:hover,
html body.dark-theme .dex_menu ul .sub-menu li:hover a span,
html body.dark-theme .faq-contact-box:hover .faq-icon i,
html body.dark-theme .faq-contact-box1:hover .faq-icon i,
html body.dark-theme .choose-us-number span:hover,
html body.dark-theme .choose-us-number2 span:hover,
html body.dark-theme .animate-border i:hover,
html body.dark-theme .scroll-area .go-top:hover::before,
html body.dark-theme .top-wrap .go-top-button:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.single-service-box:hover .service-button a,
.single-service-box:hover .service-title span,
.style-3 .single-service-box2:hover .service-btn a,
.tm_coverimgbox_wrapper .featured-content .ttm-footer a:hover,
.projects-button a:hover,
html body.dark-theme .single-service-box:hover .service-button a,
html body.dark-theme .single-service-box:hover .service-title span,
html body.dark-theme .style-3 .single-service-box2:hover .service-btn a,
html
  body.dark-theme
  .tm_coverimgbox_wrapper
  .featured-content
  .ttm-footer
  a:hover,
html body.dark-theme .projects-button a:hover {
  color: var(--color-primary) !important;
}

.single_blog:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.single_portfolio_box:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.project-single-box:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.single-project-box:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.RDD-single-team-box2:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.single-service-box-2:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.style-3 .single-service-box2:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.RDD-sinlge-feature-box:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.why-choose-us-single-box:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.tm_coverimgbox_wrapper
  .tm_coverbox_contents:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.faq-contact-box:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.faq-contact-box1:hover :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
.slider-bage:hover span,
.slider-socail-icon a:hover,
.slider3 .slider-socail-icon-inner a:hover,
.company_icon a:hover,
ul.menu li a:hover,
.footer-bottom-menu a:hover,
.meta-blog-icon a:hover,
.meta-blog-icon-2 a:hover,
.meta-blog-icon-2 span:hover,
.blog_page_title h4 a:hover,
.scroll-area .go-top:hover,
.top-wrap .go-top-button:hover,
html
  body.dark-theme
  .single_blog:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .single_portfolio_box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .project-single-box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .single-project-box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .RDD-single-team-box2:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .single-service-box-2:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .style-3
  .single-service-box2:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .RDD-sinlge-feature-box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .why-choose-us-single-box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .tm_coverimgbox_wrapper
  .tm_coverbox_contents:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .faq-contact-box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .faq-contact-box1:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html body.dark-theme .slider-bage:hover span,
html body.dark-theme .slider-socail-icon a:hover,
html body.dark-theme .slider3 .slider-socail-icon-inner a:hover,
html body.dark-theme .company_icon a:hover,
html body.dark-theme ul.menu li a:hover,
html body.dark-theme .footer-bottom-menu a:hover,
html body.dark-theme .meta-blog-icon a:hover,
html body.dark-theme .meta-blog-icon-2 a:hover,
html body.dark-theme .meta-blog-icon-2 span:hover,
html body.dark-theme .blog_page_title h4 a:hover,
html body.dark-theme .scroll-area .go-top:hover,
html body.dark-theme .top-wrap .go-top-button:hover {
  color: var(--color-primary) !important;
}

@media (hover: none) {
  .single_blog:hover,
  .single_portfolio_box:hover,
  .project-single-box:hover,
  .single-project-box:hover,
  .RDD-single-team-box2:hover,
  .single-service-box:hover,
  .single-service-box-2:hover,
  .RDD-sinlge-feature-box:hover,
  .faq-contact-box:hover,
  .faq-contact-box1:hover,
  .btn:hover,
  .header-button a:hover,
  .slider-button a:hover,
  .slider-button-1 a:hover,
  .about-button a:hover,
  .feature-button a:hover,
  .service-button-1 a:hover,
  .project-button a:hover,
  .project-button1 a:hover,
  .project-button2 a:hover,
  .from-box button:hover,
  .theme-toggle-btn:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================
   FIXED LISTING HEIGHTS
   ================================ */

.single_blog {
  height: 460px;
  display: flex;
  flex-direction: column;
}

.single_blog_thumb {
  height: 245px;
  flex: 0 0 245px;
  overflow: hidden;
}

.single_blog_thumb a {
  display: block;
  height: 100%;
}

.single_blog_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single_blog_content {
  height: 215px;
  flex: 0 0 215px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.single_blog_content .dex_blog_meta,
.single_blog_content .meta_blog_bottom {
  padding-right: 44px;
}

.single_blog_content .blog-button {
  position: absolute;
  right: 24px;
  bottom: 18px;
  top: auto;
  float: none;
  line-height: 1;
  z-index: 2;
}

.single_blog_content .blog-button a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog-grid-card {
  height: 560px;
}

.blog-grid-card .single_blog_thumb {
  height: 250px;
  flex-basis: 250px;
}

.blog-grid-card .single_blog_content {
  height: 310px;
  flex-basis: 310px;
  padding-bottom: 62px;
}

.blog-grid-card .blog_page_title h4 {
  min-height: 64px;
  max-height: 64px;
}

.blog-grid-card .blog_page_title p {
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-list-card {
  height: auto;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  overflow: hidden;
}

.blog-list-card .single_blog_thumb {
  height: 100%;
  min-height: 360px;
  flex-basis: auto;
}

.blog-list-card .single_blog_content {
  height: auto;
  min-height: 360px;
  flex-basis: auto;
  padding-bottom: 70px;
}

.blog-list-card .blog_page_title h4 {
  min-height: 68px;
  max-height: none;
}

.blog-list-card .blog_page_title p {
  max-height: none;
}

.blog-list-card .single_blog_content .blog-button {
  bottom: 22px;
}

.clickable-card {
  cursor: pointer;
  position: relative;
}

.clickable-card .card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block;
  border: 0;
  color: inherit;
  text-decoration: none;
}

.clickable-card .card-link-overlay:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.clickable-card .project-date-day,
.clickable-card .blog-button span {
  color: inherit;
}

.clickable-card .blog-button span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blog_page_title h4 {
  min-height: 82px;
  max-height: 82px;
  overflow: hidden;
}

.blog_page_title h4 a,
.project-title h1 a,
.project-title h2,
.portfolio-title h3 a,
.team-title h3 a,
.service-title h2 a,
.service-title h3 a,
.RDD-feature-title h2,
.RDD-feature-title h3,
.service-title p,
.RDD-feature-title p,
.project-text p,
.portfolio-title p,
.team-text p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.blog_page_title h4 a,
.project-title h1 a,
.project-title h2,
.portfolio-title h3 a,
.team-title h3 a,
.service-title h2 a,
.service-title h3 a,
.RDD-feature-title h2,
.RDD-feature-title h3 {
  -webkit-line-clamp: 2;
}

.service-title p,
.RDD-feature-title p,
.project-text p,
.portfolio-title p,
.team-text p {
  -webkit-line-clamp: 3;
}

.single_portfolio_box {
  height: 430px;
}

.single_portfolio_thumb,
.single_portfolio_thumb img {
  height: 100%;
}

.single_portfolio_thumb img {
  object-fit: cover;
}

.project-single-box {
  height: 420px;
  overflow: hidden;
}

.why-choose-us-area .choose-list,
.why-choose-us-area .choose-list .owl-stage-outer,
.why-choose-us-area .choose-list .owl-stage,
.why-choose-us-area .choose-list .owl-item,
.why-choose-us-area .choose-list .owl-item > .col-lg-12,
.why-choose-us-area .why-choose-us-single-box,
.why-choose-us-area .why-choose-us-thumb {
  height: 430px !important;
}

.why-choose-us-area .choose-list .owl-stage,
.why-choose-us-area .choose-list .owl-item,
.why-choose-us-area .choose-list .owl-item > .col-lg-12 {
  display: flex !important;
}

.why-choose-us-area .choose-list .owl-item > .col-lg-12,
.why-choose-us-area .choose-list .why-choose-us-single-box {
  width: 100%;
}

.why-choose-us-area .why-choose-us-single-box,
.why-choose-us-area .why-choose-us-thumb {
  overflow: hidden;
}

.why-choose-us-area .why-choose-us-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.why-choose-us-area .why-choose-us-content {
  width: calc(100% - 114px);
  min-height: 116px;
  max-height: 116px;
  overflow: hidden;
}

.why-choose-us-title h4,
.why-choose-us-title h1,
.why-choose-us-title h1 a {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.why-choose-us-title h4 {
  -webkit-line-clamp: 1;
}

.why-choose-us-title h1,
.why-choose-us-title h1 a {
  -webkit-line-clamp: 2;
}

.project-thumb,
.project-thumb a,
.project-thumb img {
  height: 100%;
}

.project-thumb img {
  object-fit: cover;
}

.single-project-box {
  height: 450px;
}

.RDD-single-team-box2 {
  height: 430px;
  overflow: hidden;
}

.single-team-thumb {
  height: 330px;
  overflow: hidden;
}

.single-team-thumb img {
  height: 100%;
  object-fit: cover;
}

.team-content {
  height: 100px;
  overflow: hidden;
}

.RDD-single-team-box2:hover .team-content,
.dreamit-single-team-box2:hover .team-content {
  height: 140px;
}

.single-service-box {
  height: 243px;
}

.service-area.dynamic-services {
  padding-bottom: 76px;
}

.service-area.dynamic-services .service-card-col {
  display: flex;
}

.service-area.dynamic-services .single-service-box {
  width: 100%;
  height: auto;
  min-height: 290px;
}

.service-area.dynamic-services .service-title p {
  line-height: 1.65;
}

@media (max-width: 767px) {
  .service-area.dynamic-services {
    padding-bottom: 56px;
  }

  .service-area.dynamic-services .single-service-box {
    height: auto;
    min-height: 300px;
  }
}

/* ================================
   ROUNDED UI SYSTEM
   ================================ */

:is(
  button,
  .btn,
  [type="button"],
  [type="submit"],
  [type="reset"],
  .header-button a,
  .slider-button a,
  .dreamit-button a,
  .about-button a,
  .portfolio-button a,
  .contact-button a,
  .form-button button,
  .search-popup button,
  .go-top,
  .scroll-area .go-top,
  .theme-toggle-btn,
  .nav-btn,
  .close-search,
  .close-side-widget,
  .listing-pagination a
) {
  border-radius: var(--radius-pill) !important;
  transition:
    transform var(--transition-ui),
    box-shadow var(--transition-ui),
    background-color var(--transition-ui),
    border-color var(--transition-ui),
    color var(--transition-ui);
}

:is(
  button,
  .btn,
  [type="button"],
  [type="submit"],
  [type="reset"],
  .header-button a,
  .slider-button a,
  .dreamit-button a,
  .about-button a,
  .portfolio-button a,
  .contact-button a,
  .form-button button,
  .search-popup button,
  .listing-pagination a
):is(:hover, :focus-visible) {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

:is(
  input,
  textarea,
  select,
  .form-control,
  .form-select,
  .form-control-file,
  input[type="search"],
  .search-popup .form-group input
) {
  border-radius: var(--radius-md) !important;
  transition:
    border-color var(--transition-ui),
    box-shadow var(--transition-ui),
    background-color var(--transition-ui);
}

:is(input, textarea, select, .form-control, .form-select, input[type="search"]):focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(205, 162, 116, 0.16) !important;
}

:is(
  img,
  .nivoSlider,
  .owl-carousel .owl-item img,
  .RDD-about-thumb,
  .RDD-about-thumb-box,
  .single-project-thumb,
  .project-details-thumb,
  .blog-thumb,
  .blog-details-thumb,
  .service-details-thumb,
  .content-thumb-box,
  .team-single-thumb,
  .casebook-hero-media,
  .casebook-gallery-item,
  .client-logo
) {
  border-radius: var(--radius-lg);
}

:is(
  .logo img,
  .header-logo,
  .footer-logo,
  .sidebar-logo,
  .mobile-logo-img img,
  img[src*="Favicon"],
  .brand-thumb img,
  .social-box a,
  .company_icon a,
  .counter-icon img
) {
  border-radius: var(--radius-pill) !important;
}

:is(
  .container,
  .card,
  .single-blog-box,
  .single-project-box,
  .single-team-box,
  .RDD-sinlge-feature-box,
  .feature-box,
  .service-single-box,
  .service-details-box,
  .project-details-box,
  .portfolio_menu ul,
  .categories-content,
  .widget,
  .widget-sidebar-box,
  .listing-results-bar,
  .listing-empty-state,
  .testimonial-single-box,
  .contact-form-box,
  .contact-info-box,
  .search-popup,
  .search-popup .form-group,
  .xs-sidebar-widget,
  .sidebar-info-contents,
  .mobile-menu,
  .mean-container .mean-nav,
  .footer-middle,
  .footer-container
) {
  border-radius: var(--radius-lg);
}

:is(
  .single-blog-box,
  .single-project-box,
  .single-team-box,
  .RDD-sinlge-feature-box,
  .feature-box,
  .service-single-box,
  .testimonial-single-box,
  .contact-form-box,
  .contact-info-box,
  .listing-results-bar,
  .listing-empty-state,
  .xs-sidebar-widget,
  .search-popup
) {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

:is(.table-responsive, table, .table) {
  border-radius: var(--radius-lg);
}

:is(.table-responsive, table) {
  overflow: hidden;
}

:is(.badge, .tag, .chip, .label, .category, .meta-tag, .blog-category, .project-category) {
  border-radius: var(--radius-pill) !important;
}

:is(
  .progress,
  .barfiller,
  .barfiller .fill,
  .barfiller .tip,
  .scroll-bar,
  .owl-dot,
  .nivo-controlNav a
) {
  border-radius: var(--radius-pill) !important;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--color-bg-light), var(--color-primary) 5%);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-primary), #6d5235 18%);
  border: 3px solid color-mix(in srgb, var(--color-bg-light), var(--color-primary) 5%);
  border-radius: var(--radius-pill);
}

html body.dark-theme ::-webkit-scrollbar-track {
  background: #1d1d1d;
}

html body.dark-theme ::-webkit-scrollbar-thumb {
  border-color: #1d1d1d;
}

/* Rounded UI follow-up: explicit high-specificity catches */
:is(.card-link-overlay, .slider-button, .slider-button-1) {
  border-radius: var(--radius-pill) !important;
  overflow: hidden;
}

:is(
  .slider-button a,
  .slider-button-1 a,
  .slider-button a::before,
  .slider-button-1 a::before,
  .slider-button-1 a::after,
  .slider4 .slider-button a,
  .slider4 .slider-button a::before
) {
  border-radius: var(--radius-pill) !important;
}

:is(
  .service-card-col,
  .service-card-clickable,
  .single-service-box,
  .single-service-box::before,
  .single-service-box::after,
  .service-page-light.style-two .service-card-clickable
) {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
}

:is(
  .why-choose-us-content,
  .why-choose-us-single-box,
  .why-choose-us-thumb,
  .why-choose-us-thumb img,
  .why-choose-us-content::before,
  .why-choose-us-content::after,
  .why-choose-us-icon,
  .why-choose-us-icon i,
  .why-choose-us-icon span,
  .choose-us-number span,
  .choose-us-number2 span,
  .faq-icon,
  .faq-icon i,
  .RDD-feature-icon,
  .RDD-feature-icon1,
  .RDD-feature-icon i,
  .RDD-feature-icon span,
  .RDD-feature-icon1 i,
  .RDD-feature-icon1 span,
  .service-icon-thumb,
  .service-icon-thumb img,
  .service-icon-thumb i,
  .thumb-icon,
  .thumb-icon span,
  .port-content-icon,
  .port-content-icon i
) {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
}

:is(
  .why-choose-us-icon i,
  .why-choose-us-icon span,
  .choose-us-number span,
  .choose-us-number2 span,
  .faq-icon i,
  .RDD-feature-icon i,
  .RDD-feature-icon span,
  .RDD-feature-icon1 i,
  .RDD-feature-icon1 span,
  .thumb-icon span,
  .port-content-icon i
) {
  border-radius: var(--radius-pill) !important;
}

:is(
  .logo img,
  .header-logo,
  .footer-logo,
  .sidebar-logo,
  .mobile-logo-img img,
  img.header-logo,
  img.footer-logo,
  img.sidebar-logo,
  img[data-theme-logo],
  img[src*="Favicon"]
) {
  border-radius: var(--radius-xs) !important;
}

.single-service-box .service-title h3,
.single-service-box .service-title h3 a,
html body.dark-theme .single-service-box .service-title h3,
html body.dark-theme .single-service-box .service-title h3 a {
  color: var(--color-text-light) !important;
}

.service-area .RDD-section-title h1,
.service-area .RDD-section-title h1 span,
.service-area .RDD-section-title h4,
html body.dark-theme .service-area .RDD-section-title h1,
html body.dark-theme .service-area .RDD-section-title h1 span,
html body.dark-theme .service-area .RDD-section-title h4 {
  color: var(--color-text-light) !important;
}

.service-area .RDD-section-title h1 span,
.service-area .RDD-section-title h4,
html body.dark-theme .service-area .RDD-section-title h1 span,
html body.dark-theme .service-area .RDD-section-title h4 {
  color: var(--color-primary) !important;
}

.style-two .single-service-box-2 {
  height: 360px;
  overflow: hidden;
}

.single-service-box-inner {
  height: 100%;
}

.service-page-feature .RDD-sinlge-feature-box,
.RDD-sinlge-feature-box {
  min-height: 390px;
  height: 390px;
  overflow: hidden;
}

.service-page-feature .RDD-feature-box-inner,
.service-page-feature .RDD-feature-content {
  height: 100%;
}

.service-page-feature .RDD-feature-icon,
html body.dark-theme .service-page-feature .RDD-feature-icon {
  width: 88px !important;
  height: 88px !important;
  min-width: 88px;
  min-height: 88px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 28px !important;
  padding: 0 !important;
  border-radius: var(--radius-lg) !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.service-page-feature .RDD-feature-icon img,
html body.dark-theme .service-page-feature .RDD-feature-icon img {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  object-fit: contain !important;
  object-position: center;
  display: block;
  flex: 0 0 64px;
}

.service-page-feature .RDD-feature-icon .RDD-themed-icon,
html body.dark-theme .service-page-feature .RDD-feature-icon .RDD-themed-icon {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px;
  min-height: 64px;
  margin: 0 !important;
  line-height: 64px !important;
  text-align: center;
  background: transparent !important;
  color: var(--color-primary) !important;
}

.service-page-feature .RDD-feature-title :is(h1, h2, h3, h4, h5, h6),
html
  body.dark-theme
  .service-page-feature
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6) {
  color: var(--color-text-light) !important;
}

.service-page-feature
  .RDD-sinlge-feature-box:hover
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6, p, span, a),
.service-page-feature
  .RDD-sinlge-feature-box:hover
  .RDD-feature-icon
  :is(i, span),
html
  body.dark-theme
  .service-page-feature
  .RDD-sinlge-feature-box:hover
  .RDD-feature-title
  :is(h1, h2, h3, h4, h5, h6, p, span, a),
html
  body.dark-theme
  .service-page-feature
  .RDD-sinlge-feature-box:hover
  .RDD-feature-icon
  :is(i, span) {
  color: var(--color-text-light) !important;
}

.service-page-feature .RDD-sinlge-feature-box:hover .RDD-feature-icon img,
html
  body.dark-theme
  .service-page-feature
  .RDD-sinlge-feature-box:hover
  .RDD-feature-icon
  img {
  filter: brightness(0) invert(1) !important;
}

.brand-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.brand-thumb img {
  max-width: 170px;
  max-height: 82px;
  object-fit: contain;
  border-radius: 0 !important;
}

.brand-area {
  overflow: hidden;
  text-align: center;
}

.brand-area > .container {
  max-width: min(1500px, calc(100% - 32px));
}

.brand-area .row {
  justify-content: center;
}

.brand-area .brand-list {
  width: 100%;
  overflow: hidden;
}

.brand-area .brand-list .owl-stage-outer {
  overflow: visible;
}

.brand-area .brand-list .owl-stage {
  display: flex;
  align-items: center;
  width: max-content !important;
  animation: brand-infinite-loop 34s linear infinite;
  will-change: transform;
}

.brand-area .brand-list:hover .owl-stage {
  animation-play-state: paused;
}

.brand-area .brand-list .owl-item {
  flex: 0 0 clamp(180px, 15vw, 250px);
}

.brand-area .brand-thumb {
  min-height: 118px;
  padding: 18px 24px;
  background: transparent;
  border-radius: 0 !important;
  box-shadow: none;
}

.brand-area .brand-thumb a {
  border-radius: 0 !important;
}

.brand-area .brand-thumb img {
  filter: grayscale(1) contrast(0.92) opacity(0.72);
  transform: translateZ(0);
  transition:
    filter 700ms var(--ease-out-quart),
    opacity 700ms var(--ease-out-quart),
    transform 700ms var(--ease-out-quart);
}

.brand-area .brand-thumb img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes brand-infinite-loop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

body.services-showcase-page .contact-form-area.style-two {
  margin: 0;
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    linear-gradient(135deg, rgba(205, 162, 116, 0.18), rgba(39, 39, 39, 0) 42%),
    #272727 !important;
}

body.services-showcase-page .contact-form-area.style-two .container {
  max-width: min(1320px, calc(100% - 32px));
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

body.services-showcase-page .contact-form-area.style-two .RDD-section-title h1,
body.services-showcase-page .contact-form-area.style-two .RDD-section-title h1 span {
  color: #f5eee7 !important;
}

body.services-showcase-page .contact-form-area.style-two .RDD-section-title h4 {
  color: var(--color-primary) !important;
}

body.services-showcase-page .contact-form-area.style-two .btn {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}

body.services-showcase-page .contact-form-area.style-two .mt-2,
body.services-showcase-page .contact-form-area.style-two .mt-2 a {
  color: #f5eee7 !important;
}

@media (prefers-reduced-motion: reduce) {
  .brand-area .brand-list .owl-stage {
    animation: none;
  }
}

.content-thumb-box,
.content-thumb-box img {
  height: 170px;
}

.content-thumb-box img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .single_blog {
    height: 430px;
  }

  .single_blog_thumb {
    height: 220px;
    flex-basis: 220px;
  }

  .single_blog_content {
    height: 210px;
    flex-basis: 210px;
    padding: 18px 22px 18px;
  }

  .single_blog_content .blog-button {
    right: 22px;
    bottom: 18px;
  }

  .project-single-box,
  .why-choose-us-single-box,
  .single_portfolio_box,
  .single-project-box {
    height: 360px;
  }

  .why-choose-us-area .choose-list,
  .why-choose-us-area .choose-list .owl-stage-outer,
  .why-choose-us-area .choose-list .owl-stage,
  .why-choose-us-area .choose-list .owl-item,
  .why-choose-us-area .choose-list .owl-item > .col-lg-12,
  .why-choose-us-area .why-choose-us-single-box,
  .why-choose-us-area .why-choose-us-thumb {
    height: 360px !important;
  }

  .why-choose-us-area .why-choose-us-content {
    width: calc(100% - 93px);
    min-height: 104px;
    max-height: 104px;
  }

  .RDD-single-team-box2 {
    height: 400px;
  }

  .single-team-thumb {
    height: 300px;
  }

  .style-two .single-service-box-2,
  .service-page-feature .RDD-sinlge-feature-box,
  .RDD-sinlge-feature-box {
    height: 370px;
    min-height: 370px;
  }

  .blog-grid-card,
  .blog-list-card {
    height: 540px;
    min-height: 540px;
    display: flex;
    grid-template-columns: none;
  }

  .blog-grid-card .single_blog_thumb,
  .blog-list-card .single_blog_thumb {
    height: 230px;
    min-height: 230px;
    flex-basis: 230px;
  }

  .blog-grid-card .single_blog_content,
  .blog-list-card .single_blog_content {
    height: 310px;
    min-height: 310px;
    flex-basis: 310px;
    padding-bottom: 64px;
  }

  .blog-grid-card .blog_page_title p,
  .blog-list-card .blog_page_title p {
    max-height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/* ================================
   FLAT HEADER NAVIGATION
   ================================ */

.dex_menu > ul.nav_scroll > li > a {
  margin-left: 9px;
  margin-right: 9px;
  white-space: nowrap;
}

@media (min-width: 992px) and (max-width: 1399px) {
  .dex_menu ul {
    margin-left: 12px;
  }

  .dex_menu > ul.nav_scroll > li > a {
    font-size: 14px;
    margin-left: 6px;
    margin-right: 6px;
  }
}

/* ================================
   CONTACT PAGE HOMEPAGE SECTION
   ================================ */

.contact-page-form {
  padding: 100px 0 0;
}

.contact-page-form .row.contact-form {
  margin-top: 0;
}

.contact-page-form .contact-form-box {
  width: 100%;
}

/* ================================
   MOBILE THEME TOGGLE
   ================================ */

.mobile-menu-area {
  position: relative;
  min-height: 67px;
}

.mobile-logo-img {
  position: absolute;
  left: 14px;
  top: 7px;
  z-index: 10001;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
}

.mobile-logo-img img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.mean-container .mean-bar::before {
  content: none !important;
  display: none !important;
}

.mobile-theme-toggle {
  top: 13px;
  right: 68px;
  transform: none;
  z-index: 10000;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.12);
}

.mobile-menu-area .mean-container .mean-bar {
  min-height: 60px;
}

@media (max-width: 480px) {
  .mobile-theme-toggle {
    right: 62px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

/* ================================
   RESPONSIVE HARDENING
   ================================ */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

.wrapper,
.container-fluid,
.tm_coverimgbox_wrapper {
  max-width: 100%;
}

.wrapper {
  width: 100%;
}

@media (max-width: 991px) {
  .dex_nav_manu {
    display: none !important;
  }

  .mobile-menu-area {
    display: block !important;
  }

  .shape-title h2,
  .shape-title-2 h1,
  .shape-title-3 h1,
  .shape-title-4 h1,
  .portfolio-title h1,
  .service-area.style-3 .shape-title-3 h1,
  .project-section .shape-title-4 h1 {
    display: none !important;
  }

  .container,
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider-area,
  .slider2.slider-area,
  .slider3.slider-area,
  .slider4.slider-area {
    min-height: 560px;
    height: auto;
  }

  .row.slider-padding {
    padding-left: 0;
  }

  .slider-content,
  .slider-content-1,
  .slider4 .slider-content-inner {
    max-width: 100%;
    text-align: center;
  }

  .slider-content h1,
  .slider-content-1 h1,
  .slider4 .slider-content h1,
  .slider4 .slider-content-inner h1 {
    font-size: clamp(36px, 10vw, 58px);
    line-height: 1.05;
  }

  .slider-content p,
  .slider3 .slider-content p,
  .slider4 .slider-content-inner p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-page-form,
  .contact-form-area {
    padding-left: 0;
    padding-right: 0;
  }

  .row.contact-form {
    margin-top: 0;
  }

  .contact-form-area .pl-0 {
    padding-left: 15px !important;
  }

  .single-contact-form-box,
  .contact-form-box {
    padding: 30px 22px 36px;
  }

  .tm_coverimgbox_wrapper {
    height: auto;
    min-height: 0;
    display: block;
  }

  .tm_coverimgbox_wrapper.four_cols .tm_coverbox_contents,
  .tm_coverimgbox_wrapper .tm_coverbox_contents {
    max-width: 100%;
    width: 100%;
    height: 320px;
    padding: 0 24px 36px;
  }

  .featured-content {
    margin-top: 190px;
  }

  .counter-area,
  .counter-area.style-two,
  .counter-area.style-two.upper {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .pt-100 {
    padding-top: 70px;
  }

  .pb-100 {
    padding-bottom: 70px;
  }

  .pb-70 {
    padding-bottom: 45px;
  }

  .RDD-section-title h1,
  .RDD-section-title h2,
  .dreamit-section-title h1,
  .section-title h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.1;
  }

  .breatcumb-title h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.1;
  }

  .service-button-1.text-right,
  .service-button-1 {
    text-align: left !important;
  }

  .service-button-1 a,
  .project-button2 a,
  .slider-button-1 a {
    margin-left: 0;
  }

  .from-box button,
  .btn,
  .feature-button a,
  .project-button a,
  .project-button1 a,
  .service-button-1 a {
    min-height: 44px;
  }

  .from-box input,
  .form-box select,
  .from-box textarea {
    font-size: 16px;
  }

  .footer-bottom,
  .footer-bottom-content-copy,
  .footer-bottom-menu {
    text-align: center;
  }

  .footer-bottom-menu {
    margin-top: 12px;
  }
}

@media (max-width: 599px) {
  .mean-container .mean-nav ul li a {
    min-height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .single-contact-form-box,
  .contact-form-box {
    padding: 26px 18px 32px;
  }

  .faq-icon {
    float: none;
    margin: 0 0 14px;
  }

  .faq-title {
    overflow: visible;
  }

  .faq-title h3 {
    font-size: 20px;
  }

  .faq-title p {
    font-size: 15px;
    line-height: 1.6;
  }

  .single_blog {
    height: 450px;
  }

  .single_blog_content {
    height: 230px;
    flex-basis: 230px;
  }
}

/* ================================
   FINAL HOVER COLOR OVERRIDES
   ================================ */

.single_portfolio_box:hover .single_portfolio_content,
.why-choose-us-single-box:hover .why-choose-us-content,
.RDD-single-team-box2:hover .team-content,
.dreamit-single-team-box2:hover .team-content,
.style-3 .single_blog_thumb:hover::before,
.dex_menu ul .sub-menu li:hover a span,
.faq-contact-box:hover .faq-icon i,
.faq-contact-box1:hover .faq-icon i,
.choose-us-number span:hover,
.choose-us-number2 span:hover,
.animate-border i:hover,
.top-wrap .go-top-button:hover,
.contact-thanks-close-btn:hover,
html body.dark-theme .single_portfolio_box:hover .single_portfolio_content,
html body.dark-theme .why-choose-us-single-box:hover .why-choose-us-content,
html body.dark-theme .RDD-single-team-box2:hover .team-content,
html body.dark-theme .dreamit-single-team-box2:hover .team-content,
html body.dark-theme .style-3 .single_blog_thumb:hover::before,
html body.dark-theme .dex_menu ul .sub-menu li:hover a span,
html body.dark-theme .faq-contact-box:hover .faq-icon i,
html body.dark-theme .faq-contact-box1:hover .faq-icon i,
html body.dark-theme .choose-us-number span:hover,
html body.dark-theme .choose-us-number2 span:hover,
html body.dark-theme .animate-border i:hover,
html body.dark-theme .top-wrap .go-top-button:hover,
html body.dark-theme .contact-thanks-close-btn:hover {
  background: var(--color-primary) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.RDD-single-team-box2:hover .single-team-thumb::before,
.dreamit-single-team-box2:hover .single-team-thumb::before,
html body.dark-theme .RDD-single-team-box2:hover .single-team-thumb::before,
html
  body.dark-theme
  .dreamit-single-team-box2:hover
  .single-team-thumb::before {
  background: rgba(205, 162, 116, 0.7) !important;
  background-color: rgba(205, 162, 116, 0.7) !important;
}

.header-button a:hover::before,
.header-button1 a:hover::before,
.sticky .header-button1 a:hover::before,
.slider-button a:hover::before,
.slider-button-1 a:hover::before,
.slider-button-1 a:hover::after,
.slider4 .slider-button a:hover::before,
.about-button a:hover::before,
.service-button-1 a:hover::before,
.project-button a:hover::before,
.project-button1 a:hover::before,
.project-button2 a:hover::before,
.call-do-button a:hover::before,
.company_icon a:hover::before,
.from-box button:hover::before,
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover,
.scroll-area .go-top:hover::before,
html body.dark-theme .header-button a:hover::before,
html body.dark-theme .header-button1 a:hover::before,
html body.dark-theme .sticky .header-button1 a:hover::before,
html body.dark-theme .slider-button a:hover::before,
html body.dark-theme .slider-button-1 a:hover::before,
html body.dark-theme .slider-button-1 a:hover::after,
html body.dark-theme .slider4 .slider-button a:hover::before,
html body.dark-theme .about-button a:hover::before,
html body.dark-theme .service-button-1 a:hover::before,
html body.dark-theme .project-button a:hover::before,
html body.dark-theme .project-button1 a:hover::before,
html body.dark-theme .project-button2 a:hover::before,
html body.dark-theme .call-do-button a:hover::before,
html body.dark-theme .company_icon a:hover::before,
html body.dark-theme .from-box button:hover::before,
html body.dark-theme .search-popup .form-group input[type="submit"]:hover,
html body.dark-theme .search-popup .form-group button:hover,
html body.dark-theme .scroll-area .go-top:hover::before {
  background: var(--color-primary) !important;
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.single_portfolio_box:hover .portfolio-title h3 a,
.single_portfolio_box:hover .portfolio-title p,
.why-choose-us-single-box:hover .why-choose-us-title h1,
.why-choose-us-single-box:hover .why-choose-us-title h1 a,
.why-choose-us-single-box:hover .why-choose-us-title h4,
.RDD-single-team-box2:hover .team-title h3,
.dreamit-single-team-box2:hover .team-title h3,
.RDD-single-team-box2:hover .team-title h3 a,
.dreamit-single-team-box2:hover .team-title h3 a,
.RDD-single-team-box2:hover .team-text p,
.dreamit-single-team-box2:hover .team-text p,
.RDD-single-team-box2:hover .team-socail-icon a,
.dreamit-single-team-box2:hover .team-socail-icon a,
.RDD-single-team-box2:hover .team-socail-icon a i,
.dreamit-single-team-box2:hover .team-socail-icon a i,
.team-socail-icon a:hover,
.team-socail-icon a:hover i,
.faq-contact-box:hover .faq-icon i,
.faq-contact-box1:hover .faq-icon i,
html body.dark-theme .single_portfolio_box:hover .portfolio-title h3 a,
html body.dark-theme .single_portfolio_box:hover .portfolio-title p,
html body.dark-theme .why-choose-us-single-box:hover .why-choose-us-title h1,
html body.dark-theme .why-choose-us-single-box:hover .why-choose-us-title h1 a,
html body.dark-theme .why-choose-us-single-box:hover .why-choose-us-title h4,
html body.dark-theme .RDD-single-team-box2:hover .team-title h3,
html body.dark-theme .dreamit-single-team-box2:hover .team-title h3,
html body.dark-theme .RDD-single-team-box2:hover .team-title h3 a,
html body.dark-theme .dreamit-single-team-box2:hover .team-title h3 a,
html body.dark-theme .RDD-single-team-box2:hover .team-text p,
html body.dark-theme .dreamit-single-team-box2:hover .team-text p,
html body.dark-theme .RDD-single-team-box2:hover .team-socail-icon a,
html body.dark-theme .dreamit-single-team-box2:hover .team-socail-icon a,
html body.dark-theme .RDD-single-team-box2:hover .team-socail-icon a i,
html body.dark-theme .dreamit-single-team-box2:hover .team-socail-icon a i,
html body.dark-theme .team-socail-icon a:hover,
html body.dark-theme .team-socail-icon a:hover i,
html body.dark-theme .faq-contact-box:hover .faq-icon i,
html body.dark-theme .faq-contact-box1:hover .faq-icon i {
  color: var(--color-text-light) !important;
}

.RDD-single-team-box2:hover .port-content-icon i,
.dreamit-single-team-box2:hover .port-content-icon i,
.port-content-icon a:hover i,
html body.dark-theme .RDD-single-team-box2:hover .port-content-icon i,
html body.dark-theme .dreamit-single-team-box2:hover .port-content-icon i,
html body.dark-theme .port-content-icon a:hover i {
  color: #fff !important;
}

.clickable-card:hover .single_blog_content,
html body.dark-theme .clickable-card:hover .single_blog_content {
  background: var(--color-primary) !important;
  background-color: var(--color-primary) !important;
}

.clickable-card:hover
  .single_blog_content
  :is(h1, h2, h3, h4, h5, h6, p, span, i),
html
  body.dark-theme
  .clickable-card:hover
  .single_blog_content
  :is(h1, h2, h3, h4, h5, h6, p, span, i) {
  color: var(--color-text-light) !important;
}

html
  body.dark-theme
  .single_blog
  .single_blog_content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .clickable-card
  .single_blog_content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .single_portfolio_box
  .single_portfolio_content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .why-choose-us-single-box
  .why-choose-us-content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .RDD-single-team-box2
  .team-content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .dreamit-single-team-box2
  .team-content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .faq-contact-box
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .faq-contact-box1
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i) {
  color: var(--color-text-light) !important;
}

html
  body.dark-theme
  .single_blog:hover
  .single_blog_content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .single_portfolio_box:hover
  .single_portfolio_content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .why-choose-us-single-box:hover
  .why-choose-us-content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .RDD-single-team-box2:hover
  .team-content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .dreamit-single-team-box2:hover
  .team-content
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .faq-contact-box:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i),
html
  body.dark-theme
  .faq-contact-box1:hover
  :is(h1, h2, h3, h4, h5, h6, p, a, span, i) {
  color: var(--color-text-light) !important;
}

.dex_nav_manu .search-box-btn.search-box-outer,
html body.dark-theme .dex_nav_manu .search-box-btn.search-box-outer {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 999px !important;
  background: transparent !important;
  line-height: 1 !important;
  overflow: hidden !important;
}

.dex_nav_manu .search-box-btn.search-box-outer > i,
html body.dark-theme .dex_nav_manu .search-box-btn.search-box-outer > i {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  color: var(--color-text-light) !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.dex_nav_manu .search-box-btn.search-box-outer:hover,
html body.dark-theme .dex_nav_manu .search-box-btn.search-box-outer:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.header-icons-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.header-icons-wrapper .header-search-btn,
html body.dark-theme .header-icons-wrapper .header-search-btn {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 50% !important;
  color: var(--color-text-light) !important;
  cursor: pointer;
  line-height: 1 !important;
  overflow: hidden !important;
  appearance: none;
  -webkit-appearance: none;
}

.header-icons-wrapper .header-search-btn i,
html body.dark-theme .header-icons-wrapper .header-search-btn i {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: currentColor !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.header-icons-wrapper .header-search-btn:hover,
html body.dark-theme .header-icons-wrapper .header-search-btn:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-text-light) !important;
  transform: none !important;
}

/* ================================
   RGBA TRANSPARENT FEATURE BOX HOVER
   ================================ */

.RDD-sinlge-feature-box:hover::after,
.active.RDD-sinlge-feature-box::after,
html body.dark-theme .RDD-sinlge-feature-box:hover::after,
html body.dark-theme .active.RDD-sinlge-feature-box::after {
  background: rgba(205, 162, 116, 0.65) !important;
}

/* Projects and blog listings: warm, readable dark-theme hierarchy */
html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .blog_page_title
  h4
  a {
  color: #f4eadf !important;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .blog_page_title
  h4
  a:hover,
html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .popular-post-content
  a:hover {
  color: #e2b982 !important;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .blog_page_title
  p,
html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .meta_blog_bottom
  :is(a, span),
html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .popular-post-content
  span {
  color: #cbbfb3 !important;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  :is(.post-categories a, .post-categories span, .dex_blog_meta span, .meta-blog-icon span) {
  color: #d6aa78 !important;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  :is(.post-categories i, .dex_blog_meta i, .meta_blog_bottom i) {
  color: #cda274 !important;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .widget-sidebar-title
  h2 {
  color: #f4eadf !important;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  :is(.popular-post-content a, .categories-content a, .Tags-Cloud-title a) {
  color: #ddd1c4 !important;
}

.listing-social-widget .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.listing-social-widget .social-links a,
html body.dark-theme .listing-social-widget .social-links a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  margin: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-primary) !important;
  background: #3c3c3c;
  border: 1px solid rgba(205, 162, 116, 0.25);
  border-radius: var(--radius-pill);
  line-height: 1;
  transition:
    transform var(--motion-standard) var(--ease-out-quart),
    background-color var(--motion-standard) var(--ease-out-quart),
    border-color var(--motion-standard) var(--ease-out-quart),
    color var(--motion-standard) var(--ease-out-quart);
}

.listing-social-widget .social-links a::before {
  display: none;
}

.listing-social-widget .social-links a:hover,
.listing-social-widget .social-links a:focus-visible,
html body.dark-theme .listing-social-widget .social-links a:hover,
html body.dark-theme .listing-social-widget .social-links a:focus-visible {
  color: #fff !important;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.listing-social-widget .social-links a:hover i,
.listing-social-widget .social-links a:focus-visible i,
html body.dark-theme .listing-social-widget .social-links a:hover i,
html body.dark-theme .listing-social-widget .social-links a:focus-visible i {
  color: #fff !important;
}

.listing-results-bar {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 12px 16px;
  color: #695f55;
  background: #f7f3ee;
  border: 1px solid #eadfd3;
  border-radius: var(--radius-lg);
}

.listing-results-bar strong {
  color: #272727;
}

.listing-results-bar a {
  color: #9a7047;
  font-weight: 600;
  white-space: nowrap;
}

.listing-results-bar a:hover {
  color: var(--color-primary);
}

.listing-empty-state {
  display: grid;
  min-height: 280px;
  place-items: center;
  align-content: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 36px;
  text-align: center;
  background: #f7f3ee;
  border: 1px solid #eadfd3;
  border-radius: var(--radius-lg);
}

.listing-empty-state > i {
  color: var(--color-primary);
  font-size: 34px;
}

.listing-empty-state h3 {
  margin: 0;
  color: #272727;
  font-size: 25px;
}

.listing-empty-state p {
  margin: 0;
  color: #695f55;
}

.listing-empty-state a {
  margin-top: 6px;
  color: #9a7047;
  font-weight: 600;
}

.listing-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 42px;
}

.listing-pagination a {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #4c433b;
  background: #f7f3ee;
  border: 1px solid #dfd0c1;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.listing-pagination a:hover,
.listing-pagination a:focus-visible,
.listing-pagination a.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.listing-pagination a.disabled {
  pointer-events: none;
  opacity: 0.42;
  transform: none;
}

.listing-pagination > span {
  margin-left: 8px;
  color: #695f55;
  font-size: 14px;
  font-weight: 600;
}

.projects-list-page .categories-content li.active > a {
  color: var(--color-primary);
  font-weight: 700;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  :is(.listing-results-bar, .listing-empty-state) {
  color: #cbbfb3;
  background: #1a1a1a;
  border-color: #40362d;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  :is(.listing-results-bar strong, .listing-empty-state h3) {
  color: #f4eadf;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  :is(.listing-results-bar a, .listing-empty-state a) {
  color: #d6aa78;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .listing-pagination
  a {
  color: #ddd1c4;
  background: #1a1a1a;
  border-color: #514235;
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .listing-pagination
  :is(a:hover, a:focus-visible, a.active) {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

html body.dark-theme
  :is(.projects-list-page, .blog-index-page)
  .listing-pagination
  > span {
  color: #cbbfb3;
}

html body.dark-theme.project-details-page :is(h1, h2, h3, h4, h5, h6),
html body.dark-theme.project-details-page :is(h1, h2, h3, h4, h5, h6) a {
  color: var(--color-primary) !important;
}

@media (max-width: 767px) {
  .listing-results-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .listing-pagination {
    gap: 6px;
  }

  .listing-pagination a {
    width: 42px;
    height: 42px;
  }

  .listing-pagination > span {
    flex-basis: 100%;
    margin: 6px 0 0;
    text-align: center;
  }
}

/* Final rounded component catches */
:is(
  .RDD-testimonial-single-box,
  .testimonial-single-thumb,
  .testimonial-single-thumb img,
  .testimonial-list .owl-stage-outer,
  .testimonial-list .owl-item,
  .testimonial-icon,
  .testimonial-icon i,
  .single-contact-form-box,
  .single-contact-form-content,
  .single-contact-form-thumb,
  .single-contact-form-thumb img,
  .single-contact-form-thumb1,
  .single-contact-form-thumb1 img,
  .contact-form-box,
  .contact-form-area .contact-form,
  .contact-page-form .row.contact-form,
  .inner.contact-form-box,
  .style-three.contact-form-box,
  [data-aos].aos-init,
  [data-aos].aos-animate
) {
  border-radius: var(--radius-lg) !important;
}

:is(
  .RDD-testimonial-single-box,
  .testimonial-single-thumb,
  .testimonial-list .owl-stage-outer,
  .single-contact-form-box,
  .single-contact-form-content,
  .single-contact-form-thumb,
  .single-contact-form-thumb1,
  .contact-form-box,
  .contact-form-area .contact-form,
  .contact-page-form .row.contact-form,
  .inner.contact-form-box,
  .style-three.contact-form-box
) {
  overflow: hidden !important;
}

:is(
  .testimonial-icon,
  .testimonial-icon i,
  .testimonial-socail-icon,
  .testimonial-socail-icon a,
  .contact-form-title i,
  .single-contact-form-box i
) {
  border-radius: var(--radius-pill) !important;
}

/* Final rounded button catches */
:is(
  [class*="button"],
  [class*="button"] a,
  [class*="button"] button,
  [class*="button"] input,
  .feature-button,
  .feature-button a,
  .about-button,
  .about-button a,
  .service-button,
  .service-button a,
  .service-button-1,
  .service-button-1 a,
  .project-button,
  .project-button a,
  .project-button1,
  .project-button1 a,
  .project-button2,
  .project-button2 a,
  .blog-button,
  .blog-button a,
  .projects-button,
  .projects-button a,
  .call-do-button,
  .call-do-button a,
  .from-box button,
  .form-button button,
  .contact-thanks-close-btn
) {
  border-radius: var(--radius-pill) !important;
  overflow: hidden;
}

:is(
  [class*="button"] a::before,
  [class*="button"] a::after,
  [class*="button"] button::before,
  [class*="button"] button::after,
  .feature-button a::before,
  .feature-button a::after,
  .about-button a::before,
  .about-button a::after,
  .service-button a::before,
  .service-button a::after,
  .service-button-1 a::before,
  .service-button-1 a::after,
  .project-button a::before,
  .project-button a::after,
  .project-button1 a::before,
  .project-button1 a::after,
  .project-button2 a::before,
  .project-button2 a::after,
  .blog-button a::before,
  .blog-button a::after,
  .projects-button a::before,
  .projects-button a::after,
  .call-do-button a::before,
  .call-do-button a::after,
  .from-box button::before,
  .from-box button::after,
  .form-button button::before,
  .form-button button::after
) {
  border-radius: inherit !important;
}

/* ================================
   NOTCH HEADER + PORTFOLIO PAGE
   ================================ */

:root {
  --portfolio-radius: 32px;
  --portfolio-card-min-height: 620px;
}

body.projects-portfolio-page {
  --portfolio-page-bg: #f5f2ee;
  --portfolio-panel-bg: #ffffff;
  --portfolio-panel-hover-bg: #fbf8f4;
  --portfolio-surface-bg: rgba(255, 255, 255, 0.86);
  --portfolio-surface-strong-bg: #ffffff;
  --portfolio-border: rgba(39, 39, 39, 0.12);
  --portfolio-border-hover: rgba(205, 162, 116, 0.46);
  --portfolio-text: #272727;
  --portfolio-muted: #6c6258;
  --portfolio-muted-soft: rgba(39, 39, 39, 0.52);
  --portfolio-active-bg: #272727;
  --portfolio-active-text: #ffffff;
  --portfolio-button-bg: #272727;
  --portfolio-button-text: #ffffff;
  --portfolio-shadow: 0 22px 56px rgba(45, 36, 27, 0.14);
  background: var(--portfolio-page-bg);
}

html body.dark-theme.projects-portfolio-page {
  --portfolio-page-bg: #101010;
  --portfolio-panel-bg: #161616;
  --portfolio-panel-hover-bg: #191919;
  --portfolio-surface-bg: rgba(255, 255, 255, 0.055);
  --portfolio-surface-strong-bg: rgba(255, 255, 255, 0.065);
  --portfolio-border: rgba(255, 255, 255, 0.12);
  --portfolio-border-hover: rgba(205, 162, 116, 0.34);
  --portfolio-text: #ffffff;
  --portfolio-muted: rgba(255, 255, 255, 0.72);
  --portfolio-muted-soft: rgba(255, 255, 255, 0.56);
  --portfolio-active-bg: #ffffff;
  --portfolio-active-text: #101010;
  --portfolio-button-bg: #ffffff;
  --portfolio-button-text: #101010;
  --portfolio-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
}

.breatcumb-area,
.style-two.breatcumb-area,
body.projects-portfolio-page .breatcumb-area {
  display: flex;
  min-height: 520px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 155px 0 92px;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.9), rgba(12, 12, 12, 0.58)),
    url("../images/slider/hero1.jpg") center / cover no-repeat !important;
  border-radius: 0 0 var(--portfolio-radius) var(--portfolio-radius);
  overflow: hidden;
}

.breatcumb-area .container,
.style-two.breatcumb-area .container {
  width: 100%;
}

.breatcumb-area .row,
.style-two.breatcumb-area .row {
  justify-content: center;
}

.breatcumb-content,
.style-two .breatcumb-content,
body.projects-portfolio-page .breatcumb-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center !important;
}

.breatcumb-title h2,
.style-two .breatcumb-title h2,
body.projects-portfolio-page .breatcumb-title h2 {
  color: #fff !important;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.breatcumb-content-text ul,
.style-two .breatcumb-content-text ul,
body.projects-portfolio-page .breatcumb-content-text ul {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.breatcumb-content-text li,
.style-two .breatcumb-content-text li {
  margin-top: 0;
}

.breatcumb-content-text li,
.breatcumb-content-text a,
.breatcumb-content-text span,
.style-two .breatcumb-content-text li,
.style-two .breatcumb-content-text a,
.style-two .breatcumb-content-text span,
body.projects-portfolio-page .breatcumb-content-text li,
body.projects-portfolio-page .breatcumb-content-text a,
body.projects-portfolio-page .breatcumb-content-text span {
  color: rgba(255, 255, 255, 0.82) !important;
}

.breatcumb-content-text ul li span::before,
.style-two .breatcumb-content-text ul li span::before {
  display: none !important;
}

.breatcumb-content-text ul li i,
.style-two .breatcumb-content-text ul li i {
  margin: 0 6px 0 0;
}

body.projects-portfolio-page .projects-list-page {
  padding: 58px 0 82px;
  background: var(--portfolio-page-bg);
}

body.projects-portfolio-page .projects-list-page > .container {
  max-width: min(1780px, calc(100% - 28px));
}

body.projects-portfolio-page .projects-list-page .row {
  row-gap: 22px;
}

body.projects-portfolio-page .portfolio-filter-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding: 0;
  color: var(--portfolio-muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.projects-portfolio-page .listing-results-bar strong {
  color: var(--portfolio-text);
}

body.projects-portfolio-page .listing-results-bar a {
  color: #e3b47f;
}

body.projects-portfolio-page .portfolio-filter-strip {
  align-items: flex-end;
}

.portfolio-location-search {
  display: grid;
  flex: 0 1 430px;
}

.portfolio-search-control {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 12px;
  background: var(--portfolio-surface-bg);
  border: 1px solid var(--portfolio-border);
  border-radius: var(--radius-pill);
}

.portfolio-search-control i {
  color: var(--portfolio-muted-soft);
  font-size: 12px;
}

.portfolio-search-control input {
  min-width: 0;
  flex: 1;
  height: 28px;
  padding: 0;
  color: var(--portfolio-text);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.portfolio-search-control input::placeholder {
  color: var(--portfolio-muted-soft);
}

.portfolio-search-control button {
  min-height: 30px;
  padding: 0 13px;
  color: var(--portfolio-button-text);
  background: var(--portfolio-button-bg);
  border: 0;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.projects-portfolio-page .portfolio-filter-links {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  padding: 5px;
  background: var(--portfolio-surface-bg);
  border: 1px solid var(--portfolio-border);
  border-radius: var(--radius-pill);
}

body.projects-portfolio-page .portfolio-filter-links a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  color: var(--portfolio-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.projects-portfolio-page .portfolio-filter-links a:hover,
body.projects-portfolio-page .portfolio-filter-links a:focus-visible,
body.projects-portfolio-page .portfolio-filter-links a.active {
  color: var(--portfolio-active-text);
  background: var(--portfolio-active-bg);
  border-color: var(--portfolio-active-bg);
  transform: translateY(-2px);
}

body.projects-portfolio-page .projects-portfolio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
  height: auto;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0 !important;
  box-shadow: none;
}

body.projects-portfolio-page .projects-portfolio-card:hover {
  box-shadow: none;
}

body.projects-portfolio-page .projects-portfolio-card .single_blog_thumb {
  position: relative;
  min-height: 0;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 16 / 9.2;
  background: var(--portfolio-panel-bg);
  border: 1px solid var(--portfolio-border);
  border-radius: 26px !important;
  overflow: hidden;
  transition:
    border-color var(--motion-standard) var(--ease-out-quart),
    box-shadow var(--motion-standard) var(--ease-out-quart);
}

body.projects-portfolio-page .projects-portfolio-card:hover .single_blog_thumb {
  border-color: var(--portfolio-border-hover);
  box-shadow: var(--portfolio-shadow);
}

body.projects-portfolio-page .projects-portfolio-card .single_blog_thumb a,
body.projects-portfolio-page .projects-portfolio-card .single_blog_thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

body.projects-portfolio-page .projects-portfolio-card .single_blog_thumb img {
  object-fit: cover;
  border-radius: 26px !important;
  transform: translateZ(0) scale(1);
  transform-origin: center center;
  transition:
    transform 1800ms var(--ease-out-quint),
    filter 1800ms var(--ease-out-quart);
  animation: none;
}

body.projects-portfolio-page
  .projects-portfolio-card:is(:hover, :focus-within)
  .single_blog_thumb
  img,
body.projects-portfolio-page
  .projects-portfolio-card
  .single_blog_thumb:is(:hover, :focus-within)
  img,
body.projects-portfolio-page
  .projects-portfolio-card
  .single_blog_thumb
  a:is(:hover, :focus-visible)
  img {
  animation: portfolio-continuous-zoom 28s linear forwards;
}

@keyframes portfolio-continuous-zoom {
  from {
    transform: translateZ(0) scale(1);
  }

  to {
    transform: translateZ(0) scale(1.26);
  }
}

body.projects-portfolio-page .projects-portfolio-card .single_blog_content {
  position: relative;
  z-index: 1;
  display: block;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
  padding: 12px 58px;
  color: var(--portfolio-text);
  background: var(--portfolio-panel-bg);
  border: 1px solid var(--portfolio-border);
  border-radius: 22px !important;
  transition:
    border-color var(--motion-standard) var(--ease-out-quart),
    background-color var(--motion-standard) var(--ease-out-quart);
}

body.projects-portfolio-page .projects-portfolio-card:hover .single_blog_content {
  background: var(--portfolio-panel-hover-bg);
  border-color: var(--portfolio-border-hover);
}

body.projects-portfolio-page .portfolio-card-kicker,
body.projects-portfolio-page .projects-portfolio-card :is(.dex_blog_meta, .meta_blog_bottom) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 8px;
}

body.projects-portfolio-page .portfolio-card-kicker span {
  color: var(--portfolio-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.projects-portfolio-page .portfolio-card-kicker span:first-child {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  color: var(--portfolio-button-text);
  background: var(--portfolio-button-bg);
  border-radius: var(--radius-pill);
}

body.projects-portfolio-page .projects-portfolio-card .blog_page_title h4 {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  border: 0 !important;
  line-height: 1.25 !important;
}

body.projects-portfolio-page .projects-portfolio-card .blog_page_title h4::before,
body.projects-portfolio-page .projects-portfolio-card .blog_page_title h4::after {
  display: none !important;
}

body.projects-portfolio-page .projects-portfolio-card .portfolio-title-meta {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  min-height: 28px;
  padding-right: 2px;
  text-align: center;
}

body.projects-portfolio-page .projects-portfolio-card .portfolio-title-meta .blog_page_title {
  min-width: 0;
  flex: 0 1 auto;
  line-height: 1.25;
}

body.projects-portfolio-page .projects-portfolio-card .blog_page_title h4 a {
  display: block;
  color: var(--portfolio-text) !important;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html body.dark-theme.projects-portfolio-page
  .projects-portfolio-card
  .blog_page_title
  h4
  a {
  color: var(--portfolio-text) !important;
}

body.projects-portfolio-page .projects-portfolio-card .dex_blog_meta span,
body.projects-portfolio-page .projects-portfolio-card .meta_blog_bottom span,
body.projects-portfolio-page .projects-portfolio-card .dex_blog_meta i,
body.projects-portfolio-page .projects-portfolio-card .meta_blog_bottom i {
  color: var(--portfolio-muted) !important;
}

body.projects-portfolio-page .projects-portfolio-card .portfolio-title-meta .meta_blog_bottom {
  display: inline-flex !important;
  flex: 0 1 auto;
  min-width: 0;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  color: var(--portfolio-muted);
  font-family: "Roboto Mono", monospace;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html body.dark-theme.projects-portfolio-page
  .projects-portfolio-card
  .portfolio-title-meta
  .meta_blog_bottom {
  color: var(--portfolio-muted) !important;
}

body.projects-portfolio-page .projects-portfolio-card .portfolio-title-meta .meta_blog_bottom::before {
  content: "-";
  margin-right: 8px;
  color: var(--portfolio-muted-soft);
}

body.projects-portfolio-page .projects-portfolio-card .blog-button {
  position: absolute;
  right: 14px;
  bottom: 12px;
  margin: 0;
}

body.projects-portfolio-page .projects-portfolio-card .blog-button a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--portfolio-button-text) !important;
  background: var(--portfolio-button-bg);
  border-radius: var(--radius-pill) !important;
}

body.projects-portfolio-page .projects-portfolio-card .blog-button a i {
  color: inherit !important;
}

body.projects-portfolio-page .listing-empty-state {
  color: var(--portfolio-muted);
  background: var(--portfolio-surface-bg);
  border-color: var(--portfolio-border);
}

body.projects-portfolio-page .listing-empty-state h3 {
  color: var(--portfolio-text);
}

body.projects-portfolio-page .listing-pagination {
  display: none;
}

.portfolio-project-grid {
  row-gap: 24px;
}

.projects-scroll-loader,
.projects-noscript-more {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 30px 0 0;
  color: var(--portfolio-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-loading-dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--portfolio-border);
  border-top-color: var(--portfolio-text);
  border-radius: 50%;
  animation: portfolio-loader-spin 780ms linear infinite;
}

.projects-scroll-loader.is-complete .portfolio-loading-dot {
  display: none;
}

.projects-scroll-loader.is-complete {
  min-height: 70px;
  color: var(--portfolio-muted-soft);
}

.projects-scroll-loader.has-error {
  color: #e3b47f;
}

.projects-noscript-more a {
  color: var(--portfolio-button-text);
  background: var(--portfolio-button-bg);
  border-radius: var(--radius-pill);
  padding: 13px 20px;
}

@keyframes portfolio-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================================
   SERVICES SHOWCASE PAGE
   ================================ */

body.services-showcase-page {
  --services-page-bg: #f5f2ee;
  --services-panel-bg: #ffffff;
  --services-panel-hover-bg: #fbf8f4;
  --services-text: #1f1d1a;
  --services-muted: #6f665d;
  --services-border: rgba(31, 29, 26, 0.12);
  --services-shadow: 0 22px 54px rgba(39, 34, 29, 0.11);
  --services-shadow-hover: 0 30px 80px rgba(39, 34, 29, 0.17);
  background: var(--services-page-bg);
}

html body.dark-theme.services-showcase-page {
  --services-page-bg: #101010;
  --services-panel-bg: #171717;
  --services-panel-hover-bg: #1d1d1d;
  --services-text: #f3eee8;
  --services-muted: #b8afa4;
  --services-border: rgba(255, 255, 255, 0.11);
  --services-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --services-shadow-hover: 0 34px 92px rgba(0, 0, 0, 0.46);
}

body.services-showcase-page .service-showcase-area {
  background: var(--services-page-bg) !important;
  color: var(--services-text);
  padding-top: clamp(70px, 8vw, 118px);
}

html body.dark-theme.services-showcase-page .service-showcase-area {
  background: var(--services-page-bg) !important;
}

body.services-showcase-page .service-showcase-area > .container {
  max-width: min(1640px, calc(100% - 40px));
}

body.services-showcase-page .service-showcase-area > .service-intro-container {
  max-width: min(1640px, calc(100% - 40px));
}

body.services-showcase-page .service-showcase-intro {
  margin-bottom: clamp(30px, 5vw, 72px);
  row-gap: 22px;
}

body.services-showcase-page .service-area .RDD-section-title h1,
body.services-showcase-page .service-area .RDD-section-title h4,
body.services-showcase-page .service-area .RDD-section-title p,
html body.dark-theme.services-showcase-page .service-area .RDD-section-title h1,
html body.dark-theme.services-showcase-page .service-area .RDD-section-title h4,
html body.dark-theme.services-showcase-page .service-area .RDD-section-title p {
  color: var(--services-text) !important;
}

body.services-showcase-page .service-area .RDD-section-title h1 span,
body.services-showcase-page .service-area .RDD-section-title h4,
html body.dark-theme.services-showcase-page .service-area .RDD-section-title h1 span,
html body.dark-theme.services-showcase-page .service-area .RDD-section-title h4 {
  color: var(--color-primary) !important;
}

body.services-showcase-page .service-area .RDD-section-title p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--services-muted) !important;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
}

body.services-showcase-page .service-showcase-grid {
  row-gap: clamp(18px, 2.3vw, 34px);
}

body.services-showcase-page .service-ecosystem-section {
  width: 100%;
  margin: clamp(34px, 5vw, 76px) 0 0;
  padding: 0;
}

body.services-showcase-page .service-ecosystem-section > .container.svelte-8p0mpe {
  width: 100%;
  max-width: none;
  padding: 0 40px;
  margin: 0;
}

body.services-showcase-page .service-ecosystem-heading {
  max-width: 1180px;
  margin: 0 auto 36px;
  text-align: center;
}

body.services-showcase-page .service-ecosystem-heading p {
  margin: 0;
  color: var(--services-text);
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  text-transform: uppercase;
}

body.services-showcase-page .service-ecosystem-heading code {
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

body.services-showcase-page .service-ecosystem-stage {
  position: relative;
  width: min(100%, 1040px);
  min-height: clamp(620px, 54vw, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  isolation: isolate;
}

body.services-showcase-page .service-orbit-rings {
  position: absolute;
  inset: 50%;
  width: min(72vw, 760px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.services-showcase-page .service-orbit-rings span {
  position: absolute;
  inset: calc(var(--ring, 0) * 9%);
  border: 1px solid color-mix(in srgb, var(--services-text), transparent 86%);
  border-radius: 50%;
  opacity: 0.9;
}

body.services-showcase-page .service-orbit-rings span:nth-child(1) {
  --ring: 0;
}

body.services-showcase-page .service-orbit-rings span:nth-child(2) {
  --ring: 1;
}

body.services-showcase-page .service-orbit-rings span:nth-child(3) {
  --ring: 2;
}

body.services-showcase-page .service-orbit-rings span:nth-child(4) {
  --ring: 3;
}

body.services-showcase-page .service-core-card {
  position: relative;
  z-index: 2;
  width: clamp(188px, 18vw, 240px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
  color: var(--services-text);
  background: color-mix(in srgb, var(--services-panel-bg), transparent 4%);
  border: 1px solid var(--services-border);
  border-radius: 50% !important;
  box-shadow: var(--services-shadow);
}

body.services-showcase-page .service-core-icon {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: var(--color-primary);
  border-radius: 50% !important;
  overflow: hidden;
}

body.services-showcase-page .service-core-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px !important;
}

body.services-showcase-page .service-core-card span {
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.services-showcase-page .service-core-card strong {
  color: var(--services-text);
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.1;
}

body.services-showcase-page .service-orbit-list {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.services-showcase-page .service-orbit-item {
  position: absolute;
  width: clamp(260px, 23vw, 360px);
  animation: service-orbit-float 5.8s var(--ease-out-quart) infinite;
  animation-delay: calc(var(--service-index, 0) * -520ms);
}

body.services-showcase-page .service-orbit-item:nth-child(1) {
  top: 6%;
  left: 7%;
}

body.services-showcase-page .service-orbit-item:nth-child(2) {
  top: 10%;
  right: 4%;
}

body.services-showcase-page .service-orbit-item:nth-child(3) {
  top: 42%;
  right: 0;
}

body.services-showcase-page .service-orbit-item:nth-child(4) {
  right: 10%;
  bottom: 8%;
}

body.services-showcase-page .service-orbit-item:nth-child(5) {
  left: 8%;
  bottom: 9%;
}

body.services-showcase-page .service-orbit-item:nth-child(6) {
  top: 43%;
  left: 0;
}

body.services-showcase-page .service-orbit-item:nth-child(n + 7) {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: inline-block;
  margin: 12px;
}

body.services-showcase-page .service-orbit-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 11px 18px 11px 11px;
  color: var(--services-text) !important;
  background: color-mix(in srgb, var(--services-panel-bg), transparent 3%);
  border: 1px solid var(--services-border);
  border-radius: 999px !important;
  box-shadow: 0 18px 42px rgba(31, 29, 26, 0.1);
  transition:
    transform 900ms var(--ease-out-quint),
    box-shadow 900ms var(--ease-out-quart),
    border-color 900ms var(--ease-out-quart),
    background-color 900ms var(--ease-out-quart);
}

html body.dark-theme.services-showcase-page .service-orbit-card {
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

body.services-showcase-page .service-orbit-card:hover,
body.services-showcase-page .service-orbit-card:focus-visible {
  color: var(--services-text) !important;
  background: var(--services-panel-hover-bg);
  border-color: color-mix(in srgb, var(--color-primary), transparent 34%);
  box-shadow: var(--services-shadow-hover);
  transform: translateY(-7px) scale(1.03);
}

body.services-showcase-page .service-orbit-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary), transparent 84%);
  border-radius: 50% !important;
  overflow: hidden;
}

body.services-showcase-page .service-orbit-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px !important;
}

body.services-showcase-page .service-orbit-icon i {
  color: var(--color-primary) !important;
  font-size: 28px;
}

body.services-showcase-page .service-orbit-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

body.services-showcase-page .service-orbit-number {
  color: var(--color-primary);
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 1;
}

body.services-showcase-page .service-orbit-copy strong {
  color: var(--services-text);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.services-showcase-page .service-orbit-copy small {
  color: var(--services-muted);
  font-size: 13px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@keyframes service-orbit-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

body.services-showcase-page .service-card-col {
  display: flex;
}

body.services-showcase-page .single-service-box.service-card-clickable {
  width: 100%;
  min-height: clamp(520px, 45vw, 720px);
  height: auto !important;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  gap: 0;
  margin: 0;
  padding: 0 !important;
  clip-path: none !important;
  overflow: hidden;
  cursor: pointer;
  background: var(--services-panel-bg);
  border: 1px solid var(--services-border) !important;
  border-radius: 30px !important;
  box-shadow: var(--services-shadow);
  transform: translateZ(0);
}

body.services-showcase-page .single-service-box.service-card-clickable::before,
body.services-showcase-page .single-service-box.service-card-clickable::after {
  display: none !important;
}

body.services-showcase-page .single-service-box.service-card-clickable:hover,
body.services-showcase-page .single-service-box.service-card-clickable:focus-within {
  background: var(--services-panel-hover-bg);
  border-color: color-mix(in srgb, var(--color-primary), transparent 45%) !important;
  box-shadow: var(--services-shadow-hover);
  transform: translateY(-8px);
}

body.services-showcase-page .service-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10.5;
  min-height: 0;
  overflow: hidden;
  border-radius: 30px 30px 22px 22px !important;
  background: #24211d;
}

body.services-showcase-page .service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.22));
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 900ms var(--ease-out-quart);
}

body.services-showcase-page .service-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  transform: translateZ(0) scale(1);
  transform-origin: center center;
  transition:
    transform 2200ms var(--ease-out-quint),
    filter 2200ms var(--ease-out-quart);
}

body.services-showcase-page
  .single-service-box.service-card-clickable:is(:hover, :focus-within)
  .service-card-media
  img {
  transform: translateZ(0) scale(1.14);
  filter: saturate(1.05) contrast(1.04);
}

body.services-showcase-page .single-service-box.service-card-clickable:is(:hover, :focus-within) .service-card-media::after {
  opacity: 0.32;
}

body.services-showcase-page .single-service-box.service-card-clickable .service-icon-thumb {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: color-mix(in srgb, var(--services-panel-bg), transparent 16%);
  border: 1px solid var(--services-border);
  border-radius: 24px !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  z-index: 2;
}

body.services-showcase-page .single-service-box.service-card-clickable .service-icon-thumb img,
body.services-showcase-page .single-service-box.service-card-clickable .service-icon-thumb i {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  font-size: 31px;
  color: var(--color-primary) !important;
  transform: none !important;
}

body.services-showcase-page .single-service-box.service-card-clickable:hover .service-icon-thumb img,
body.services-showcase-page .single-service-box.service-card-clickable:hover .service-icon-thumb i {
  transform: none !important;
}

body.services-showcase-page .single-service-box.service-card-clickable .service-title {
  min-height: 178px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "index title"
    "index text";
  column-gap: clamp(18px, 2vw, 32px);
  align-content: center;
  margin: 0 !important;
  padding: clamp(22px, 2.7vw, 40px);
  transition: none;
}

body.services-showcase-page .single-service-box.service-card-clickable:hover .service-title {
  margin-top: 0 !important;
}

body.services-showcase-page .service-card-index {
  grid-area: index;
  align-self: start;
  color: var(--color-primary) !important;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.2;
  opacity: 1 !important;
}

body.services-showcase-page .service-title h2 {
  grid-area: title;
  margin: 0;
  padding: 0;
  color: var(--services-text) !important;
  font-size: clamp(26px, 2.4vw, 44px);
  line-height: 1.04;
}

body.services-showcase-page .service-title h2 a {
  color: var(--services-text) !important;
  display: block;
  -webkit-line-clamp: 2;
}

body.services-showcase-page .service-title p {
  grid-area: text;
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--services-muted) !important;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
  -webkit-line-clamp: 3;
}

body.services-showcase-page .service-card-arrow {
  position: absolute;
  right: clamp(22px, 2.5vw, 36px);
  bottom: clamp(22px, 2.5vw, 36px);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--services-text);
  border: 1px solid var(--services-border);
  border-radius: var(--radius-pill);
  opacity: 0.82;
  transition:
    transform 900ms var(--ease-out-quint),
    color 900ms var(--ease-out-quart),
    border-color 900ms var(--ease-out-quart),
    background-color 900ms var(--ease-out-quart);
}

body.services-showcase-page .single-service-box.service-card-clickable:is(:hover, :focus-within) .service-card-arrow {
  transform: translateX(5px);
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

html body.dark-theme.services-showcase-page .contact-form-area.style-two {
  background-color: #141414;
}

body.services-showcase-page .contact-form-area.style-two {
  background-color: #272727;
}

html body.dark-theme.services-showcase-page .contact-form-area.style-two {
  background-color: #141414;
}

/* Home hero/header and feature contrast fixes */
body.home-page.dark-theme .dex_nav_manu:not(.sticky) {
  background: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.16) !important;
}

body:not(.home-page) .dex_nav_manu:not(.sticky),
html body.dark-theme:not(.home-page) .dex_nav_manu:not(.sticky) {
  background: transparent !important;
  border-bottom-color: rgba(255, 255, 255, 0.16) !important;
}

body.home-page.dark-theme .dex_nav_manu:not(.sticky) .dex_menu > ul.nav_scroll > li > a,
body.home-page.dark-theme .dex_nav_manu:not(.sticky) .nav-btn.navSidebar-button span i,
body:not(.home-page) .dex_nav_manu:not(.sticky) .dex_menu > ul.nav_scroll > li > a,
body:not(.home-page) .dex_nav_manu:not(.sticky) .nav-btn.navSidebar-button span i,
html body.dark-theme:not(.home-page) .dex_nav_manu:not(.sticky) .dex_menu > ul.nav_scroll > li > a,
html body.dark-theme:not(.home-page) .dex_nav_manu:not(.sticky) .nav-btn.navSidebar-button span i {
  color: var(--color-text-light) !important;
}

body.home-page.dark-theme .dex_nav_manu:not(.sticky) .header-button a,
body:not(.home-page) .dex_nav_manu:not(.sticky) .header-button a,
html body.dark-theme:not(.home-page) .dex_nav_manu:not(.sticky) .header-button a {
  color: var(--color-text-light) !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

.dex_nav_manu .header-logo,
.mobile-menu-area .mobile-logo-img img {
  border-radius: 0 !important;
}

body.home-page .feature-area.pb-60 .RDD-sinlge-feature-box:not(.active):not(:hover) .RDD-feature-title h2 {
  color: var(--color-text-dark) !important;
}

body.home-page .feature-area.pb-60 .RDD-sinlge-feature-box:not(.active):not(:hover) .RDD-feature-title p {
  color: #6c6259 !important;
}

html body.dark-theme.home-page .feature-area.pb-60 .RDD-sinlge-feature-box:not(.active):not(:hover) .RDD-feature-title h2 {
  color: var(--color-text-light) !important;
}

html body.dark-theme.home-page .feature-area.pb-60 .RDD-sinlge-feature-box:not(.active):not(:hover) .RDD-feature-title p {
  color: #d5cabf !important;
}

body.home-page .feature-area.pb-60 > .container {
  max-width: min(1500px, calc(100% - 40px));
}

body.home-page .feature-area.pb-60 .feature-top {
  margin-left: -14px;
  margin-right: -14px;
  row-gap: 28px;
}

body.home-page .feature-area.pb-60 .feature-top > [class*="col-"] {
  padding-left: 14px;
  padding-right: 14px;
}

body.home-page .feature-area.pb-60 .RDD-sinlge-feature-box {
  height: 100%;
  padding-left: clamp(24px, 2.1vw, 34px);
  padding-right: clamp(24px, 2.1vw, 34px);
}

body.home-page .feature-area.pb-60 .RDD-feature-content {
  min-height: 260px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
}

body.home-page .feature-area.pb-60 .RDD-feature-box-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home-page .feature-area.pb-60 :is(.RDD-feature-icon, .RDD-feature-icon1) {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  overflow: visible !important;
}

body.home-page .feature-area.pb-60 .RDD-feature-title h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.08;
  width: 100%;
}

body.home-page .feature-area.pb-60 :is(.RDD-feature-icon, .RDD-feature-icon1) img {
  display: block;
  margin: 0 auto;
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center center;
  transform: translateX(0) !important;
}

body.home-page .slider-area {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.42) 34%, rgba(10, 10, 10, 0.2) 56%, rgba(10, 10, 10, 0.68) 100%),
    url("../images/slider/hero1.jpg") !important;
  background-position: center center !important;
  background-size: cover !important;
}

body.home-page .slider2.slider-area {
  background-image:
    linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.42) 34%, rgba(10, 10, 10, 0.2) 56%, rgba(10, 10, 10, 0.68) 100%),
    url("../images/slider/hero2.jpg") !important;
}

body.home-page .counter-area.pt-90.pb-70 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(680px, 48vw, 740px);
  padding: 105px 0 232px !important;
  background: transparent !important;
}

body.home-page.dark-theme .counter-area.pt-90.pb-70 {
  min-height: clamp(680px, 48vw, 740px);
  padding: 105px 0 232px !important;
  background: transparent !important;
}

body.home-page .counter-area.pt-90.pb-70::before,
body.home-page .counter-area.pt-90.pb-70::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body.home-page .counter-area.pt-90.pb-70::before {
  z-index: -2;
  background: url("../images/resource/counter-bg.jpg") center center / cover no-repeat;
}

body.home-page .counter-area.pt-90.pb-70::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.72));
}

html body.dark-theme.home-page .counter-area.pt-90.pb-70::after {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.82));
}

body.home-page .counter-area.pt-90.pb-70 > .container {
  position: relative;
  z-index: 1;
}

body.home-page.dark-theme .counter-area.pt-90.pb-70 .RDD-single-counter-box {
  background: rgba(30, 30, 30, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

body.home-page .counter-area.pt-90.pb-70 .col-lg-7 .row {
  row-gap: 18px;
}

body.home-page .counter-area.pt-90.pb-70 .RDD-single-counter-box {
  height: 100%;
  margin-bottom: 0 !important;
  border-radius: 26px !important;
  overflow: hidden;
}

body.home-page .counter-area.pt-90.pb-70 .single-counter-box-inner {
  min-height: clamp(132px, 12vw, 168px);
  height: 100%;
  gap: clamp(14px, 1.6vw, 24px);
  align-items: center !important;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

body.home-page .counter-area.pt-90.pb-70 .counter-thumb {
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
  min-width: clamp(58px, 5vw, 76px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0 !important;
  border-radius: 22px !important;
  background: rgba(205, 162, 116, 0.18);
  border: 1px solid rgba(205, 162, 116, 0.22);
  overflow: hidden;
}

body.home-page .counter-area.pt-90.pb-70 .counter-thumb img {
  width: clamp(34px, 3vw, 46px);
  height: clamp(34px, 3vw, 46px);
  object-fit: contain;
  border-radius: 12px !important;
}

body.home-page .counter-area.pt-90.pb-70 .counter-info {
  min-width: 0;
  flex: 1 1 auto;
}

body.home-page .counter-area.pt-90.pb-70 .counter-info .counter-text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 5px;
  margin: 0;
  padding: 0;
}

body.home-page .counter-area.pt-90.pb-70 .counter-text h2,
body.home-page .counter-area.pt-90.pb-70 .counter-text span {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

body.home-page .counter-area.pt-90.pb-70 .counter-title h4 {
  margin: 12px 0 0;
  overflow-wrap: anywhere;
  line-height: 1.32;
}

body.home-page .counter-area.pt-90.pb-70 .counter-title h4::before {
  width: min(84px, 48%);
  bottom: -12px;
}

html body.dark-theme.home-page .counter-area.pt-90.pb-70 .single-counter-box-inner {
  background: rgba(30, 30, 30, 0.78);
  border-color: rgba(255, 255, 255, 0.11);
}

html body.dark-theme.home-page .counter-area.pt-90.pb-70 .counter-thumb {
  background: rgba(205, 162, 116, 0.2);
  border-color: rgba(205, 162, 116, 0.28);
}

/* Final no-sharp-corners pass for public UI surfaces */
.RDD-about-content {
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.RDD-about-content .RDD-about-thumb,
.RDD-about-content .RDD-about-thumb img {
  border-radius: var(--radius-md) !important;
  overflow: hidden !important;
}

:is(
  .RDD-about-content,
  .RDD-about-thumb,
  .RDD-about-thumb1,
  .RDD-about-thumb2,
  .RDD-about-thumb3,
  .RDD-about-thumb-box,
  .about-thumb,
  .about-thumb img,
  .about-quote-box,
  .single-service-box,
  .single-service-box::before,
  .single-service-box::after,
  .single-service-box-2,
  .single-service-box2,
  .single-service-box-inner,
  .project-single-box,
  .single-project-box,
  .single_portfolio_box,
  .single_portfolio_content,
  .single_blog,
  .single_blog_thumb,
  .single_blog_content,
  .blog-grid-card,
  .blog-list-card,
  .RDD-sinlge-feature-box,
  .RDD-sinlge-feature-box::before,
  .RDD-sinlge-feature-box::after,
  .why-choose-us-single-box,
  .why-choose-us-content,
  .why-choose-us-thumb,
  .process-single-box,
  .process-icon-box,
  .process-counter-box,
  .RDD-single-counter-box,
  .single-counter-box-inner,
  .counter-thumb,
  .team-content,
  .single-team-thumb,
  .RDD-single-team-box2,
  .dreamit-single-team-box2,
  .brand-thumb,
  .testimonial-list .owl-stage-outer,
  .RDD-testimonial-single-box,
  .single-contact-form-box,
  .contact-form-box,
  .contact-form-area.style-two .container,
  .xs-sidebar-widget,
  .content-thumb-box,
  .search-popup,
  .breatcumb-content-text ul,
  .portfolio-filter-strip,
  .listing-empty-state,
  .pd-gallery-frame,
  .pd-feature-card,
  .pd-related-card
) {
  border-radius: var(--radius-lg) !important;
}

:is(
  .single-service-box,
  .single-service-box-2,
  .single-service-box2,
  .single-service-box-inner,
  .single_portfolio_box,
  .single_portfolio_content,
  .project-single-box,
  .single-project-box,
  .single_blog,
  .single_blog_thumb,
  .single_blog_content,
  .RDD-sinlge-feature-box,
  .why-choose-us-single-box,
  .why-choose-us-content,
  .why-choose-us-thumb,
  .process-single-box,
  .RDD-single-counter-box,
  .single-counter-box-inner,
  .counter-thumb,
  .team-content,
  .single-team-thumb,
  .RDD-single-team-box2,
  .dreamit-single-team-box2,
  .content-thumb-box,
  .pd-gallery-frame
) {
  clip-path: none !important;
  overflow: hidden !important;
}

body.services-showcase-page .contact-form-area.style-two {
  background-color: #272727 !important;
  background-image: linear-gradient(135deg, rgba(205, 162, 116, 0.18), rgba(39, 39, 39, 0) 42%) !important;
}

html body.dark-theme.services-showcase-page .contact-form-area.style-two {
  background-color: #141414 !important;
  background-image: linear-gradient(135deg, rgba(205, 162, 116, 0.14), rgba(20, 20, 20, 0) 46%) !important;
}

@media (max-width: 991px) {
  body.services-showcase-page .service-showcase-area > .container {
    max-width: calc(100% - 24px);
  }

  body.services-showcase-page .service-ecosystem-section > .container.svelte-8p0mpe {
    padding: 0 24px;
  }

  body.services-showcase-page .service-ecosystem-stage {
    min-height: 0;
    display: block;
  }

  body.services-showcase-page .service-orbit-rings {
    display: none;
  }

  body.services-showcase-page .service-core-card {
    width: 100%;
    min-height: 150px;
    aspect-ratio: auto;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 16px;
    text-align: left;
    border-radius: 28px !important;
  }

  body.services-showcase-page .service-orbit-list {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  body.services-showcase-page .service-orbit-item,
  body.services-showcase-page .service-orbit-item:nth-child(n) {
    position: static;
    width: auto;
    inset: auto;
    animation: none;
  }

  body.services-showcase-page .service-orbit-card {
    min-height: 100%;
    grid-template-columns: 62px minmax(0, 1fr);
    border-radius: 24px !important;
  }

  body.services-showcase-page .service-orbit-icon {
    width: 62px;
    height: 62px;
  }

  body.services-showcase-page .single-service-box.service-card-clickable {
    min-height: 520px;
  }
}

@media (max-width: 575px) {
  body.services-showcase-page .service-showcase-area > .container {
    max-width: calc(100% - 16px);
  }

  body.services-showcase-page .service-ecosystem-section > .container.svelte-8p0mpe {
    padding: 0;
  }

  body.services-showcase-page .service-ecosystem-heading {
    padding: 0 16px;
    margin-bottom: 22px;
  }

  body.services-showcase-page .service-ecosystem-heading p {
    font-size: clamp(22px, 7vw, 30px);
    text-align: center;
  }

  body.services-showcase-page .service-core-card {
    margin: 0 16px 14px;
    width: calc(100% - 32px);
    padding: 20px;
  }

  body.services-showcase-page .service-core-icon {
    width: 68px;
    height: 68px;
  }

  body.services-showcase-page .service-core-icon img {
    width: 56px;
    height: 56px;
  }

  body.services-showcase-page .service-orbit-list {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 16px;
  }

  body.services-showcase-page .service-orbit-card {
    min-height: 96px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 10px 14px 10px 10px;
    border-radius: 22px !important;
  }

  body.services-showcase-page .service-orbit-card:hover,
  body.services-showcase-page .service-orbit-card:focus-visible {
    transform: none;
  }

  body.services-showcase-page .service-orbit-icon {
    width: 58px;
    height: 58px;
  }

  body.services-showcase-page .service-button-1 {
    text-align: left !important;
  }

  body.services-showcase-page .single-service-box.service-card-clickable {
    min-height: 0;
    border-radius: 24px !important;
  }

  body.services-showcase-page .service-card-media {
    border-radius: 24px 24px 18px 18px !important;
  }

  body.services-showcase-page .service-card-media img {
    min-height: 0;
  }

  body.services-showcase-page .single-service-box.service-card-clickable .service-title {
    grid-template-columns: 1fr;
    grid-template-areas:
      "index"
      "title"
      "text";
    row-gap: 10px;
    padding: 22px 22px 76px;
  }

  body.services-showcase-page .service-title p {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .breatcumb-area,
  .style-two.breatcumb-area,
  body.projects-portfolio-page .breatcumb-area {
    min-height: 460px;
    padding: 130px 0 56px;
  }

  .breatcumb-title h2,
  .style-two .breatcumb-title h2,
  body.projects-portfolio-page .breatcumb-title h2 {
    font-size: clamp(46px, 12vw, 82px);
  }

  body.projects-portfolio-page .projects-list-page > .container {
    max-width: calc(100% - 22px);
  }

  body.projects-portfolio-page .portfolio-filter-strip {
    flex-direction: column;
    align-items: stretch;
  }

  body.projects-portfolio-page .portfolio-filter-links {
    justify-content: flex-start;
  }

  .portfolio-location-search {
    flex-basis: auto;
  }

  body.projects-portfolio-page .projects-portfolio-card {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .breatcumb-area,
  .style-two.breatcumb-area {
    min-height: 390px;
    padding: 104px 0 46px;
  }

  .breatcumb-content,
  .style-two .breatcumb-content {
    padding: 0 10px;
  }

  .breatcumb-content-text ul,
  .style-two .breatcumb-content-text ul {
    gap: 8px;
    padding: 9px 13px;
  }

  .breatcumb-content-text ul li span,
  .breatcumb-content-text a,
  .style-two .breatcumb-content-text ul li span,
  .style-two .breatcumb-content-text a {
    font-size: 13px !important;
  }

  .breatcumb-title h2,
  .style-two .breatcumb-title h2,
  body.projects-portfolio-page .breatcumb-title h2 {
    font-size: clamp(52px, 18vw, 78px);
  }

  body.projects-portfolio-page .projects-list-page > .container {
    max-width: calc(100% - 16px);
  }

  body.projects-portfolio-page .listing-results-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  body.projects-portfolio-page .portfolio-filter-strip {
    padding: 9px;
    border-radius: 16px;
  }

  .portfolio-search-control {
    min-height: 36px;
  }

  body.projects-portfolio-page .projects-portfolio-card {
    min-height: 0;
  }

  body.projects-portfolio-page .projects-portfolio-card .single_blog_content {
    min-height: 0;
    padding: 11px 52px;
  }

  body.projects-portfolio-page .projects-portfolio-card .blog_page_title h4 a,
  body.projects-portfolio-page .projects-portfolio-card .portfolio-title-meta .meta_blog_bottom {
    font-size: 13px;
  }

  body.projects-portfolio-page .projects-portfolio-card .blog-button {
    right: 12px;
    bottom: 10px;
  }
}
