



:root {
  --font-primary: 'Lora', 'Times New Roman', serif;
  --font-secondary: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --color-primary: var(--color-rank-3);
  --color-secondary: var(--color-rank-2);
  --color-accent: var(--color-rank-9);
  --color-surface: var(--color-rank-6);
  --color-surface-alt: var(--color-rank-10);
  --color-text: var(--color-rank-8);
  --color-text-muted: var(--color-rank-5);
  --color-border: var(--color-rank-4);
  --color-white: var(--color-rank-1);
  --shadow-soft: 0 20px 60px var(--color-rank-44);
  --shadow-card: 0 12px 35px var(--color-rank-39);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --transition-base: all 0.25s ease;
}

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

body {
  margin: 0;
  font-family: var(--font-secondary);
  background: var(--color-surface);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1, .h1 { font-size: calc(1.375rem + 1.5vw); }
h2, .h2 { font-size: calc(1.325rem + 0.9vw); }
h3, .h3 { font-size: calc(1.275rem + 0.3vw); }

@media (min-width: 1200px) {
  h1, .h1 { font-size: 2.5rem; }
  h2, .h2 { font-size: 2rem; }
  h3, .h3 { font-size: 1.5rem; }
}

p {
  margin: 0 0 1em;
  color: var(--color-text-muted);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-rank-18);
}

img {
  max-width: 100%;
  display: block;
}

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--color-surface);
}

.section-dark {
  background: linear-gradient(135deg, var(--color-primary), var(--color-rank-12));
  color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rank-13), var(--color-rank-19));
  color: var(--color-white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  box-shadow: var(--shadow-card);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px var(--color-rank-36);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.btn-outline:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.tag {
  display: block;
  text-align: center;
  width: fit-content;
  padding: 6px 14px;
  background: var(--color-rank-31);
  border: 1px solid var(--color-rank-30);
  color: var(--color-secondary);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.section-dark .tag {
  background: var(--color-rank-33);
  border-color: var(--color-rank-40);
  color: var(--color-white);
}

.title-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-image: url("data:image/svg+xml,%3csvg width='100' height='5' viewBox='0 0 100 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0.552734 2.5C0.552734 2.5 24.5527 0.5 49.5527 2.5C74.5527 4.5 99.5527 2.5 99.5527 2.5' stroke='%231f5edb' stroke-width='2'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
}


/* Header */
.topbar {
  background: var(--color-surface-alt);
  color: var(--color-white);
  font-size: 13px;
  padding: 8px 0;
}

.navbar-main {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-bottom: 1px solid var(--color-rank-34);
}

.navbar-brand {
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: medium;
}

.navbar-brand span.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-rank-11));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  box-shadow: 0 10px 28px var(--color-rank-45);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--color-primary);
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
  color: var(--color-secondary);
}

.navbar-nav .nav-link.active {
  color: var(--color-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-rank-37);
}

.navbar-main .btn {
  padding: 10px 20px;
}

.dropdown-menu {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-rank-41);
  box-shadow: var(--shadow-soft);
}

.offcanvas {
  background: linear-gradient(180deg, var(--color-rank-20) 0%, var(--color-rank-21) 100%);
  color: var(--color-white);
}

.offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--color-rank-33);
}

.offcanvas .nav-link {
  color: var(--color-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-rank-37);
}

.offcanvas .dropdown-menu {
  background: var(--color-rank-46);
  border: 1px solid var(--color-rank-42);
}

.offcanvas .dropdown-item {
  color: var(--color-rank-43);
  padding: 10px 16px;
}

.offcanvas .dropdown-item:hover {
  background: var(--color-rank-33);
  color: var(--color-white);
}

.sticky-top.navbar-main {
  position: sticky;
  top: 0px;
  z-index: 1030;
}


/* ===== HERO SLIDER — Noir Luxe ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 20% 50%, var(--color-rank-12) 0%, var(--color-primary) 50%, var(--color-surface-alt) 100%);
  color: var(--color-white);
  overflow: hidden;
  padding: 0;
}

/* Override AOS visibility inside hero so content is always shown */
.hero [data-aos] {
  visibility: visible !important;
}

