/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Child theme for Hello Elementor.
Template: hello-elementor
Version: 1.0
Text Domain: hello-elementor-child
*/

/* Add your custom CSS below this line */



/* Load Montserrat font variables */
:root {
  --font-montserrat: "Montserrat", sans-serif;
}

/* Global typography - safer version */
body,
button,
input,
textarea,
select {
  font-family: var(--font-montserrat);
}

h1, h2, h3, h4, h5, h6,
p, a, li,
label, small, strong, em,
.elementor-heading-title {
  font-family: var(--font-montserrat);
}

/* Keep Elementor widgets inheriting from parent instead of forcing all */
.elementor,
.elementor-widget {
  font-family: inherit;
}

/* FIX: WP Admin Bar icons (Dashicons) showing as squares */
#wpadminbar .ab-icon,
#wpadminbar .ab-icon:before,
#wpadminbar .ab-item:before,
#wpadminbar .dashicons,
#wpadminbar [class*="dashicons-"]:before {
  font-family: dashicons !important;
}













/* for all H1 heading */
.elementor-heading-title.gradient-heading {
  background: linear-gradient(90deg, #9333EA 0%, #7E22CE 50%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}



.container {
  background: linear-gradient(135deg, #111827, #581C87, #1E3A8A);
}













/* Hover background + lift (same effect, but for hover/active too) */
.elementor-iconlines:hover,
.elementor-iconlines:active,
.elementor-iconlines:focus-within { 
  background: linear-gradient(
    90deg,
    rgba(239, 246, 255, 0.3) 0%,
    rgba(255, 247, 237, 0.3) 100%
  );
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}



@media (max-width: 767px) {
  .elementor-iconlines .elementor-icon-box-wrapper {
    flex-direction: row !important;
    text-align: left !important;
  }
  .elementor-iconlines .elementor-icon-box-icon {
    order: 0 !important;
    margin-right: 0.5em !important;
    margin-left: 0 !important;
  }
  .elementor-iconlines .elementor-icon-box-content {
    order: 1 !important;
    text-align: left !important;
  }
}


.elementor-iconlines .elementor-icon-box-icon,
.elementor-iconlines .elementor-icon {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

/* Hide the real icon glyph (same as yours) */
.elementor-iconlines .elementor-icon i,
.elementor-iconlines .elementor-icon svg {
  color: transparent !important;
  fill: transparent !important;
  stroke: transparent !important;
  opacity: 0 !important;
  width: 1em; 
  height: 1em;
}

/* Draw the vertical line - BUT COLOR... */
.elementor-iconlines .elementor-icon-box-icon::before,
.elementor-iconlines .elementor-icon::before {
  content: "";
  position: absolute;
  left: 50% !important;
  top: 50%;
  transform: translate(-50%, -50%);
   height: var(--eil-height, 135%);
  border-radius: 2px;

  /* NO default color here */
  background-image:
    linear-gradient(var(--eil-a, transparent), var(--eil-b, transparent)),
    linear-gradient(to bottom, transparent 0%, var(--eil-shine, transparent) 50%, transparent 100%);
  background-size: 100% 100%, 100% 35%;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, 0 150%;
  pointer-events: none;
  will-change: background-position;
  opacity: var(--eil-on, 0); /* OFF by default */
}

/* Hover shimmer */
.elementor-iconlines:hover .elementor-icon-box-icon::before,
.elementor-iconlines:hover .elementor-icon::before {
  animation: eilShimmer 1.2s ease-in-out infinite;
}





/* Center fix: move the line up/down */
.elementor-iconlines{
--eil-y: -1px;   /* change this: - moves UP, + moves DOWN */
}

/* Apply the offset */
.elementor-iconlines .elementor-icon-box-icon::before,
.elementor-iconlines .elementor-icon::before{
  top: 50% !important;
  transform: translate(-50%, -50%) translateY(var(--eil-y)) !important;
}
/* Force same thickness on NORMAL + HOVER + ACTIVE */
.elementor-iconlines{
  --eil-width: 5px;     /* change thickness here */
  --eil-height: 155%;   /* keep your height */
}

.elementor-iconlines .elementor-icon-box-icon::before,
.elementor-iconlines .elementor-icon::before{
  width: var(--eil-width) !important;
  height: var(--eil-height) !important;
}

.line-green{
  --eil-on: 1;
  --eil-a: #22C55E;
  --eil-b: #059669;
  --eil-shine: #86EFAC;

/* Soft professional green hover background */
  --box-bg-hover: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.10) 0%,
    rgba(16, 185, 129, 0.08) 45%,
    rgba(236, 253, 245, 0.85) 100%
  );
}
/* Use per-box hover background variable */
.elementor-iconlines:hover,
.elementor-iconlines:active,
.elementor-iconlines:focus-within{
  background: var(--box-bg-hover, linear-gradient(
    90deg,
    rgba(239, 246, 255, 0.3) 0%,
    rgba(255, 247, 237, 0.3) 100%
  )) !important;
}



/* FULL ICON BOX CLICKABLE — SAFE */

.elementor-iconlines{
  position: relative;
}

/* Stretch the existing link over the full box */
.elementor-iconlines a::after{
  content: "";
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 2;           /* keep low to avoid conflicts */
  background: transparent;
}









/* Icon + Arrow variables */
.elementor-iconlines{
  --icon-color: var(--eil-a, #2563EB);
  --arr-color: var(--icon-color);
}

/* Arrow */
.elementor-iconlines::after{
  content: "➜";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) translateX(-6px);
  font-size: 18px;
  line-height: 1;
  color: var(--arr-color);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  z-index: 3;
	font-size: 15px;
font-weight: 400;

}

.elementor-iconlines:hover::after,
.elementor-iconlines:focus-within::after{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Icon color (font + svg + svg children) */
.elementor-iconlines .elementor-icon,
.elementor-iconlines .elementor-icon i{
  color: var(--icon-color) !important;
}

.elementor-iconlines .elementor-icon svg{
  fill: var(--icon-color) !important;
  stroke: var(--icon-color) !important;
}

.elementor-iconlines .elementor-icon svg *{
  fill: var(--icon-color) !important;
  stroke: var(--icon-color) !important;
}
























.container-animated {
  border: 3px solid transparent;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.container-animated:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  animation: boxBorderMove 4s linear infinite;
}

@keyframes boxBorderMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===============================
   ICON 1
================================= */
.icon-style-1 .elementor-icon {
  color: #fff !important;
  position: relative;
  transition: transform 0.4s ease;
}

.container-animated:hover .icon-style-1 .elementor-icon {
  transform: translateY(-5px) rotate(5deg);
  animation: borderMove 3s linear infinite;
}

@keyframes borderMove {
  0%   { background-image: linear-gradient(90deg, #22C55E 0%, #059669 100%), linear-gradient(0deg, #22C55E, #059669, #22C55E); }
  50%  { background-image: linear-gradient(90deg, #22C55E 0%, #059669 100%), linear-gradient(180deg, #22C55E, #059669, #22C55E); }
  100% { background-image: linear-gradient(90deg, #22C55E 0%, #059669 100%), linear-gradient(360deg, #22C55E, #059669, #22C55E); }
}

.icon-style-1 .elementor-icon::after,
.icon-style-1 .elementor-icon::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

.icon-style-1 .elementor-icon::after {
  top: 90%;
  left:-7px;
  width: 7px;
  height: 7px;
  background: linear-gradient(to right, #60A5FA, #A78BFA);
}

.icon-style-1 .elementor-icon::before {
  top: 15%;
  right: -5px;
  width: 8px;
  height: 8px;
  background: linear-gradient(to right, #FACC15, #FB923C);
}

.container-animated:hover .icon-style-1 .elementor-icon::after {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
}

.container-animated:hover .icon-style-1 .elementor-icon::before {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes float {
  0% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-55%) translateX(3px) scale(1.1); }
  100% { transform: translateY(-50%) translateX(0) scale(1); }
}

.icon-style-1 .elementor-icon,
.container-animated .icon-style-1 .elementor-icon {
  box-shadow: none !important;
}

/* ===============================
   ICON LINES
================================= */
.icon-lines .elementor-icon {
  transition: all 0.4s ease;
}

/* When the container is hovered */
.container-animated:hover .icon-lines .elementor-icon {
  background: linear-gradient(90deg, #9333EA 0%, #7E22CE 50%, #2563EB 100%);
  color: #fff;
  border-radius: 50%;
  transform: translateY(-5px) rotate(5deg);
}

/* STOP changing actual icon */
.container-animated:hover .icon-lines .elementor-icon {
  transform: none !important;
  animation: none !important;
  background: none !important;
  border-radius: inherit !important;
}

/* Keep ICON BOX background */
.container-animated:hover .icon-lines {
  background: linear-gradient(
    90deg,
    rgba(239, 246, 255, 0.3) 0%,
    rgba(255, 247, 237, 0.3) 100%
  ) !important;
}

/* Keep SHIMMER on thin line */
.container-animated:hover .icon-lines .elementor-icon-box-icon::before,
.container-animated:hover .icon-lines .elementor-icon::before {
  animation: eilShimmer 1.6s ease-in-out infinite !important;
}












/* ================= Base hexagon icon ================= */

/* reset wrapper (IMPORTANT for frontend) */
.elementor-iconpur .elementor-icon-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* icon */
.elementor-iconpur .elementor-icon {
  width: 80px;
  height: 67px;

  min-width: unset !important;
  min-height: unset !important;

  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;

  background: linear-gradient(90deg, #A855F7 0%, #7C3AED 100%) !important;
  color: #fff !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );

  position: relative;
  overflow: visible !important;
  isolation: isolate;

  transition: transform .4s ease, box-shadow .4s ease;
}

/* ================= ICON SIZE FIX (SVG + Font) ================= */

.elementor-iconpur .elementor-icon i,
.elementor-iconpur .elementor-icon svg,
.elementor-iconpur .elementor-icon .e-font-icon-svg {
  font-size: 22px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  margin: 0 !important;

  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* ================= Hover lift ================= */

.elementor-iconpur .elementor-icon:hover,
.elementor-box-animatedpur:hover .elementor-iconpur .elementor-icon {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(168, 85, 247, 0.3);
}

/* ================= MOBILE FIX ================= */

@media (max-width: 767px) {
  .elementor-iconpur .elementor-icon {
    width: 60px;
    height: 50px;
  }

  .elementor-iconpur .elementor-icon i,
  .elementor-iconpur .elementor-icon svg {
    font-size: 28px !important;
  }
}









/* Heading header base */
.arrow-heading {
    position: relative;
    display: inline-block;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

/* Arrow hidden by default */
.arrow-heading::after {
    content: "➜";
    position: absolute;
    top: 50%;
    left: 100%;

    /* ➜ Pull arrow closer to text */
    margin-left: -2px;

    transform: translateY(-55%);
    opacity: 0;
    transition: all 0.3s ease;
    line-height: 0;

    color: #9333EA;
}

/* Hover animation */
.arrow-heading:hover {
    padding-left: 5px;
}

.arrow-heading:hover::after {
    opacity: 1;

    /* Final position (still close) */
    margin-left: 6px;
}









































  


.elementor-icon2 .elementor-icon {
  background: linear-gradient(90deg, #3B82F6 0%, #0891B2 100%) !important;
  color: #fff !important;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elementor-icon2 .elementor-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25); /* Softer blue glow */
}

.elementor-icon2 .elementor-icon::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -15px;
  width: 10px;
  height: 10px;
  background: #3B82F6;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

.elementor-icon2 .elementor-icon::before {
  content: "";
  position: absolute;
  top: 85%;
  right: -15px;
  width: 8px;
  height: 8px;
  background: #3B82F6;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

/* Show balls and animate on hover */
.elementor-icon2 .elementor-icon:hover::after {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
}

.elementor-icon2 .elementor-icon:hover::before {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes float {
  0% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-55%) translateX(3px) scale(1.1); }
  100% { transform: translateY(-50%) translateX(0) scale(1); }
}


.elementor-icon3 .elementor-icon {
  background: linear-gradient(90deg, #A855F7 0%, #7C3AED 100%) !important;
  color: #fff !important;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elementor-icon3 .elementor-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.25); /* Softer violet glow */
}

.elementor-icon3 .elementor-icon::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -15px;
  width: 10px;
  height: 10px;
  background: #A855F7;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

.elementor-icon3 .elementor-icon::before {
  content: "";
  position: absolute;
  top: 85%;
  right: -15px;
  width: 8px;
  height: 8px;
  background: #A855F7;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

.elementor-icon3 .elementor-icon:hover::after {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
}

.elementor-icon3 .elementor-icon:hover::before {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes float {
  0% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-55%) translateX(3px) scale(1.1); }
  100% { transform: translateY(-50%) translateX(0) scale(1); }
}

 
.elementor-icon4 .elementor-icon {
  background: linear-gradient(90deg, #F97316 0%, #DC2626 100%) !important;
  color: #fff !important;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.elementor-icon4 .elementor-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25); /* Softer red glow */
}

.elementor-icon4 .elementor-icon::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -15px;
  width: 10px;
  height: 10px;
  background: #F97316;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

.elementor-icon4 .elementor-icon::before {
  content: "";
  position: absolute;
  top: 85%;
  right: -15px;
  width: 8px;
  height: 8px;
  background: #DC2626;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
}

.elementor-icon4 .elementor-icon:hover::after {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
}

.elementor-icon4 .elementor-icon:hover::before {
  opacity: 1;
  animation: float 2s ease-in-out infinite;
  animation-delay: 0.3s;
}

@keyframes float {
  0% { transform: translateY(-50%) translateX(0) scale(1); }
  50% { transform: translateY(-55%) translateX(3px) scale(1.1); }
  100% { transform: translateY(-50%) translateX(0) scale(1); }
}


.chart-bar {
  transition: height 1s ease-in-out;
  height: 0;
}

.chart-bar[data-height] {
  height: 0;
  animation: chartAnimation 2s forwards;
}

@keyframes chartAnimation {
  0% {
    height: 0;
  }
  100% {
    height: var(--height, 0);
  }
}

.chart-bar:nth-child(1) {
  --height: 25%;
}

.chart-bar:nth-child(2) {
  --height: 40%;
}

.chart-bar:nth-child(3) {
  --height: 30%;
}

.chart-bar:nth-child(4) {
  --height: 65%;
}

.chart-bar:nth-child(5) {
  --height: 50%;
}







h1, .elementor-widget-post-title {
  color: #000 !important;
  display: block !important;
  visibility: visible !important;
}













/* Basic tag style */
.tm-blog-card .elementor-heading-title a[rel~="tag"] {
  display: inline-block !important;
  padding: 10px 10px;
  border-radius: 50px; /* pill shape */
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  background-color: #F1F5F9; /* light gray */
  color: #9333EA !important; /* text color */
	
  
  transition: all 0.3s ease;
}

/* Hover effect */
.tm-blog-card a[rel~="tag"]:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}










/* Remove underline from Elementor buttons only */
.elementor-button,
.elementor-button:visited,
.elementor-button:hover,
.elementor-button:focus,
.elementor-button-link {
  text-decoration: none !important;
}

/* Remove underline from links inside headings only */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none !important;
}








/* for green icons */
/* BOX (container) */
.narrow-line {
  transition: transform 0.4s ease; 
  overflow: visible; /* important: don't clip the dots */
}

/* ICON base with green gradient */
.elementor-icon111 .elementor-icon {
  background: linear-gradient(90deg, #22C55E 0%, #059669 100%) !important;
  color: #fff !important;
  position: relative;
  
  overflow: visible;
  z-index: 1;
}



/* Floating green balls */
.elementor-icon111 .elementor-icon::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -15px;
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  opacity: 0;
  
  pointer-events: none;
}
.elementor-icon111 .elementor-icon::before {
  content: "";
  position: absolute;
  top: 85%;
  right: -15px;
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  opacity: 0;
  
  pointer-events: none;
}






/* ICON base */
.elementor-icon2 .elementor-icon {
  background: linear-gradient(90deg, #3B82F6 0%, #0891B2 100%) !important;
  color: #fff !important;
  position: relative;
  
  overflow: visible; /* let the pseudo dots show outside */
  z-index: 1;
}


/* Floating dots */
.elementor-icon2 .elementor-icon::after {
  content: "";
  position: absolute;
  top: 10%;
  left: -15px;
  width: 10px;
  height: 10px;
  background: #3B82F6;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: all 0.4s ease;
  pointer-events: none;
}
.elementor-icon2 .elementor-icon::before {
  content: "";
  position: absolute;
  top: 85%;
  right: -15px;
  width: 8px;
  height: 8px;
  background: #3B82F6;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}





/* for purple icons */
/* BOX (container) */


/* ICON base with purple gradient */
.elementor-icon3 .elementor-icon {
  background: linear-gradient(90deg, #A855F7 0%, #7C3AED 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: visible;
  z-index: 1;
}










/* ICON base with orange-red gradient */
.elementor-icon4 .elementor-icon {
  background: linear-gradient(90deg, #F97316 0%, #DC2626 100%) !important;
  color: #fff !important;
  position: relative;
  overflow: visible;
  z-index: 1;
}











/* Prices purple Gradient code*/

/* Gradient box background + border */
.elementor-box-gradient {
  background: linear-gradient(90deg, #FAF5FF 0%, #EFF6FF 100%);
  border: 4px solid transparent; /* thickness of border */
  border-radius: 12px; /* adjust corner roundness */
  padding: 20px; /* space inside */
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: 
    linear-gradient(90deg, #FAF5FF 0%, #EFF6FF 100%),  /* inner background */
    linear-gradient(90deg, #9333EA 0%, #7E22CE 50%, #2563EB 100%); /* border gradient */
}












/* Main white button styling */
.buttonon {
  border: none;
  border-radius: 8px; 
  transition: transform 0.4s ease;
  cursor: pointer;
}

/* Hover effect */
.buttonon:hover {
   
  border: none;
  transform: translateY(-8px);
}

/* Icon movement */
.buttonon .elementor-button-icon {
  transition: transform 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}

/* Slide icon to the right on hover */
.buttonon:hover .elementor-button-icon {
  transform: translateX(5px);
}




/* Main purple button */
.purplebutton {
  background: linear-gradient(90deg, #9333EA 0%, #7E22CE 50%, #2563EB 100%);
  color: #fff;
  border: none;
 
  overflow: visible;
  cursor: pointer;
}

/* Hover effect */
.purplebutton:hover {
  background: linear-gradient(90deg, #2563EB 0%, #7E22CE 50%, #9333EA 100%);
  
}

/* Icon animation */
.purplebutton .e-font-icon-svg.e-fas-arrow-right {
  display: inline-block;
  position: relative;
}

/* Icon moves right on hover */
.purplebutton:hover .e-font-icon-svg.e-fas-arrow-right {
  transform: translateX(8px);
}











































 

/* Hide author name decoration underline from blog */
.elementor-author-box__name a,
.elementor-post-author a,
.elementor-post-info__author a,
.elementor-widget-post-info a {
  text-decoration: none !important;
}

.elementor-author-box__name a:hover,
.elementor-post-author a:hover,
.elementor-post-info__author a:hover,
.elementor-widget-post-info a:hover {
  text-decoration: none !important;
}


/* for tabs text bullets */
.custom-text-editor ul {
  list-style: none;

	
  margin: 20px 0;
}

.custom-text-editor ul li {
  position: relative;
  padding-left: 30px !important;
  color: #000 !important;
  line-height: 1.8 !important;
  margin-bottom: 10px !important;
}

.custom-text-editor ul li:last-child {
  margin-bottom: 0 !important;
}

/* Custom bullet */
.custom-text-editor ul li::before {
content: "•";

  position: absolute;
  left: 0;
  top: 35%;
  transform: translateY(-50%);
  color: #673DE6;
  font-size: 70px;
  line-height: 1;
}

/* Paragraph spacing */
.custom-text-editor p {
  margin: 0 0 15px 0 !important;
}

/* Headings spacing */
.custom-text-editor .elementor-heading-title,
.custom-text-editor h1,
.custom-text-editor h2,
.custom-text-editor h3,
.custom-text-editor h4,
.custom-text-editor h5,
.custom-text-editor h6 {
  margin: 0 0 30px 0 !important;
}

/* Links underline purple */
.custom-text-editor a {
  color: #000 !important;
  text-decoration: underline !important;
  text-decoration-color: #673DE6 !important;
 
}

.custom-text-editor a:hover {
  color: #000 !important;
  text-decoration-color: #673DE6 !important;
}

/* Images spacing */
.custom-text-editor img {
  display: block;
  margin: 0 0 40px 0 !important;
}

/* Clean ending */
.custom-text-editor > *:last-child {
  margin-bottom: 0 !important;
}

@media (min-width: 1025px){

.custom-text-editor {
  background-color: #ffffff;
  border: 1.5px solid #673DE6;
  border-radius: 12px;
}

/* Inner spacing */
.custom-text-editor > * {
  padding-left: 60px;
  padding-right: 60px;
}

.custom-text-editor > *:first-child {
  padding-top: 55px;
}

.custom-text-editor > *:last-child {
  padding-bottom: 60px;
}

}


@media (max-width: 1024px){
  .custom-text-editor {
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .custom-text-editor > * {
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================
   ELEMENTOR NESTED TABS - MOBILE
   ACTIVE TAB CONTENT ONLY
   Scoped to: .my-mobile-tabs A VERTICAL PURPLE LINE
   ========================================= */

@media (max-width: 1024px){

  /* Visible (active) content container */
  .my-mobile-tabs.elementor-widget-n-tabs 
  .e-n-tabs-content:not([hidden]) > .e-con,
  .my-mobile-tabs.elementor-widget-n-tabs 
  .e-n-tabs-content:not([hidden]) > .e-con > .e-con-inner{
    background: #ffffff !important;   /* light purple background */
    padding-left: 9px !important;
    position: relative !important;
  }

  /* Purple left vertical line (active only) */
  .my-mobile-tabs.elementor-widget-n-tabs 
  .e-n-tabs-content:not([hidden]) > .e-con::before,
  .my-mobile-tabs.elementor-widget-n-tabs 
  .e-n-tabs-content:not([hidden]) > .e-con > .e-con-inner::before{
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: #673DE6!important;
  }

}



/* =========================================
   ELEMENTOR NESTED TABS - MOBILE
   CHEVRON ARROW (IMAGE STYLE)
   ========================================= */

@media (max-width: 1024px){

  /* Tab title base */
  .my-mobile-tabs .e-n-tab-title{
    position: relative;
    padding-right: 42px !important; /* space for arrow */
  }

  /* Chevron arrow (default = DOWN) */
  .my-mobile-tabs .e-n-tab-title::after{
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
	
	/* OUTER BORDER ONLY FOR TAB TITLES */


  /* Active tab = UP arrow */
  .my-mobile-tabs .e-n-tab-title[aria-selected="true"]::after,
  .my-mobile-tabs .e-n-tab-title[aria-expanded="true"]::after{
    transform: translateY(-50%) rotate(-135deg);
    border-color: #673DE6; /* optional active color */
  }

}


.my-mobile-tabs .e-n-tabs-heading {
    border: 1px solid #ddd;
    border-radius: 0 12px 12px 0;
    padding: 6px;
    background: #fff;
    overflow: hidden;
}

 

 









  @media (min-width: 1025px){

  /* Base tab title */
  .my-mobile-tabs .e-n-tab-title{
    position: relative;
    padding-right: 46px !important; /* space for arrow */
  }

  /* Arrow (hidden by default) */
  .my-mobile-tabs .e-n-tab-title::after{
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;

    border-right: 2px solid #673DE6; /* purple */
    border-bottom: 2px solid #673DE6;

    transform: translateY(-50%) rotate(-45deg); /* right arrow */
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  /* Show arrow ONLY on active tab */
  .my-mobile-tabs .e-n-tab-title[aria-selected="true"]::after,
  .my-mobile-tabs .e-n-tab-title[aria-expanded="true"]::after{
    opacity: 1;
  }
}









































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

/* Button layout */
.cta-btn-2 .elementor-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  height: 60px;
  background: linear-gradient(90deg, #9333EA 0%, #7E22CE 50%, #2563EB 100%);
  border: none;
 
}

/* Button width */
.cta-w-165 .elementor-button {
 
}

/* Button content alignment */
.cta-btn-2 .elementor-button-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Icon circle */
.cta-btn-2 .elementor-button-icon {
  width: 38px;
  height: 38px;
  background: #ffffff;
  color: #9333EA;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}




/* =========================
   Mobile Responsive Button
   ========================= */
@media (max-width: 767px) {

  .cta-w-165 .elementor-button,
  .cta-btn-2 .elementor-button {
   
    height: 50px;
    padding: 0 15px !important;
    gap: 10px;
  }

  .cta-btn-2 .elementor-button-text {
    white-space: nowrap;
    font-size: 14px;
    line-height: 1;
  }

  .cta-btn-2 .elementor-button-icon {
    width: 24px;
    height: 24px;
  }
}






/* ================= Base hexagon purple button icon ================= */

/* reset wrapper (IMPORTANT for frontend) */
.elementor-iconpur .elementor-icon-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* icon */
.elementor-iconpur .elementor-icon {
  width: 80px;
  height: 67px;

  min-width: unset !important;
  min-height: unset !important;

  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;

  background: linear-gradient(90deg, #A855F7 0%, #7C3AED 100%) !important;
  color: #fff !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );

  position: relative;
  overflow: visible !important;
  isolation: isolate;

}

/* ================= ICON SIZE FIX (SVG + Font) ================= */

.elementor-iconpur .elementor-icon i,
.elementor-iconpur .elementor-icon svg,
.elementor-iconpur .elementor-icon .e-font-icon-svg {
  font-size: 22px !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  margin: 0 !important;

  position: relative;
  z-index: 2;
  pointer-events: none;
}






 .gradient-text {
    background: linear-gradient(90deg, #9333EA 0%, #7E22CE 50%, #2563EB 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
   
}

















/* ===============================
   UNIVERSAL ROUND PAGINATION
================================ */

/* Center the pagination row */
.round-pagination .elementor-pagination,
.round-pagination nav.pagination,
.round-pagination nav.navigation.pagination,
.round-pagination .pagination,
.round-pagination .page-numbers{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:10px !important;
  flex-wrap:nowrap !important;
}

/* Style all pagination items */
.round-pagination .elementor-pagination a,
.round-pagination .elementor-pagination span,
.round-pagination nav.pagination a,
.round-pagination nav.pagination span,
.round-pagination .pagination a,
.round-pagination .pagination span,
.round-pagination a.page-numbers,
.round-pagination span.page-numbers{
  width:42px !important;
  height:42px !important;
  min-width:42px !important;
  min-height:42px !important;

  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;

  border-radius:999px !important;
  background:#ffffff !important;
  color:#111827 !important;

  border:1px solid rgba(17,24,39,0.08) !important;
  box-shadow:0 10px 25px rgba(0,0,0,0.08) !important;

  text-decoration:none !important;
  font-weight:600 !important;
  line-height:1 !important;

}

/* Hover */
.round-pagination .elementor-pagination a:hover,
.round-pagination nav.pagination a:hover,
.round-pagination .pagination a:hover,
.round-pagination a.page-numbers:hover{
  box-shadow:0 14px 30px rgba(0,0,0,0.10) !important;
}

/* Current/active page = GRADIENT */
.round-pagination .elementor-pagination .current,
.round-pagination .pagination .current,
.round-pagination span.page-numbers.current{
  background:linear-gradient(90deg,#9333EA 0%,#2563EB 100%) !important;
  color:#ffffff !important;
  border:none !important;
  font-weight:700 !important;
  -webkit-text-fill-color:#ffffff !important;
}

/* Dots ... */
.round-pagination .elementor-pagination .dots,
.round-pagination .pagination .dots,
.round-pagination span.page-numbers.dots{
  background:#ffffff !important;
  color:#111827 !important;
  box-shadow:0 10px 25px rgba(0,0,0,0.08) !important;
}


























/* Base container */
.banner0 {
  position: relative;
  z-index: 0;
  overflow: visible;
}

/* LEFT Glow */
.banner0::before {
  content: "";
  position: absolute;
  top: 90%;
  left: -160px;
  transform: translateY(-50%);
  width: 250px;
  height: 350px;
  background-color: rgba(147, 51, 234, 0.45); /* #9333EA */
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* RIGHT Glow */
.banner0::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -160px;
  transform: translateY(-50%);
  width: 250px;
  height: 350px;
  background-color: rgba(147, 51, 234, 0.45); /* #9333EA */
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/*  Mobile Responsive Glow */
@media (max-width: 768px) {
  .banner0::before,
  .banner0::after {
    width: 160px;
    height: 220px;
    filter: blur(90px);
  }

  .banner0::before {
    left: -120px;
    top: 85%;
  }

  .banner0::after {
    right: -120px;
    top: 40%;
  }
}











/* for all form buttons */
.elementor-form button,
.elementor-form input[type="submit"] {
  background-image: linear-gradient(135deg, #9333EA 37%, #2563EB 100%);
  background-color: transparent;
  opacity: 1;
  box-shadow: none;
  border: none;

  color: #ffffff;
  padding: 14px 28px;
  
  
  font-weight: 600;
  cursor: pointer;
}
.elementor-form button:hover,
.elementor-form input[type="submit"]:hover {
  background-color: #ffffff;
  background-image: linear-gradient(135deg, #9333EA 37%, #2563EB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  border-radius: 8px;
  border: 2px solid #9333EA; /* solid border */
}
















/* Make room so arrows don't cover tab titles */
.scroll-tabs .elementor-tabs-wrapper,
.scroll-tabs .e-n-tabs__nav,
.scroll-tabs [role="tablist"]{
  padding-left: 52px !important;
  padding-right: 52px !important;
}

/* Ensure the tabs block is the positioning parent */
.scroll-tabs{
  position: relative !important;
}

/* Arrow buttons (base) */
.scroll-tabs .tabs-scroll-btn{
  position: absolute !important;
  top: 38px !important;
  transform: translateY(-50%) !important;

  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;

  background: #fff !important;
  border: 1px solid rgba(0,0,0,.15) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;
  z-index: 1000 !important;

  box-shadow: 0 4px 14px rgba(0,0,0,.10) !important;

  padding: 0 !important;
  line-height: 1 !important;
  font-size: 18px !important;

  color: #9333EA !important;

}

/* Left / Right */
.scroll-tabs .tabs-scroll-btn.prev{ left: 6px !important; }
.scroll-tabs .tabs-scroll-btn.next{ right: 6px !important; }

/* Hover: gradient circle + white arrow (FIXED) */
.scroll-tabs .tabs-scroll-btn:hover{
  background: linear-gradient(135deg, #9333EA 37%, #2563EB 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* Disabled state */
.scroll-tabs .tabs-scroll-btn[disabled]{
  opacity: .35 !important;
  cursor: not-allowed !important;
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  border-color: rgba(0,0,0,.10) !important;
  box-shadow: none !important;
}

/* -------------------------------
   ACTIVE TAB: Gradient + white text
   (works on live page)
-------------------------------- */

/* OLD Elementor Tabs - Active + Hover */
.scroll-tabs .elementor-tab-title.elementor-active,
.scroll-tabs .elementor-tab-title:hover {
  background: linear-gradient(135deg, #9333EA 37%, #2563EB 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.scroll-tabs .elementor-tab-title.elementor-active *,
.scroll-tabs .elementor-tab-title:hover *,
.scroll-tabs .elementor-tab-title.elementor-active svg,
.scroll-tabs .elementor-tab-title:hover svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* NESTED Tabs (new Elementor) - Active + Hover */
.scroll-tabs .e-n-tab-title[aria-selected="true"],
.scroll-tabs .e-n-tab-title:hover {
  background: linear-gradient(135deg, #9333EA 37%, #2563EB 100%) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.scroll-tabs .e-n-tab-title[aria-selected="true"] *,
.scroll-tabs .e-n-tab-title:hover *,
.scroll-tabs .e-n-tab-title[aria-selected="true"] svg,
.scroll-tabs .e-n-tab-title:hover svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}









/* ===== SEDIC PRICE HEADING (Elementor + Hello) ===== */
.sedic-heading{
  margin: 0 auto !important;           /* center the whole block */
  padding: 0 !important;

  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;

  white-space: nowrap !important;
  line-height: 1 !important;
  text-align: center !important;

  word-spacing: 0 !important;
  letter-spacing: 0 !important;
}

/* reset spans */
.sedic-heading > span{
  padding: 0 !important;
  line-height: 1 !important;
  display: inline-block !important;
}

/* ===== TEXT STYLES + MANUAL SPACING ===== */
.sedic-text-1{
  font-size:32px;
  font-weight: 700;
  color: #111827;
  margin-right: 8px !important;    /* space after 999 */
}

.sedic-text-2{
  font-size: 26px;
  font-weight: 700;
  color: #1F2937;
  margin-right: 6px !important;    /* space after AED */
}

.sedic-text-3{
  font-size: 16px;
  font-weight: 500;
  color: #4B5563;
}

/* ===== MOBILE ===== */
@media (max-width: 767px){
  .sedic-text-1{
    font-size: 20px;
    margin-right: 6px !important;
  }

  .sedic-text-2{
    font-size: 16px;
    margin-right: 4px !important;
  }

  .sedic-text-3{
    font-size: 14px;
  }
}





.sparkline{
  width: var(--w-desktop,100px);
  height: var(--h-desktop,60px);
  display: inline-block;
  line-height: 0;
}
.sparkline svg{
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 767px){
  .sparkline{
    width: var(--w-mobile,100px);
    height: var(--h-mobile,60px);
  }
}





/* ===============================
   HEXAGON ICON – BASE DESIGN
   (DO NOT CHANGE COLORS HERE)
   =============================== */

.hex-icon {
  /* Size controls */
  --size-desktop: 60px;
  --size-mobile: 58px;

  /* Color variables (default fallback) */
  --hex-bg: #000;
  --icon-color: #fff;

  width: var(--size-desktop);
  height: var(--size-desktop);

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hexagon shape */
.hex-icon::before {
  content: "";
  position: absolute;
  inset: 0;

  background: var(--hex-bg);

  clip-path: polygon(
    25% 6.7%, 75% 6.7%,
    100% 50%,
    75% 93.3%, 25% 93.3%,
    0% 50%
  );

  z-index: 0;
}

/* Center wrapper (fix Elementor offset) */
.hex-icon .elementor-icon-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;

  display: grid;
  place-items: center;
}

/* Icon itself */
.hex-icon .elementor-icon {
  display: grid;
  place-items: center;

  font-size: 36px;
  line-height: 1;
  color: var(--icon-color);
}

/* Mobile */
@media (max-width: 768px) {
  .hex-icon {
    width: var(--size-mobile);
    height: var(--size-mobile);
  }

  .hex-icon .elementor-icon {
    font-size: 28px;
  }
}



.hex-purple {
  --hex-bg: linear-gradient(90deg, #7C3AED 0%, #A855F7 100%) !important;
 
}

.hex-blue{
  --hex-bg: linear-gradient(90deg, #3B82F6 0%, #0891B2 100%) 
}

.hex-red {
  --hex-bg: linear-gradient(90deg, #EC4899 0%, #E11D48 100%);
}
.hex-green {
  --hex-bg: linear-gradient(90deg, #22C55E 0%, #059669 100%)  
 
}


.hex-orange {
  --hex-bg: linear-gradient(90deg, #F97316 0%, #DC2626 100%);
}



/* =====================================
   SINGLE BLOG POSTS – SAFE VERSION
   (Scoped to content only)
===================================== */

/* ---------- DESKTOP ---------- */

/* H1 */
body.single-post h1.entry-title,
body.single-post .elementor-widget-theme-post-title h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
  font-weight:700;
}

/* H2 */
body.single-post .entry-content h2,
body.single-post .elementor-widget-theme-post-content h2{
  font-size:36px;
  line-height:1.3;
  margin:36px 0 16px;
  font-weight:700;
}

/* H3 */
body.single-post .entry-content h3,
body.single-post .elementor-widget-theme-post-content h3{
  font-size:24px;
  line-height:1.35;
  margin:26px 0 12px;
  font-weight:700;
}

/* H4 */
body.single-post .entry-content h4,
body.single-post .elementor-widget-theme-post-content h4{
  font-size:20px;
  line-height:1.4;
  margin:20px 0 10px;
  font-weight:500;
}

/* Paragraphs */
body.single-post .entry-content p,
body.single-post .elementor-widget-theme-post-content p{
  margin-bottom:18px;
}

/* Images */
body.single-post .entry-content img,
body.single-post .elementor-widget-theme-post-content img{
  margin:28px 0;
}

/* Lists */
body.single-post .entry-content ul,
body.single-post .entry-content ol,
body.single-post .elementor-widget-theme-post-content ul,
body.single-post .elementor-widget-theme-post-content ol{
  margin:18px 0 24px;
  padding-left:24px;
}

/* List items */
body.single-post .entry-content li,
body.single-post .elementor-widget-theme-post-content li{
  margin-bottom:10px;
}

/* ---------- MOBILE ---------- */

@media (max-width:767px){

  body.single-post h1.entry-title,
  body.single-post .elementor-widget-theme-post-title h1{
    font-size:28px;
    margin-bottom:16px;
  }

  body.single-post .entry-content h2,
  body.single-post .elementor-widget-theme-post-content h2{
    font-size:22px;
    margin:26px 0 12px;
  }

  body.single-post .entry-content h3,
  body.single-post .elementor-widget-theme-post-content h3{
    font-size:19px;
    margin:18px 0 8px;
  }

  body.single-post .entry-content h4,
  body.single-post .elementor-widget-theme-post-content h4{
    font-size:17px;
    margin:14px 0 6px;
  }

  body.single-post .entry-content p,
  body.single-post .elementor-widget-theme-post-content p{
    margin-bottom:14px;
  }

  body.single-post .entry-content img,
  body.single-post .elementor-widget-theme-post-content img{
    margin:22px 0;
  }

  body.single-post .entry-content ul,
  body.single-post .entry-content ol,
  body.single-post .elementor-widget-theme-post-content ul,
  body.single-post .elementor-widget-theme-post-content ol{
    margin:14px 0 18px;
    padding-left:20px;
  }

  body.single-post .entry-content li,
  body.single-post .elementor-widget-theme-post-content li{
    margin-bottom:8px;
  }

}


/* Parent */
.elementor-hexa{
  position: relative;
  overflow: hidden;
}

/* Purple edge shade */
.elementor-hexa::after{
  content:"";
  position:absolute;
  inset:-50px; /* extra spread like screenshot */
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(400px 520px at 0% 72%, rgba(147,51,234,.22), rgba(147,51,234,.10) 40%, transparent 72%),
    radial-gradient(320px 340px at 100% 40%, rgba(147,51,234,.24), rgba(147,51,234,.10) 42%, transparent 74%);
}
@media (max-width:767px){
  .elementor-hexa::after{
    inset:-10px;   /* tighter edge */

    background:
      radial-gradient(180px 160px at 0% 78%, rgba(147,51,234,.18), rgba(147,51,234,.08) 35%, transparent 65%),
      radial-gradient(250px 350px at 100% 22%, rgba(147,51,234,.18), rgba(147,51,234,.08) 38%, transparent 68%);
  }
}


/* Desktop – little bigger */
.elementor-hexa::before{
    
  content:"";
  position:absolute;
  pointer-events:none;
  z-index:0;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='45' viewBox='0 0 52 45'%3E%3Cg fill='none' stroke='%23bfc3c9' stroke-opacity='0.45' stroke-width='1'%3E%3Cpath d='M13 1 L26 8.5 L26 23.5 L13 31 L0 23.5 L0 8.5 Z'/%3E%3Cpath d='M39 1 L52 8.5 L52 23.5 L39 31 L26 23.5 L26 8.5 Z'/%3E%3Cpath d='M26 23.5 L39 31 L39 46 L26 53.5 L13 46 L13 31 Z'/%3E%3C/g%3E%3C/svg%3E");

  /* slightly bigger than 52px */
  background-size: 60px 51.9px; /* keep exact 52:45 ratio */

  background-repeat: repeat;
  background-position: right center;

  -webkit-mask-image: linear-gradient(to left,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.10) 70%,
    rgba(0,0,0,0) 100%
  );
  mask-image: linear-gradient(to left,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.10) 70%,
    rgba(0,0,0,0) 100%
  );
}

/* Tablet */
@media (max-width:1024px){
  .elementor-hexa::before{

    -webkit-mask-image: linear-gradient(to bottom,
      rgba(0,0,0,.32) 0%,
      rgba(0,0,0,.50) 30%,
      rgba(0,0,0,.70) 60%,
      rgba(0,0,0,.85) 100%
    );
            mask-image: linear-gradient(to bottom,
      rgba(0,0,0,.32) 0%,
      rgba(0,0,0,.50) 30%,
      rgba(0,0,0,.70) 60%,
      rgba(0,0,0,.85) 100%
    );
  }
}

@media (max-width:767px){
  .elementor-hexa::before{

    background-position: center top !important;
    background-size: 52px 45px !important;

    -webkit-mask-image: linear-gradient(to bottom,
      rgba(0,0,0,.25) 0%,
      rgba(0,0,0,.40) 25%,
      rgba(0,0,0,.65) 55%,
      rgba(0,0,0,.85) 100%
    );
            mask-image: linear-gradient(to bottom,
      rgba(0,0,0,.25) 0%,
      rgba(0,0,0,.40) 25%,
      rgba(0,0,0,.65) 55%,
      rgba(0,0,0,.85) 100%
    );
  }
}


/* TRUE FULL CONTAINER HEXA */
.tmf-hexa-fullscreen{
  position: relative;
  overflow: hidden;
}

/* HEXAGON GRID */
.tmf-hexa-fullscreen::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='45' viewBox='0 0 52 45'%3E%3Cg fill='none' stroke='%23bfc3c9' stroke-opacity='0.7' stroke-width='1'%3E%3Cpath d='M13 1 L26 8.5 L26 23.5 L13 31 L0 23.5 L0 8.5 Z'/%3E%3Cpath d='M39 1 L52 8.5 L52 23.5 L39 31 L26 23.5 L26 8.5 Z'/%3E%3Cpath d='M26 23.5 L39 31 L39 46 L26 53.5 L13 46 L13 31 Z'/%3E%3C/g%3E%3C/svg%3E");

  background-size: 70px 62px;
  background-repeat: repeat;
  background-position: center;

  opacity: .45;
}

/* PURPLE SIDE GLOW */
.tmf-hexa-fullscreen::after{
  content:"";
  position:absolute;
  inset:-120px;
  pointer-events:none;
  z-index:0;

  background:
    radial-gradient(420px 520px at 0% 70%, rgba(147,51,234,.28), rgba(147,51,234,.12) 40%, transparent 70%),
    radial-gradient(420px 520px at 100% 35%, rgba(147,51,234,.28), rgba(147,51,234,.12) 40%, transparent 70%);
}

/* Tablet */
@media (max-width:1024px){
  .tmf-hexa-fullscreen::before{
    background-size: 56px 48px;
  }
}

/* Mobile */
@media (max-width:767px){
  .tmf-hexa-fullscreen::before{
    background-size: 52px 45px;
    opacity: .30;
  }

  .tmf-hexa-fullscreen::after{
    inset:-60px;

    background:
      radial-gradient(220px 260px at 0% 78%, rgba(147,51,234,.22), rgba(147,51,234,.10) 40%, transparent 70%),
      radial-gradient(220px 260px at 100% 30%, rgba(147,51,234,.22), rgba(147,51,234,.10) 40%, transparent 70%);
  }
}



.breadcrumbs{
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.breadcrumbs a,
.breadcrumbs span{
  color: #000;           /* your purple */
  text-decoration: none;
}

.breadcrumbs .bc-sep{
  color: #000;
           /* slightly softer separator */
}





.breadcrumbs a{
  position: relative;
  color: #000;
  font-weight: 700;
  font-size: 20px;   
  text-decoration: none;
}

.breadcrumbs a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;              /* distance from text */
  width: 0;
  height: 1.5px;             /* underline thickness */
  background-color: #000;
  transition: width 0.3s ease;
}

.breadcrumbs a:hover::after{
  width: 100%;
}




@media (max-width: 768px){

  .breadcrumbs{
    gap: 8px;
    font-size: 12px; /* base size */
  }

  .breadcrumbs a{
    font-size: 16px; /* ← mobile title size */
  }

  .breadcrumbs a::after{
    height: 1px;
    bottom: -2px;
  }

}