      /* Brands Section Container */
      .brands-section {
       padding: 80px 0;   /* vertical only */
  width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
     align-items: center;
        gap: 40px; /* Gap between title and logos */
      }

      /* Title Styling from Figma */
      .brands-title {
        /* Font Styles */
        font-family: 'Inter';
        font-style: normal;
        font-weight: 500;
        font-size: 28px;
        line-height: 36px;
        text-align: center;
        margin: 0;
        background: linear-gradient(180deg, #FCFCFF 0%, rgba(252, 252, 255, 0.7) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        /* Fallback color */
        color: #FCFCFF; 
        width: 100%;
      }

      /* Logos Container */
      .brands-logos {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
            padding: 60px 0px;
        gap: 16px;
        flex-wrap: wrap; /* Allow wrapping on smaller desktop screens if needed */

}    
  

      /* Logo Images */
      .brands-logos img {
        width: auto;
        max-width: 120px;
height: 50px;
        object-fit: contain;      
        filter: grayscale(100%) brightness(1.2);
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .brands-logos img:hover {
        opacity: 1;
        filter: grayscale(0%) brightness(1);
        transform: scale(1.05);
      }

      /* --- Responsive Design --- */

      /* Tablet Breakpoint */
      @media (max-width: 1024px) {
  .brands-section {
    padding: 60px 0;
    padding-top: 0px;
  }

        
        .brands-logos {
          justify-content: center;
          gap: 40px;
        }
      }

      /* Mobile Breakpoint */
      @media (max-width: 768px) {
  .brands-section {
    padding: 60px 0;
    padding-top: 0px;
    
  }
.brands-logos{
padding-bottom: 0px;
}
        .brands-title {
          font-size: 26px; 
          line-height: 36px;
        font-weight: 600;
        }

        .brands-logos {
          display: grid;
          grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
          justify-items: center;
          gap: 40px 0px; /* Row gap 32px, Column gap 16px */
        }

        .brands-logos img {
        
          max-width: 100px;
        }
      }

/* hero section */
:root {
	--bg-color: #0A0A0F;
	--text-white: #FCFCFF;
	--text-gray: #A9A8AE;
	--primary-start: #6565EC;
	--primary-end: #4545CC;
	--btn-border: #7A75EF;
	--pill-bg: linear-gradient(90deg, rgba(252, 252, 255, 0.1) 0%, rgba(252, 252, 255, 0.02) 100%);
}


/* SECTION */
.hero-section {
	position: relative;
	min-height: 1250px;
	background: var(--bg-color);
	color: var(--text-white);
	margin-bottom: 100px;
	font-family: 'Inter', sans-serif;
}

/* BACKGROUND */
.bg-wrapper {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(
			90deg,
			rgba(10, 10, 15, 0.9) 0%,
			rgba(10, 10, 15, 0.5) 0%,
			rgba(10, 10, 15, 0.2) 0%,
			rgba(10, 10, 15, 0.05) 0%,
			rgba(10, 10, 15, 0) 0%
		),
		var(--hero-bg);
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	z-index: 0;
}


/* CONTAINER */
.hero-container {
	
	margin: 0 auto;
	
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 3;
padding-bottom: 40px;
}

@media (min-width: 1024px) {
	.hero-container {
		flex-direction: row;
		align-items: center;
		min-height: 700px;
		
	}
}

/* LEFT */
.content-left {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 32px;
}


@media (min-width: 1024px) {
	.content-left {
		width: 60%;
		padding-right: 40px;
	}
}

/* RATING */
.rating-pill {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px 8px 8px;
	background: var(--pill-bg);
	border: 1px solid #2B2B2F;
	border-radius: 50px;
	backdrop-filter: blur(4px);
	width: fit-content;
}

.avatars {
	display: flex;
}

.avatars img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid #2B2B2F;
	margin-left: -12px;
}

.avatars img:first-child {
	margin-left: 0;
}

.rating-text {
	font-size: 14px;
	
color: #A9A8AE;
	
}

.rating-text span {
	color: #FCFCFF99;
	    font-size: 14px;
    font-weight: 500;

}

/* TEXT */
.hero-section h1 {
	font-size: 56px;
	line-height: 1.1;
	font-weight: 700;
	background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.6));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  margin: 0px;
}



.hero-section p {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-gray);
	max-width: 540px;
  margin: 0px;
}

/* BUTTONS */
.actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 480px) {
	.actions {
		flex-direction: row;
	}


}

.btn {
	height: 52px;
	padding: 0 24px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.2s ease;
}

.btn-primary {
	background: linear-gradient(180deg, var(--primary-start), var(--primary-end));
	border: 1px solid var(--btn-border);
	color: #F0EDFE !important;
font-weight: 600;
}