/* Floating decorative orbs */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(90px);
  opacity: 0.13;
}
.hero-deco--1 {
  width: 600px; height: 600px;
  background: var(--color-secondary);
  top: -200px; right: -100px;
  animation: heroFloat 14s ease-in-out infinite;
}
.hero-deco--2 {
  width: 420px; height: 420px;
  background: var(--color-accent);
  bottom: -150px; left: -100px;
  animation: heroFloat 18s ease-in-out infinite reverse;
}
.hero-deco--3 {
  width: 300px; height: 300px;
  background: var(--color-rank-7);
  top: 40%; left: 45%;
  animation: heroFloat 11s ease-in-out infinite 3s;
}

@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.06); }
  66%      { transform: translate(-20px, 15px) scale(0.94); }
}

/* Swiper overrides */
.hero-swiper {
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.hero .swiper-slide {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 50px 0 30px;
}

/* Grid layout inside each slide */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* Content side */
.hero-content {
  position: relative;
  z-index: 3;
}

/* Headline */
.hero-headline {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

/* Accent line under heading */
.hero-accent-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-rank-7), var(--color-secondary));
  border-radius: 4px;
  margin: 1.5rem 0;
  position: relative;
}
.hero-accent-line::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-rank-7), var(--color-secondary));
  filter: blur(10px);
  opacity: 0.55;
}

/* Description */
.hero-description {
  font-family: var(--font-secondary);
  font-size: 1.08rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin-bottom: 2rem;
}

/* CTA button */
.hero-cta-wrap {
  display: flex;
  gap: 16px;
}
.hero-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  background: linear-gradient(135deg, var(--color-rank-13), var(--color-rank-19));
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.hero-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  color: var(--color-white);
}
.hero-btn-icon {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-btn-cta:hover .hero-btn-icon {
  transform: translateX(5px);
}

/* Visual / image side */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 26px;
  border: 2px solid rgba(255, 255, 255, 0.09);
  z-index: -1;
  transform: rotate(3deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-img-wrapper:hover::before {
  transform: rotate(0deg);
}
.hero-lawyer-img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}
.hero-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}




/* Cards */
.card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  overflow: hidden; /* For image radius */
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card > img,
.card .card-img-top {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.card-service, .card-team, .card-blog {
  height: 100%;
}
.card-blog .badge-accent{
  width: fit-content;
}

.card-service {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid var(--color-rank-34);
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-rank-35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.counter-box {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-rank-35), var(--color-rank-41));
  border: 1px solid var(--color-rank-7);
  text-align: center;
  box-shadow: var(--shadow-card);

}

.team-card img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.team-card {
  padding: 18px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-rank-34);
  box-shadow: var(--shadow-card);
}

/* Stretched Link Cover for Clickable Cards */
.stretched-link-cover::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: var(--color-rank-50);
}

.badge-accent {
  background: var(--color-accent);
  color: var(--color-rank-22);
  border-radius: 12px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
}

.quote-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-rank-34);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  height: 100%;
}

.quote-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.quote-card .author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-card .author span {
  font-weight: 600;
  color: var(--color-text);
}

.cta-block {
  background: linear-gradient(135deg, var(--color-rank-2), var(--color-rank-11));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

footer {
  background: var(--color-surface-alt);
  color: var(--color-white);
  padding: 60px 0 30px;
}

footer a {
  color: var(--color-rank-43);
}

footer a:hover {
  color: var(--color-white);
}

.form-control {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 12px 14px;
}

.form-control:focus {
  box-shadow: 0 0 0 3px var(--color-rank-30);
  border-color: var(--color-secondary);
}

.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--color-secondary);
  background: var(--color-rank-32);
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--color-rank-13), var(--color-rank-11));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-blur {
  backdrop-filter: blur(10px);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.list-check li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.list-check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 2px;
}

.section-testimonials .tag{ 
margin: auto;
}
.title-accent::after{ 
display: none;
}
.section-testimonials .title-accent{ 
margin-bottom: 0;
}

.section-testimonials h2, .section-blog h2, .section-team h2, .section-service h2, .section-cta h2, .section-faq h2, .section-contact h2, .section-about h2  { 
padding-bottom : 0;
margin-bottom: 5px;
}

.card-team h6{ 
  font-size: 24px;
}

.section-team .card {
  box-shadow: none;
}
.section-team .team-swiper {
  padding: 10px 0;
}

