/* Eliment brand layer: color, typography, spacing, responsive fixes */
:root {
  --eliment-primary: #0e5fbe;
  --eliment-primary-strong: #0a4ea0;
  --eliment-accent: #12b7d8;
  --eliment-ink: #2f3744;
  --eliment-muted: #5e6678;
  --eliment-surface: #f5f9ff;
  --eliment-card: #ffffff;
  --eliment-border: #dbe8fa;

  --primary-color: var(--eliment-primary) !important;
  --secondary-color: var(--eliment-ink) !important;
  --heading-color: var(--eliment-ink) !important;
  --text-color: var(--eliment-muted) !important;
  --primary-font: "Manrope", "Instrument Sans", "Outfit", sans-serif !important;
  --heading-font: "Manrope", "Instrument Sans", "Outfit", sans-serif !important;
  --secondary-font: "Manrope", "Instrument Sans", "Outfit", sans-serif !important;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  color: var(--eliment-muted);
  background:
    radial-gradient(1000px 600px at 100% -10%, rgba(18, 183, 216, 0.08), transparent 60%),
    radial-gradient(900px 550px at -5% 10%, rgba(14, 95, 190, 0.08), transparent 55%),
    #f7faff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6,
.title, .section-title, .tg-element-title {
  color: var(--eliment-ink) !important;
  font-family: var(--heading-font) !important;
  letter-spacing: -0.01em;
}

p, li, span, .description {
  color: var(--eliment-muted);
}

a {
  color: var(--eliment-primary);
  transition: color 0.25s ease, opacity 0.25s ease;
}
a:hover { color: var(--eliment-primary-strong); }

.container {
  width: min(100% - 2rem, 1200px);
}

/* ═══════════════════════════════════════════════════════════
   ELEMENT HEADER - Clean Modern Navbar
   ═══════════════════════════════════════════════════════════ */

.eliment-header {
  position: relative;
  z-index: 1000;
}

/* Navbar base */
.eliment-navbar {
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(14, 95, 190, 0.08);
  transition: box-shadow 0.3s ease;
}

.eliment-navbar.sticky {
  box-shadow: 0 4px 30px rgba(14, 95, 190, 0.12);
}

/* Navbar inner layout */
.eliment-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

/* Logo */
.eliment-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.eliment-logo img {
  height: 56px !important;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.eliment-logo:hover img {
  transform: scale(1.03);
}

/* Main navigation */
.eliment-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.eliment-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.eliment-nav-list > li {
  position: relative;
}

.eliment-nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--eliment-ink);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.eliment-nav-list > li > a:hover {
  color: var(--eliment-primary);
  background: rgba(14, 95, 190, 0.06);
}

/* Dropdown indicator */
.eliment-nav-list > li.has-dropdown > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.5;
  transition: transform 0.25s ease;
}

.eliment-nav-list > li.has-dropdown > a:hover::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* CTA Button */
.eliment-nav-cta,
.eliment-nav-link.eliment-cta {
  background: linear-gradient(135deg, var(--eliment-primary), var(--eliment-accent)) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(14, 95, 190, 0.25);
}

.eliment-nav-cta:hover,
.eliment-nav-link.eliment-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 95, 190, 0.35);
  color: #ffffff !important;
}

/* Dropdown menus */
.eliment-dropdown,
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(14, 95, 190, 0.15);
  border: 1px solid var(--eliment-border);
  padding: 12px 8px;
  margin: 8px 0 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.eliment-nav-list > li:hover > .eliment-dropdown,
.navigation > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.eliment-dropdown li,
.sub-menu li {
  margin: 0;
}

.eliment-dropdown li a,
.sub-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--eliment-ink);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.eliment-dropdown li a:hover,
.sub-menu li a:hover {
  color: var(--eliment-primary);
  background: rgba(14, 95, 190, 0.06);
  padding-left: 22px;
}

/* Mobile toggle button */
.eliment-mobile-toggle-wrap {
  display: flex;
  align-items: center;
}

.eliment-mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--eliment-border);
  border-radius: 10px;
  cursor: pointer;
  gap: 5px;
  transition: all 0.25s ease;
}

.eliment-mobile-toggle:hover {
  border-color: var(--eliment-primary);
  background: rgba(14, 95, 190, 0.04);
}