.btn-secondary {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid #2B2B2F;
	
 color: #C5C4C8 !important;
    font-weight: 600;
}

.btn-secondary:hover{
background: #A9A8AE;
    color: #0A0A0F !important;
}
.btn-primary:hover{
background: #2F2F9D;
    color: #BBBBBB;
}
.icon-arrow {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

/* RIGHT */
.content-right {
	width: 100%;
	position: relative;
	margin-top: 80px;
}

@media (min-width: 1024px) {
	.content-right {
		width: 40%;
		margin-top: 0;
	}
}

.visual-container {
	position: absolute;
	right: -100px;
	width: 140%;
	transform: matrix(0.98, -0.2, 0.5, 0.86, 0, 0) scale(0.9);
}

.dashboard-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 40px 80px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
.hero-section h1{
font-size: 40px;
}

.cta-button-secondary{
font-size: 14px !important;
}
.cta-buttons{
    padding: 24px 0px;
}

.button-text {
font-size: 14px !important;
}
.hero-section p{
font-size: 16px;
}
.actions{
display: flex;
    flex-direction: row;
    gap: 16px;
    width: 297px;
    font-size: 14px;
    text-wrap: nowrap;
}
.sl-main-title{
 font-size: 40px !important;
margin: 0px !important;
}
.sl-header-right p{
margin: 0px;
}
}






/* Mobile */
@media (max-width: 768px) {
  .hero-ui-image {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    width: 100%;
  }
}



/* hero section ends */


.cta-content-full{
display:flex;
align-items:center;
}


/* cta section */
.cta-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
 
  padding: 80px 0;
  width: 100%;
  gap: 24px;
  width: 100%;
  
  min-height: 242px;
  margin: 0 auto;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 12px;
  flex: 1;

}

/* Typography */
.cta-heading {
  font-weight: 600;
  font-size: 34px;
  line-height: unset;
  color: #A9A8AE;
margin: unset;
}

.cta-subtext {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #A9A8AE;
  opacity: 0.8;
  max-width: 554px;
margin: 0px;
}

/* Button Styles */
.cta-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 6px;
  width: 222px;
  height: 46px;
  background: linear-gradient(180deg, #6565EC 0%, #4545CC 100%);
  border: 1px solid #7A75EF;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
text-decoration: none;
}

.cta-button:hover {
      background: #2F2F9D;
}

.cta-button:active {
  transform: translateY(0);
}

.button-text {
  width: 160px;
  height: 26px;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: #F0EDFE;
  text-align: center;
}

.button-icon {
  width: 20px;
  height: 20px;
  color: #FCFCFF;
}

/* Responsive Design */

/* Tablet & Smaller Desktop */
@media (max-width: 1200px) {
  .cta-section {
     padding: 60px 0;
  }
.content-left{
    margin-top: 20%;

}
}

/* Mobile Devices */
@media (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    padding: 60px 0px;
    align-items: flex-start;
    text-align: left;
    gap: 40px;
    min-height: auto;
  }

  .cta-content {
    flex: none;
    width: 100%;
  }

  .cta-heading {
    font-size: 28px;
    line-height: 36px;
  }

  .cta-button {
    width: 100%;
margin: 0px;
    margin-top: 30px;
width: 220px;
  }

  .button-text {
    width: auto;
    flex: 1;

  }
}


/* cta section ends */



/* testimonial section */

.sl-testimonials-section {
  position: relative;
  background: 
    linear-gradient(
      90deg,
      #0A0A0F 0%,
      rgba(10, 10, 15, 0.99) 40%,   /* almost opaque */
      rgba(10, 10, 15, 0.85) 65%,   
      rgba(10, 10, 15, 0.5) 100%    
    ),
    url("/wp-content/themes/slapshot-ai-child/assets/images/purple-pink-background-with-stars-stars 2.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 100px 0;
  overflow: hidden;
  width: 100%;
}

.sl-bg-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
  mix-blend-mode: overlay;
}

.sl-bg-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 258px;
  background: linear-gradient(180deg, #0A0A0F 0%, rgba(10, 10, 15, 0) 100%);
  z-index: 1;
}

.sl-bg-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 258px;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, #0A0A0F 100%);
  z-index: 1;
}

.sl-testimonials-container {
  position: relative;
  z-index: 10;
  
}

.sl-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.sl-label-text {
  font-size: 14px;
  font-weight: 400;
  color: #F0EDFE;
opacity: 70%;
}

.sl-main-title {
  font-size: 56px;
  font-weight: 700;
 
  margin-bottom: 24px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip
Determines the background painting area.
: text;
    -webkit-text-fill-color: transparent;
  background-clip: text;
margin-top:0px;
}