/* Editor Content Typography */
.editor-content {
  color: var(--color-text-muted);
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
  
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.editor-content p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.editor-content a {
  color: var(--color-secondary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.editor-content a:hover {
  color: var(--color-primary);
}

.editor-content ul,
.editor-content ol {
  padding-left: 2em;
  margin-bottom: 1rem;
}
.editor-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.editor-content li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.editor-content li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.3em;
  color: var(--color-secondary);
  font-size: 1em;
  line-height: 1;
  display: inline-block;
}

.editor-content blockquote {
  margin: 1rem 0;
  padding: 1em 1.5em;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-surface);
  font-style: italic;
  color: var(--color-text);
}

.editor-content blockquote p {
  margin-bottom: 0;
}

.editor-content img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
}

.make-sticky{
  position: sticky;
  top: 100px;
}

/* Accordion Customization */
.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  color: var(--color-primary);
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px var(--color-rank-30);
  border-color: var(--color-secondary);
}

.accordion-button:not(.collapsed) {
  color: var(--color-secondary);
  background: var(--color-rank-38);
  box-shadow: inset 0 -1px 0 var(--color-border);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230e1f3c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231f5edb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 1.25rem 1.5rem;
}


.lightbox-gallery .gallery-thumb-effect {
  cursor: pointer;
  transition: transform .17s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.lightbox-gallery .gallery-thumb-effect img {
  display: block;
  transition: transform .17s cubic-bezier(.4,0,.2,1);
}
.lightbox-gallery .gallery-overlay {
  transition: background .17s cubic-bezier(.4,0,.2,1), opacity .17s;
  background: var(--color-rank-51);
  color: var(--color-rank-1);
  font-size: 2rem;
  opacity: 0;
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
}

.lightbox-gallery .gallery-thumb-effect:hover .gallery-overlay {
  opacity: 1;
  background: var(--color-rank-52);
  border-radius: 0.5rem;
}
.lightbox-gallery .gallery-icon {
  filter: drop-shadow(0 2px 8px var(--color-rank-53));
  font-size: 1.2rem;
  pointer-events: none;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


/* Contact Card */
.contact-card {
  padding: 1.5rem;
  text-align: center;
  border-color: var(--color-border);
}

.contact-card-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-rank-31);
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin: auto;
}