.eliment-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--eliment-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.eliment-mobile-toggle:hover span {
  background: var(--eliment-primary);
}

/* Hamburger animation when menu is open */
body.mobile-menu-visible .eliment-mobile-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.mobile-menu-visible .eliment-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-visible .eliment-mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu styles (handled by theme JS) */
.tgmobile__menu {
  background: #ffffff !important;
}

.tgmobile__menu .navigation li a {
  color: var(--eliment-ink) !important;
  font-weight: 500;
  padding: 14px 20px !important;
  border-bottom: 1px solid var(--eliment-border);
}

.tgmobile__menu .navigation li a:hover {
  color: var(--eliment-primary) !important;
  background: rgba(14, 95, 190, 0.04);
}

.tgmobile__menu .sub-menu li a {
  padding-left: 35px !important;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1023px) {
  .eliment-navbar-inner {
    min-height: 64px;
  }
  
  .eliment-logo img {
    height: 48px !important;
    max-width: 150px;
  }
  
  .eliment-mobile-toggle-wrap {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .eliment-navbar-inner {
    min-height: 56px;
    gap: 12px;
  }
  
  .eliment-logo img {
    height: 42px !important;
    max-width: 130px;
  }
  
  .eliment-mobile-toggle {
    width: 40px;
    height: 40px;
  }
  
  .eliment-mobile-toggle span {
    width: 18px;
    height: 2px;
  }
}

.tg-btn,
.btn,
button,
.cookie-consent__agree {
  border-radius: 12px !important;
  font-weight: 700 !important;
  border: 0 !important;
  background: linear-gradient(135deg, var(--eliment-primary), var(--eliment-accent)) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(14, 95, 190, 0.26);
}

.tg-btn:hover,
.btn:hover,
button:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.service-item,
.services-item,
.features-item,
.team-item,
.blog-post-item,
.brand-item,
.tg-about-content,
.card,
.widget,
.footer-widget {
  background: var(--eliment-card);
  border: 1px solid var(--eliment-border);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(13, 40, 80, 0.06);
}

section, .section-padding, .features-area, .service-area, .about-area {
  padding-block: 30px !important;
}

.features-area,
.service-area,
.about-area {
  padding-block: 30px !important;
}

section {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.breadcrumb__area,
.page_speed_818277350 {
  --breadcrumb-bg-color: #0c4a8b !important;
  --breadcrumb-txt-color: #ffffff !important;
}

.breadcrumb__area {
  isolation: isolate;
  position: relative;
}

.breadcrumb__area::before {
  background: linear-gradient(90deg, rgba(5, 12, 28, 0.76), rgba(5, 12, 28, 0.44) 58%, rgba(5, 12, 28, 0.22));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.breadcrumb__area .breadcrumb__content,
.breadcrumb__area .container,
.breadcrumb__area .row {
  position: relative;
  z-index: 1;
}

.breadcrumb__area .title,
.breadcrumb__area h1,
.breadcrumb__area h2,
.breadcrumb__area .breadcrumb-item,
.breadcrumb__area .breadcrumb-item a,
.breadcrumb__area .breadcrumb-item.active {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.breadcrumb__area .breadcrumb-item::before,
.breadcrumb__area .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.services__details-content .ck-content,
.services__details-content .ck-content p,
.services__details-content .ck-content li,
.services__details-content .ck-content span,
.services__details-content .ck-content strong,
.services__details-content .ck-content h1,
.services__details-content .ck-content h2,
.services__details-content .ck-content h3,
.services__details-content .ck-content h4,
.services__details-content .ck-content h5,
.services__details-content .ck-content h6 {
  background: transparent !important;
  background-color: transparent !important;
}

.services__details-content .ck-content p,
.services__details-content .ck-content li,
.services__details-content .ck-content span {
  color: var(--eliment-ink) !important;
}

.services__details-content .ck-content p {
  margin: 0 0 18px !important;
}

.services__details-content .ck-content {
  color: var(--eliment-ink);
  line-height: 1.8;
}

/* ─── Footer: Deep‑blue gradient footer ─── */
#footer,
.footer-area {
  --footer-background-color: #0b1a30 !important;
  --footer-heading-color: #ffffff !important;
  --footer-text-color: #c8d9ee !important;
  --footer-border-color: rgba(255, 255, 255, 0.08) !important;
  --footer-bottom-background-color: #0e5fbe !important;
  background: linear-gradient(180deg, #0b1a30 0%, #0f2440 100%) !important;
  color: #c8d9ee !important;
  border-top: 3px solid var(--eliment-accent);
}

#footer .footer-top {
  padding-block: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#footer .footer-bottom,
#footer-bottom,
.footer-bottom {
  background: linear-gradient(135deg, #0e5fbe, #12b7d8) !important;
  color: #fff !important;
}

#footer .copyright-text,
#footer p,
#footer a,
#footer span {
  color: #c8d9ee !important;
}

#footer h1, #footer h2, #footer h3,
#footer h4, #footer h5, #footer h6,
#footer .title, #footer .section-title {
  color: #ffffff !important;
  font-family: var(--heading-font) !important;
}

#footer a:hover {
  color: var(--eliment-accent) !important;
}

#footer .copyright-text {
  color: #ffffff !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}

#footer .footer-bottom a,
#footer-bottom a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.2s ease;
}

#footer .footer-bottom a:hover,
#footer-bottom a:hover {
  color: #ffffff !important;
}

/* Override inline page_speed footer styles */
[class*="page_speed_"][class*="footer"],
[class*="page_speed_"][style*="background-color: rgb(0, 0, 0)"],
footer[class*="page_speed_"] {
  background: linear-gradient(180deg, #0b1a30 0%, #0f2440 100%) !important;
  --footer-background-color: #0b1a30 !important;
  --footer-heading-color: #ffffff !important;
  --footer-text-color: #c8d9ee !important;
  --footer-border-color: rgba(255, 255, 255, 0.08) !important;
  --footer-bottom-background-color: #0e5fbe !important;
}

/* Footer widgets inside footer area */
.eliment-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-left: 0;
  margin-right: 0;
}

.eliment-footer-row > .footer-widget,
.eliment-footer-row > .col-lg-3 {
  flex: 1 1 calc((100% - 96px) / 4);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  min-width: 220px;
}

.eliment-footer-row > .footer-widget:last-child,
.eliment-footer-row > .col-lg-3:last-child {
  flex: 0 0 240px;
  margin-left: auto;
}

@media (max-width: 991px) {
  .eliment-footer-row > .footer-widget,
  .eliment-footer-row > .col-lg-3 {
    flex: 1 1 calc(50% - 16px);
    max-width: none;
    min-width: 260px;
  }

  .eliment-footer-row > .footer-widget:last-child,
  .eliment-footer-row > .col-lg-3:last-child {
    flex: 1 1 calc(50% - 16px);
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .eliment-footer-row > .footer-widget,
  .eliment-footer-row > .col-lg-3 {
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
  }

  .eliment-footer-row > .footer-widget:last-child,
  .eliment-footer-row > .col-lg-3:last-child {
    flex: 1 1 100%;
    margin-left: 0;
  }
}

.footer-area .wrapper-footer-widgets {
  gap: 0;
}

.footer-area .widget,
.footer-area .footer-widget {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0;
}

.footer-area .widget h4,
.footer-area .widget .title,
.footer-area .footer-widget h4,
.footer-area .footer-widget .title {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-area .widget ul li a,
.footer-area .footer-widget ul li a {
  color: #c8d9ee !important;
  transition: color 0.2s ease, padding-inline-start 0.2s ease;
}

.footer-area .widget ul li a:hover,
.footer-area .footer-widget ul li a:hover {
  color: var(--eliment-accent) !important;
}

/* Footer contact readability */
.footer-area .footer-widget ul {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;
}

.footer-area .footer-widget h4,
.footer-area .footer-widget p,
.footer-area .footer-widget li,
.footer-area .footer-widget a,
.footer-area .footer-widget span {
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

.footer-area .footer-widget ul li {
  color: #dce9f8 !important;
  margin-bottom: 0;
}

.footer-area .footer-widget ul li strong {
  color: #ffffff !important;
}

.footer-area .footer-widget ul li a {
  color: #ffffff !important;
  font-weight: 600;
}

.footer-area .footer-widget ul li a:hover {
  color: var(--eliment-accent) !important;
}

.footer-area .footer-widget .footer-contact-line {
  display: block;
  margin-bottom: 10px;
}

.footer-area .footer-widget .footer-contact-line:last-child {
  margin-bottom: 0;
}

.footer-area .footer-widget .footer-contact-company {
  color: #ffffff !important;
  font-weight: 700;
}

.footer-area .footer-widget .footer-contact-meta {
  color: #dce9f8 !important;
}

.footer-area .footer-widget .footer-contact-link {
  color: #ffffff !important;
  text-decoration: none !important;
}

.scroll__top {
  background: linear-gradient(135deg, var(--eliment-primary), var(--eliment-accent)) !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 20px rgba(12, 74, 139, 0.32);
}

#whatsapp-chat-widget,
.js-cookie-consent {
  display: none !important;
}

/* Tablet / Small Desktop */
@media (max-width: 1199.98px) {
  .eliment-nav-list > li > a {
    padding: 8px 14px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 1024px) {
  .container { width: min(100% - 1.5rem, 960px); }
  section, .section-padding, .features-area, .service-area, .about-area {
    padding-block: clamp(42px, 6vw, 72px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container { width: calc(100% - 1.25rem); }
  h1, .h1, .title { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; line-height: 1.2; }
  h2, .h2 { font-size: clamp(1.35rem, 5vw, 1.8rem) !important; line-height: 1.25; }
  p, li, span { font-size: 15px; }
  .tgmobile__menu, .mobile-menu {
    max-height: 85vh;
    overflow-y: auto;
    background: #ffffff !important;
    border-radius: 0;
    padding-top: 20px;
  }
  .tgmobile__menu .navigation > li > a,
  .mobile-menu .navigation > li > a {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
  .tgmobile__menu .sub-menu,
  .mobile-menu .sub-menu {
    border-radius: 10px !important;
    margin: 4px 12px;
    background: rgba(14, 95, 190, 0.03) !important;
    box-shadow: none !important;
  }
  .tgmobile__menu .sub-menu li a,
  .mobile-menu .sub-menu li a {
    padding: 12px 16px 12px 28px !important;
    font-size: 14px !important;
  }
  .tg-btn, .btn, button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }
  [class*="col-"] { width: 100%; }
}

/* ─── Brand Area Fixes ─── */
.brand-area,
.eliment-brand-section {
  padding: 12px 0 18px !important;
  margin: 0 !important;
  background: transparent !important;
}

.brand-area > .container,
.eliment-brand-section > .container {
  padding-block: 0 !important;
}

.brand-area .brand__content,
.eliment-brand-section .brand__content {
  margin-bottom: 12px !important;
  padding: 0 !important;
}

.brand-area .brand__content h2,
.brand-area .brand__content .title,
.eliment-brand-section .brand__content h2,
.eliment-brand-section .brand__content .title {
  margin-bottom: 0 !important;
  font-size: clamp(1.25rem, 2vw, 1.7rem) !important;
  line-height: 1.2 !important;
}

.brand-area .brand-active,
.eliment-brand-section .brand-active,
.brand-active,
.eliment-brand-section .swiper-container {
  height: 68px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.brand-area .swiper-wrapper,
.eliment-brand-section .swiper-wrapper {
  align-items: center !important;
  gap: 0 !important;
  height: 68px !important;
  padding: 0 !important;
}

.brand-area .swiper-slide,
.eliment-brand-section .swiper-slide {
  height: 68px !important;
  padding: 0 !important;
}

.brand-area .brand-item,
.eliment-brand-section .brand-item {
  align-items: center;
  border-radius: 8px;
  display: flex;
  height: 68px;
  justify-content: center;
  overflow: hidden;
  padding: 0 8px;
}

.brand-area .brand-item a,
.eliment-brand-section .brand-item a {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}

.brand-area .brand-item img,
.eliment-brand-section .brand-item img {
  height: 135px !important;
  max-height: none !important;
  max-width: 165px !important;
  object-fit: contain !important;
  width: auto !important;
}

.ck-content > p:has(+ .brand-area),
.ck-content > .brand-area + p {
  display: none !important;
}

.shortcode-projects-style-2 {
  padding: 0 !important;
}

.shortcode-projects-style-2 .project-active-two,
.shortcode-projects-style-2 .project-active-two .swiper-wrapper,
.shortcode-projects-style-2 .project-active-two .swiper-slide,
.shortcode-projects-style-2 .project__item-four,
.shortcode-projects-style-2 .project__thumb-four {
  height: clamp(160px, 14vw, 220px) !important;
}

.shortcode-projects-style-2 .project__thumb-four img {
  height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
}

.shortcode-projects-style-2 .project__item-four {
  overflow: hidden;
  position: relative;
}

.shortcode-projects-style-2 .project__thumb-four {
  position: relative;
}

.shortcode-projects-style-2 .project__thumb-four::after {
  background: linear-gradient(90deg, rgba(5, 12, 28, 0.82), rgba(5, 12, 28, 0.5) 58%, rgba(5, 12, 28, 0.24));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.shortcode-projects-style-2 .project__content-four {
  z-index: 2;
}

.shortcode-projects-style-2 .project__content-four .title,
.shortcode-projects-style-2 .project__content-four .title a,
.shortcode-projects-style-2 .project__content-four span {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.shortcode-projects-style-2 .project__content-four span {
  opacity: 0.92;
}

@media (max-width: 767px) {
  .brand-area,
  .eliment-brand-section {
    padding: 10px 0 14px !important;
  }

  .brand-area .brand-item,
  .eliment-brand-section .brand-item {
    height: 62px;
    padding-inline: 12px;
  }

  .brand-area .brand-active,
  .eliment-brand-section .brand-active,
  .brand-active,
  .eliment-brand-section .swiper-container,
  .brand-area .swiper-wrapper,
  .eliment-brand-section .swiper-wrapper,
  .brand-area .swiper-slide,
  .eliment-brand-section .swiper-slide {
    height: 62px !important;
  }

  .brand-area .brand-item img,
  .eliment-brand-section .brand-item img {
    height: 120px !important;
    max-width: 150px !important;
  }

  .shortcode-projects-style-2 .project-active-two,
  .shortcode-projects-style-2 .project-active-two .swiper-wrapper,
  .shortcode-projects-style-2 .project-active-two .swiper-slide,
  .shortcode-projects-style-2 .project__item-four,
  .shortcode-projects-style-2 .project__thumb-four {
    height: 150px !important;
  }
}

/* Reduce section padding overall */
section, .section-padding {
  padding-block: 15px !important;
}

.features-area, .service-area, .about-area {
  padding-block: 15px !important;
}

/* Service section compact */
.service-area {
  padding-block: 10px !important;
}

/* Features compact */
.features-area {
  padding-block: 10px !important;
}

section + section {
  margin-top: 0 !important;
}

.section-padding + .section-padding {
  margin-top: 0 !important;
}

/* Remove extra whitespace around brand area */
.page_speed_76090262 {
  padding: 0 !important;
  margin: 0 !important;
}

/* About section image fixes */
.about__img-wrap-four {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img-wrap-four img {
  max-width: 100%;
  height: auto;
}

/* ─── Contact Page Styles ─── */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
}

.contact-info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(14, 95, 190, 0.1);
  height: 100%;
  border: 1px solid var(--eliment-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(14, 95, 190, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--eliment-primary), var(--eliment-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(14, 95, 190, 0.1);
  border: 1px solid var(--eliment-border);
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--eliment-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--primary-font);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  border-color: var(--eliment-primary);
  box-shadow: 0 0 0 3px rgba(14, 95, 190, 0.1);
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(14, 95, 190, 0.1);
  border: 1px solid var(--eliment-border);
}

/* ─── Service Details Pages Fixes ─── */
.services__sidebar, 
.col-30 {
  display: none !important;
}

.col-70 {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.services__details-area {
  padding: 60px 0 !important;
}

.services__details-wrap .row {
  justify-content: center !important;
}

.services__details-content,
.services__details-content .ck-content {
  background: transparent !important;
  background-color: transparent !important;
}

/* Ensure all possible white backgrounds in details are removed */
[class*="page_speed_"] {
  background-color: transparent !important;
}