.sl-client-badge {
  display: flex;
  align-items: center;
  padding: 8px 16px 8px 8px;
  gap: 12px;
  background: linear-gradient(90deg, rgba(252, 252, 255, 0.1) 0%, rgba(252, 252, 255, 0.02) 100%);
  border: 1px solid #2B2B2F;
  border-radius: 50px;
  width: fit-content;
}

.sl-avatar-stack {
  display: flex;
  align-items: center;
}

.sl-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: -10px;
  background: #222;
}

.sl-badge-content {
  display: flex;
  flex-direction: column;
}

.sl-stars {
  display: flex;
  gap: 2px;
  color: var(--sl-brand-purple);
  font-size: 14px;
  background: linear-gradient(180deg, #6565EC 0%, #4545CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sl-badge-text {
  font-size: 14px;
  color: var(--sl-white);
}

/* Slider */
.sl-testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sl-testimonials-slider::-webkit-scrollbar {
  display: none;
}

.sl-testimonial-card {
  min-width: 360px;
  height: 274px;
  background: rgba(20, 20, 25, 0.6);
  border: 1px solid rgba(43, 43, 47, 0.5);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background 0.3s ease;
padding-top: 0px;
}

.sl-testimonial-card:hover {
  border-color: rgba(101, 101, 236, 0.5);
  background: rgba(30, 30, 35, 0.8);
}

.sl-quote {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  color: #A9A8AE;
}

.sl-author-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #A9A8AE;
  font-style: normal;
  margin-bottom: 4px;
}

.sl-author-role {
  font-size: 14px;
  font-weight: 400;
  color: #A9A8AE;
  opacity: 0.5;
}

/* CTA Section (Light) */
.sl-cta-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 80px 156px;
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  min-height: 242px;
  margin: 0 auto;
  background: var(--sl-white);
}

.sl-cta-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.sl-cta-heading {
  font-weight: 600;
  font-size: 34px;
  line-height: 44px;
  color: #A9A8AE;
}

.sl-cta-subtext {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #A9A8AE;
  opacity: 0.5;
  max-width: 554px;
}

/* CTA Button Styles Removed as per request */

/* Responsive */
@media (max-width: 1024px) {
  
  .sl-cta-section {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  
  .sl-main-title {
    font-size: 40px;
    line-height: 48px;
  }
  .sl-testimonials-slider {
    padding-left: 0;
  }
.sl-testimonials-section{
padding: 0px;
}
  .sl-testimonial-card {
    min-width: 300px;
    padding: 24px;
height: 320px;
  }
  
  .sl-cta-section {
    flex-direction: column;
    padding: 60px 24px;
    align-items: flex-start;
    gap: 32px;
  }
}
.sl-testimonials-slider {
  overflow: hidden;
  width: 100%;
}

.sl-testimonials-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: sl-testimonial-scroll 40s linear infinite;
}

@keyframes sl-testimonial-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause when mouse hovers */
.sl-testimonials-slider:hover .sl-testimonials-slider-track {
  animation-play-state: paused;
}

/* testimonial ends */


/* stat card */
 
       
        /* ==========================
           STATS SECTION
        ========================== */
       .stats-section {
    position: relative;
    width: 100%;
  
    padding: 80px 0px;
    display: flex;
    gap: 24px;
    isolation: isolate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: absolute;
    inset: 0;

    /* VERY SOFT EDGE VIGNETTE */
    background: linear-gradient(
        90deg,
        rgba(10, 10, 15, 0.6) 0%,
        rgba(10, 10, 15, 0.25) 15%,
        rgba(10, 10, 15, 0.0) 35%,
        rgba(10, 10, 15, 0.0) 65%,
        rgba(10, 10, 15, 0.25) 85%,
        rgba(10, 10, 15, 0.6) 100%
    );

    z-index: -1;
    pointer-events: none;
}