/* Breadcrumb Bar */
.breadcrumb-bar {
  background-color: var(--color-surface);
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb-bar h1 {
  margin-bottom: 0.25em;
  font-size: 2.25rem;
}

.breadcrumb {
  --bs-breadcrumb-divider: '>';
  --bs-breadcrumb-divider-color: var(--color-border);
  --bs-breadcrumb-item-active-color: var(--color-text);
  font-family: var(--font-secondary);
  font-weight: 500;
  gap: 0.5rem;
}

.breadcrumb-item a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumb-item a:hover {
  color: var(--color-secondary);
}

.breadcrumb-item+.breadcrumb-item::before {
  padding-right: .5rem;
}
.footer-title {
  color: var(--color-rank-1);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .5px;
  margin-bottom: 1rem!important;
  background: linear-gradient(90deg, var(--color-rank-2) 25%, var(--color-rank-7) 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-contact-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.footer-contact-list li {
  margin-bottom: 0.5rem;
  color: var(--color-rank-1);
}
.footer-contact-list li:last-child {
  margin-bottom: 0;
}
.footer-contact-list a {
  color: var(--color-rank-1);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-contact-list a:hover {
  color: var(--color-rank-2);
}
/* Hero tag — glassmorphic pill */
.hero-tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--color-rank-1);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.hero-tag-dark::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rank-7);
  box-shadow: 0 0 14px var(--color-rank-7);
  flex-shrink: 0;
  animation: heroPulse 2s ease-in-out infinite;
}
.hero-tag-dark .fw-semibold {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 1.8px;
  text-shadow: none;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}


/* Responsive */
@media (max-width: 991.98px) {
  .section {
    padding: 70px 0;
  }
  .hero {
    min-height: auto;
  }
  .hero .swiper-slide {
    min-height: auto;
    padding: 100px 0 80px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    display: none;
  }
  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-tag-dark {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-accent-line {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-wrap {
    justify-content: center;
  }
  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
  .sticky-top.navbar-main.shadow-soft {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1030;
    /* Yumuşak bir giriş için hafifçe yukarıdan kaydırabilirsiniz */
  animation: slideDown 0.4s ease-out;
  }

  @keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

  html, body {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }


  
}

@media (max-width: 575.98px) {
  .hero .swiper-slide {
    padding: 80px 0 60px;
  }
  .hero-tag-dark {
    font-size: 0.72rem;
    padding: 8px 16px;
    gap: 8px;
    letter-spacing: 1.2px;
  }
  .hero-headline {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .hero-description {
    font-size: 0.98rem;
  }
  .hero-btn-cta {
    padding: 14px 26px;
    font-size: 0.9rem;
  }
  .hero-deco--1,
  .hero-deco--2,
  .hero-deco--3 {
    display: none;
  }
}



/* Language Dropdown */
.lang-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
}

.lang-dropdown .nav-link:hover {
  border-color: var(--color-secondary);
  background: var(--color-rank-38);
}

.lang-dropdown .dropdown-menu {
  min-width: 140px;
}

.lang-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}

.lang-dropdown .dropdown-item.active,
.lang-dropdown .dropdown-item:active {
  background: var(--color-rank-31);
  color: var(--color-secondary);
}

.lang-dropdown .dropdown-item:hover {
  background: var(--color-rank-32);
}

/* Flag icons placeholder - using emoji flags */
.lang-dropdown .dropdown-item::before {
  margin-right: 8px;
  font-size: 16px;
}

.lang-dropdown .dropdown-item[data-lang="tr"]::before {
  content: "🇹🇷";
}

.lang-dropdown .dropdown-item[data-lang="de"]::before {
  content: "🇩🇪";
}

.lang-dropdown .dropdown-item[data-lang="en"]::before {
  content: "🇬🇧";
}

.lang-dropdown .dropdown-item span.fi {
  display: none;
}

/* Mobile offcanvas language dropdown */
.offcanvas .lang-dropdown {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-rank-33);
}

.offcanvas .lang-dropdown .nav-link {
  border-color: var(--color-rank-40);
  color: var(--color-white);
  justify-content: space-between;
  width: 100%;
}

.offcanvas .lang-dropdown .nav-link:hover {
  border-color: var(--color-rank-56);
  background: var(--color-rank-37);
}

.offcanvas .lang-dropdown .dropdown-menu {
  width: 100%;
  background: var(--color-rank-42);
  border: 1px solid var(--color-rank-57);
}

.offcanvas .lang-dropdown .dropdown-item {
  color: var(--color-rank-58);
}

.offcanvas .lang-dropdown .dropdown-item:hover {
  background: var(--color-rank-33);
  color: var(--color-white);
}

.offcanvas .lang-dropdown .dropdown-item.active {
  background: var(--color-rank-36);
  color: var(--color-white);
}

@media (max-width: 991.98px) {
  .lang-dropdown .lang-menu {
    position: static !important;
    transform: none !important;
    margin-top: 0.5rem;
  }
}
/* AOS Animation Enhancements */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom AOS animations for better performance */
[data-aos="fade-up"] {
  transform: translate3d(0, 40px, 0);
}

[data-aos="fade-down"] {
  transform: translate3d(0, -40px, 0);
}

[data-aos="fade-left"] {
  transform: translate3d(40px, 0, 0);
}

[data-aos="fade-right"] {
  transform: translate3d(-40px, 0, 0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Performance optimizations for AOS */
.aos-animate {
  will-change: transform, opacity;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced card hover effects with AOS */
.card-service:hover,
.card-team:hover,
.card-blog:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

/* Loading state for AOS elements */
[data-aos]:not(.aos-animate) {
  visibility: hidden;
}

[data-aos].aos-animate {
  visibility: visible;
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 45px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 45px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-59);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-23);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-60);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--color-primary);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--color-primary);

    color: var(--color-white);

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease-in-out;
}

.cookie-button:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-24);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-1);
    background-color: var(--color-primary);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-1);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.navbar-brand img, footer .footer-logo img{
  object-position: left;
  object-fit: contain;
}
/* Hero Pagination — bar style */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.hero-swiper .swiper-pagination-bullet {
  width: 36px;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.hero-swiper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.55);
}
.hero-swiper .swiper-pagination-bullet-active {
  width: 56px;
  background: linear-gradient(90deg, var(--color-rank-7), rgba(255, 255, 255, 0.95));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}


.card-service .icon-circle img {
  width: 20px;
  height: auto;
  object-fit: contain;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3 !important;
}

.aspect-1-1 {
  aspect-ratio: 1 / 1 !important;
}


            .custom-pagination {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                margin-top: 2rem;
                list-style: none;
                padding: 0;
            }
            .custom-pagination li {
                display: inline-block;
            }
            .custom-pagination .page-link {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: none;
                background: var(--color-rank-25);
                color: var(--color-rank-2);
                font-weight: 500;
                transition: background 0.22s, color 0.22s, box-shadow 0.22s;
                box-shadow: 0 2px 10px var(--color-rank-63);
                cursor: pointer;
                text-decoration: none;
                font-size: 1.1rem;
            }
            .custom-pagination .page-link svg,
            .custom-pagination .page-link i {
                font-size: 1.1rem;
            }
            .custom-pagination .active .page-link {
                background: linear-gradient(90deg, var(--color-rank-2) 30%, var(--color-rank-7) 100%);
                color: var(--color-rank-1);
                box-shadow: 0 4px 16px var(--color-rank-35);
                pointer-events: none;
            }
            .custom-pagination .disabled .page-link {
                background: var(--color-rank-26);
                color: var(--color-rank-27);
                pointer-events: none;
                box-shadow: none;
            }
            .custom-pagination .page-link:hover:not(.disabled):not(.active) {
                background: var(--color-rank-28);
                color: var(--color-rank-29);
                text-decoration: none;
            }
            @media (max-width: 480px) {
                .custom-pagination .page-link { width:32px;height:32px;font-size:.98rem;}
            }


.no-results{
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition-base);
    overflow: hidden;
    background: var(--color-white);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-lg);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-muted);
}


/* Blog Sidebar - Genel Stil */
.blog-sidebar .card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.blog-sidebar .card:hover {
  box-shadow: var(--shadow-soft);
}

.blog-sidebar .card h6 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-rank-31);
  position: relative;
}

.blog-sidebar .card h6::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-rank-7));
  border-radius: 2px;
}

/* Kategoriler Listesi */
.blog-sidebar .card ul.list-unstyled {
  margin: 0;
  padding: 0;
}

.blog-sidebar .card ul.list-unstyled li {
  margin-bottom: 0.5rem;
  transition: var(--transition-base);
}

.blog-sidebar .card ul.list-unstyled li:last-child {
  margin-bottom: 0;
}

.blog-sidebar .card ul.list-unstyled li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
  background: transparent;
}

.blog-sidebar .card ul.list-unstyled li a i {
  font-size: 0.75rem;
  color: var(--color-secondary);
  opacity: 0.6;
  transition: var(--transition-base);
  margin-right: 0.5rem;
}

.blog-sidebar .card ul.list-unstyled li a:hover {
  background: var(--color-rank-32);
  color: var(--color-primary);
  padding-left: 18px;
  transform: translateX(4px);
}

.blog-sidebar .card ul.list-unstyled li a:hover i {
  opacity: 1;
  color: var(--color-secondary);
  transform: translateX(2px);
}

/* Aktif Kategori */
.blog-sidebar .card ul.list-unstyled li.active a {
  background: linear-gradient(135deg, var(--color-rank-35), var(--color-rank-32));
  color: var(--color-primary);
  font-weight: 600;
  border-left: 3px solid var(--color-secondary);
  padding-left: 11px;
}

.blog-sidebar .card ul.list-unstyled li.active a i {
  opacity: 1;
  color: var(--color-secondary);
}

/* Son Yazılar Listesi */
.blog-sidebar .card ul.list-unstyled li.mb-3 {
  margin-bottom: 1.25rem !important;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-rank-34);
}

.blog-sidebar .card ul.list-unstyled li.mb-3:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-sidebar .card ul.list-unstyled li.mb-3 a {
  display: block;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition-base);
}

.blog-sidebar .card ul.list-unstyled li.mb-3 a:hover {
  color: var(--color-secondary);
  transform: none;
  padding-left: 0;
  background: transparent;
}

.blog-sidebar .card ul.list-unstyled li.mb-3 .small {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-sidebar .card ul.list-unstyled li.mb-3 .small::before {
  content: '\f073';
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-secondary);
  opacity: 0.7;
}

/* Blog Detail Bottom - Minimalist Tasarım */
.blog-detail-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