.stats-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}



        /* ==========================
           GLASS CARD
        ========================== */
  .stat-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}


  

        /* Value Row */
        .stat-value-frame {
            display: flex;
            align-items: flex-end;
            gap: 6px;
        }

        .stat-value {
            font-size: 56px;
            font-weight: 700;
            line-height: 64px;
            background: linear-gradient(180deg, #fff, rgba(255,255,255,0.6));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-unit {
            font-size: 20px;
            font-weight: 500;
            padding-bottom: 4px;
            background: linear-gradient(180deg, #fff, rgba(255,255,255,0.7));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-description {
            font-size: 16px;
            line-height: 26px;
            color: #A9A8AE;
        }

        /* ==========================
           RESPONSIVE
        ========================== */
        @media (max-width: 1024px) {
            .stats-section {
                padding: 60px 0px;
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 40px 0px;
            }
.ct-hero-section
{
padding: 50px 0px !important;
}

.stat-card{
padding: 10px;
gap: unset;


}
.stat-description{
padding: 0px;
    margin: 10px 0px;
}
.cta-content-full{
 flex-direction: column;
align-items: flex-start;

}
            .stat-value {
                font-size: 44px;
                line-height: 52px;
            }
.stat-content{
flex-direction:column;
}
        }

.stat-content{
display : flex;
    gap: 24px;
justify-content: center;
}
    
/* stat card ends */


/* overview starts*/



/* ================= RESET ================= */
.ct-hero-section * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BASE ================= */
.ct-hero-section {
  font-family: 'Inter', sans-serif;
  background-color: #09090b;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 0;
}

/* ================= MAIN LAYOUT ================= */
.ct-main-container {
  width: 100%;
  max-width: 1300px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

/* ================= LEFT CONTENT ================= */
.ct-content-left {
  max-width: 554px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ================= LABEL ================= */
.sl-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sl-label-icon {
  display: block;
}

.sl-label-text {
  font-size: 14px;
  color: #f0edfe;
  opacity: 0.7;
}

/* ================= HEADINGS ================= */
.ct-heading-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sl-main-title {
  font-size: 56px;
  font-weight: 700;

  background: linear-gradient(180deg, #fcfcff 0%, rgba(252,252,255,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ct-body-large {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #a9a8ae;
}

/* ================= BUTTON ================= */
.ct-action-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  height: 46px;
  width: fit-content;
  background: rgba(252,252,255,0.06);
  border: 1px solid #2b2b2f;
  border-radius: 8px;
  cursor: pointer;
text-decoration: none;
  transition: all 0.2s ease;
}

.ct-action-button span {
  font-size: 16px;
  font-weight: 600;
  color: #c5c4c8;
}

.ct-action-button:hover {
  background: #A9A8AE;
  border-color: #3f3f46;
color: #0A0A0F;
}

.ct-action-button:hover svg path {
    stroke: #0A0A0F;
}
.ct-action-button:hover span {
    color: #0A0A0F;
}

/* ================= SIDEBAR ================= */
.ct-sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.ct-sidebar-header {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #a9a8ae;
  opacity: 0.5;
}

/* ================= SERVICES MENU ================= */
.ct-services-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.ct-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ct-active-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a9a8ae);
  
}

.ct-product-name {
  font-size: 16px;
  color: #a9a8ae;
}

.ct-product-name.ct-inactive {
  font-size: 16px;
  color: #3a3a3d;
}

.ct-status-dot {
  width: 6px;
  height: 6px;
  background: #a9a8ae;
  border-radius: 50%;
}

.ct-status-dot.ct-inactive {
  background: #3a3a3d;
}

.ct-menu-item:hover .ct-product-name.ct-inactive {
  color: #a9a8ae;
}

/* ================= IMAGE SECTION ================= */
.ct-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 80px auto 0;
  padding: 0 24px;
}
.ct-hero-graphic {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .ct-main-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
  }

  .ct-sidebar {
    align-items: flex-start;
  }

  .ct-services-menu {
    align-items: flex-start;
display: none;
  }
.ct-sidebar-header{
display: none;
}

  .ct-active-line {
    display: none;
  }
}


@media (max-width: 768px){
.ct-main-container{
gap: unset;
}



.ct-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
 background:
  linear-gradient(
    0deg,                           /* bottom → top */
    rgba(9, 9, 11, 0.85) 0%,        /* bottom dark */
    rgba(9, 9, 11, 0.55) 25%,
    rgba(9, 9, 11, 0.25) 45%,
    rgba(9, 9, 11, 0.05) 65%,
    rgba(9, 9, 11, 0) 80%           /* top almost clear */
  ),
  radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );

}
}

/* ================= HOVER ACTIVE EFFECT ================= */

/* Default hide active line for non-first items */


/* Hover state = active look */
.ct-menu-item:hover .ct-active-line {
  opacity: 0.5;
}


.ct-menu-item:hover .ct-product-name {
  font-size: 16px;
}

/* ================= ACTIVE LINE LOGIC ================= */

/* Default: hide line for all */
.ct-active-line {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* First item (Rotoscoping) always active */
.ct-menu-item.active .ct-active-line {
  opacity: 1;
}

/* Hover: show line for hovered item */
.ct-menu-item:hover .ct-active-line {
  opacity: 1;
}

/* Hover par dot ka color active jaisa */
.ct-menu-item:hover .ct-status-dot.ct-inactive {
  background: #a9a8ae;
}




.ct-menu-item.active .ct-status-dot {
  background: #a9a8ae;
}


/* overview ends */