/* Tarih Bilgisi */
.blog-detail-bottom .date-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.blog-detail-bottom .date-info i {
  color: var(--color-secondary);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Paylaşım Bilgisi */
.blog-detail-bottom .share-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-detail-bottom .share-info .lable {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sosyal Medya Butonları - Minimalist */
.blog-detail-bottom .social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-detail-bottom .social li {
  margin: 0;
}

.blog-detail-bottom .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: var(--transition-base);
  text-decoration: none;
}

.blog-detail-bottom .social li a i {
  font-size: 0.9rem;
  transition: var(--transition-base);
}

/* Facebook Hover */
.blog-detail-bottom .social li a:hover[href*="facebook"] {
  background: var(--color-rank-14);
  border-color: var(--color-rank-14);
  color: var(--color-rank-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-rank-64);
}

/* Twitter/X Hover */
.blog-detail-bottom .social li a:hover[href*="twitter"],
.blog-detail-bottom .social li a:hover[href*="x-twitter"] {
  background: var(--color-rank-15);
  border-color: var(--color-rank-15);
  color: var(--color-rank-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-rank-65);
}

/* LinkedIn Hover */
.blog-detail-bottom .social li a:hover[href*="linkedin"] {
  background: var(--color-rank-16);
  border-color: var(--color-rank-16);
  color: var(--color-rank-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-rank-66);
}

/* WhatsApp Hover */
.blog-detail-bottom .social li a:hover[href*="whatsapp"] {
  background: var(--color-rank-17);
  border-color: var(--color-rank-17);
  color: var(--color-rank-1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--color-rank-67);
}

/* Responsive */
@media (max-width: 575.98px) {
  .blog-detail-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .blog-detail-bottom .share-info {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .blog-detail-bottom .social {
    flex: 1;
    justify-content: flex-start;
  }
}


/* Services Sidebar - Minimalist Tasarım */
.services-sidebar .card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
  overflow: hidden;
}

.services-sidebar .card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.services-sidebar .card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-rank-31);
  position: relative;
}

.services-sidebar .card h5::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-rank-7));
  border-radius: 2px;
}

/* İlgili Hizmetler Listesi */
.services-sidebar .card ul.list-unstyled {
  margin: 0;
  padding: 0;
}

.services-sidebar .card ul.list-unstyled li {
  margin-bottom: 0.5rem;
  transition: var(--transition-base);
}

.services-sidebar .card ul.list-unstyled li:last-child {
  margin-bottom: 0;
}

.services-sidebar .card ul.list-unstyled li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
  background: transparent;
  text-decoration: none;
}

.services-sidebar .card ul.list-unstyled li a::before {
  content: '→';
  margin-right: 0.75rem;
  color: var(--color-secondary);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-base);
  font-weight: 600;
}

.services-sidebar .card ul.list-unstyled li a:hover {
  background: var(--color-rank-32);
  color: var(--color-primary);
  padding-left: 18px;
  transform: translateX(4px);
}

.services-sidebar .card ul.list-unstyled li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Aktif Hizmet */
.services-sidebar .card ul.list-unstyled li.active a {
  background: linear-gradient(135deg, var(--color-rank-35), var(--color-rank-32));
  color: var(--color-primary);
  font-weight: 600;
  border-left: 3px solid var(--color-secondary);
  padding-left: 11px;
}

.services-sidebar .card ul.list-unstyled li.active a::before {
  opacity: 1;
  transform: translateX(0);
}

/* Acil Destek Kartı */
.services-sidebar .card:last-child {
  background: linear-gradient(135deg, var(--color-rank-38), var(--color-rank-68));
  border-color: var(--color-rank-30);
}

.services-sidebar .card:last-child h5 {
  color: var(--color-primary);
  border-bottom-color: var(--color-rank-30);
}

.services-sidebar .card:last-child p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.services-sidebar .card:last-child .btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  box-shadow: 0 4px 12px var(--color-rank-69);
}

.services-sidebar .card:last-child .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--color-rank-36);
}

/* Responsive */
@media (max-width: 991.98px) {
  .services-sidebar {
    margin-top: 2rem;
  }
  
  .services-sidebar .card {
    margin-bottom: 1.5rem;
  }
}

.custom-icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-secondary);
  margin: 0 auto;
  display: block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.card-service .icon-circle i {
  width: 20px;
  height: 20px;

}