/* =============================
CTA Section Styles
============================= */

.cta-section-wrapper {
	width: 100%;
	max-width: 1200px; 
	margin: 40px auto;
	padding: 0 20px; 
	box-sizing: border-box;
}

.cta-container {
	background: linear-gradient(110deg, #d40000 0%, #0029aa 100%);
	border-radius: 50px;
	padding: 100px 50px; 
	text-align: center;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.cta-content {
	margin-bottom: 40px;
}

.cta-title {
	font-family: 'Inter', sans-serif;
	font-weight: 700; 
	font-size: 44px;
	line-height: 1.1;
	margin: 0 0 24px 0;
	color: #ffffff;
}

.cta-description {
	font-family: 'Inter', sans-serif;
	font-weight: 400; 
	font-size: 16px;
	line-height: 1.4em;
	margin: 0;
	color: #ffffff !important;
}

/* --- SPLIT BUTTON ANIMATION STYLES --- */

.cta-button {
	position: relative;
	display: inline-flex; 
	align-items: center;
	justify-content: center;
	gap: 0;

	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
	border-radius: 100px; 
	padding: 0;

	font-family: 'Inter', sans-serif;
	font-weight: 600; 
	font-size: 16px;
	line-height: 1;

	transition: transform 0.2s ease, box-shadow 0.2s ease, gap 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.15);
	gap: 10px;
	background-color: transparent;
}

.cta-button-text {
	display: block;
	padding: 14px 0 14px 28px;
	border-radius: 100px;
	border: 2px solid transparent;
	background-color: transparent;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button:hover .cta-button-text {
	transform: translateX(-5px);
	border-color: #ffffff;
	background-color: #ffffff;
	padding :14px 28px;
}

.cta-icon-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 2px solid transparent;
	background-color: transparent;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button:hover .cta-icon-wrapper {
	transform: translateX(5px);
	border-color: #ffffff;
	background-color: #ffffff;
}

.cta-icon-svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	display: block;
}

/* Responsive */
@media (max-width: 768px) {
	.cta-container {
		padding: 60px 24px;
		border-radius: 30px; 
	}
	.cta-title {
		font-size: 32px; 
	}
	.cta-description {
		font-size: 14px;
	}
	.cta-button {
		padding: 14px 28px;
		font-size: 16px;
	}
	.cta-button:hover {
		gap: 20px;
	}
}





@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Mulish:wght@400;500;600&display=swap');

/* =========================================
   CASE STUDY LAYOUT (Main Content & Sidebar)
========================================= */

.cs-layout-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%; 
  margin: 0;
  padding: 60px 80px; 
  gap: 40px; 
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  background-color: #ffffff;
}

/* --- LEFT COLUMN: Main Content --- */
.cs-main-content {
  flex: 1; 
  max-width: none; 
  color: #4a4a4a; 
}

.cs-section {
  margin-bottom: 24px
}

/* GRADIENT MAIN TITLE */
.cs-main-title {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 500; /* Increased weight slightly for better gradient visibility */
  margin-bottom: 30px;
  line-height: 1.2;
  
  /* Gradient Text Logic */
  background: linear-gradient(110deg, #d40000 0%, #0029aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  
  /* Ensures gradient spans only the text width, not the whole block */
  width: fit-content; 
}

/* GRADIENT SECTION TITLE */
.cs-section-title {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.3;
  
  /* Gradient Text Logic */
  background: linear-gradient(110deg, #d40000 0%, #0029aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  
  width: fit-content;
}

.cs-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  color: black;
  margin-bottom: 20px;
}

.cs-text-center {
  text-align: center;
  font-weight: 500;
  color: #333;
}

.cs-content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: block;
  object-fit: cover;
}

.cs-content-image.short {
    margin-top: 0;
}

/* --- RIGHT COLUMN: Sidebar --- */
.cs-sidebar {
  width: 480px; 
  flex-shrink: 0; 
  position: sticky; 
  top: 15px; 
}

.cs-sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.cs-card {
  position: relative;
  display: block;
  text-decoration: none; 
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee; 
  min-height: 100px;
  overflow: hidden;
}

.cs-card:hover {
  transform: translateY(-3px); 
  transition: transform 0.2s ease;
}

.cs-card:last-child {
    border-bottom: none;
}

.cs-card-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 44%;   
  object-fit: cover;
  border-radius: 8px;
  background-color: #f0f0f0;
}

.cs-card-text {
  margin-left: 48%;
  width: 52%; 
  display: flex;
  flex-direction: column;
}

/* Sidebar Card Headings - Keeping these red or gradient? 
   I applied the gradient here too for consistency. 
   If you want them solid red, remove the background/clip lines. */
.cs-card-heading {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
  
  color: #d40000;
}

.cs-card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* --- Responsive Styles --- */
@media (max-width: 1300px) {
  .cs-layout-container {
    padding: 60px 40px; 
    gap: 40px; 
  }
  .cs-sidebar {
    width: 400px; 
  }
}

@media (max-width: 1024px) {
  .cs-layout-container {
    flex-direction: column; 
    padding: 60px 40px;
    gap: 60px; 
  }

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

  .cs-sidebar {
    width: 100%; 
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .cs-layout-container {
    padding: 40px 20px; 
  }

  .cs-main-title {
      font-size: 1.8rem;
  }
  
  .cs-section-title {
      font-size: 1.5rem;
  }
}




@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Mulish:wght@400;500;600&display=swap');

/* --- Main Hero Styles --- */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: auto; 
  padding: 200px 100px 120px; 
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #030303;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover; 
  background-repeat: no-repeat;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}

.hero-title {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap; 
  color: #ffffff !important;
}

/* --- Stats Styles --- */
.hero-stats-container {
  display: flex;
  flex-wrap: wrap; 
  width: 100%;
  max-width: 100%; 
  padding: 0; 
  margin-top: 80px; 
  
  /* CRITICAL: Space Between */
  justify-content: space-between; 
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: left;
  
  /* CRITICAL: 25% Width */
  flex: 0 0 25%;
  max-width: 25%;
  
  box-sizing: border-box;
  padding-right: 0; 
}

.atv-stat-number {
  font-family: "Mulish", "Mulish Placeholder", sans-serif;
  font-size: 4rem; 
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: center; 
  gap: 15px; 
  justify-content: flex-start; 
  color: #ffffff;
  letter-spacing: -1.5px;
  padding-bottom: 5px;
}

.currency-symbol {
  font-family: "Clash Display", "Clash Display Placeholder", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  margin-right: 2px;
  position: relative;
  top: -4px;
}

/* Arrow Styles */
.stat-arrow {
  width: 36px;
  height: 36px;
}

.arrow-up {
  color: #4ade80; 
}

.arrow-down {
  color: #ef4444; 
}

.stat-label {
  font-family: "Mulish", "Mulish Placeholder", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-align: left; 
  width: 100%;
  position: relative;
	display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label::before {
  content: "";
  display: block;
  width: 45px;       
  height: 4px;       
  background-color: #ffffff;
  margin-bottom: 15px;
  margin-top: 10px;     
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .hero-background {
     background-size: cover; 
  }
  .hero-subtitle {
    white-space: normal;
    padding: 0 20px;
  }
  .hero-stats-container {
    margin-top: 60px;
    /* Center stats on smaller screens */
    justify-content: center; 
    gap: 40px; 
  }
  
  .stat-item {
      flex: 0 0 100%; 
      max-width: 100%;
      align-items: center; 
      text-align: center;
      margin-bottom: 40px;
      padding-right: 0;
  }
  
  .atv-stat-number {
      justify-content: center;
  }
  
  .stat-label::before {
      margin-left: auto;
      margin-right: auto;
  }
  
  .stat-label {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
      padding: 100px 20px 80px 20px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}


/* =========================================
   BLURRY ENTRY ANIMATION
========================================= */

/* Initial State: Hidden, Lower down, and Blurry */
.animate-entry {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px); /* Starts blurry */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
  will-change: opacity, transform, filter; /* Optimizes performance */
}

/* Stagger Delays for sequence */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* Active State: Fully visible, In place, and Sharp */
.hero-section.visible .animate-entry {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0); /* Ends sharp */
}


/* =========================================
   RESULTS TABLE STYLES (Replaces Image)
========================================= */
/* =========================================
   RESULTS TABLE STYLES (Exact Image Match)
========================================= */

.cs-results-tables {
  margin: 30px 0;
  width: 100%;
  font-family: "Inter", sans-serif;
	
}

.cs-top-tables {
  display: flex;
  gap: 30px; /* Exact gap between left and right table */
  margin-bottom: 40px;
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  color: #000;
}

.cs-top-tables .cs-table {
    flex: 1;
    border: 1px solid #e9ecef;
		font-size: medium !important;

}

/* TOP TABLES: Header exact match */
.cs-top-tables .cs-table th {
  text-align: center;
  padding: 16px 15px;
  font-weight: 600;
  border-bottom: 2px solid #000;  /* Bold bottom border */
  background-color: #fff;
}

/* TOP TABLES: Row Styling */
.cs-top-tables .cs-table td {
  padding: 14px 15px;
  border: none;
  text-align: left; /* Aligned left just like the image */
}

/* TOP TABLES: Make first column bold */
.cs-top-tables .cs-table td:first-child {
  font-weight: 700;
  width: 55%;
}

.cs-top-tables .cs-table td:last-child {
  font-weight: 500;
  width: 45%;
}

/* TOP TABLES: Alternating Row Colors */
.cs-top-tables .cs-table tbody tr:nth-child(even) {
  background-color: #eaeaea; /* Exact light grey match */
}
.cs-top-tables .cs-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

/* =========================================
   BOTTOM TABLE (With the Middle Border!)
========================================= */

.cs-bottom-table {
  background-color: #eaeaea; /* Entire table is light grey */
}

/* Bottom Table Header */
.cs-bottom-table th {
  text-align: left;
  padding: 14px 20px;
  font-weight: 700;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  color: #000;
}

/* Bottom Table Rows */
.cs-bottom-table td {
  padding: 14px 20px;
  font-weight: 500; /* Bold numbers matching the image */
  border: none;
  color: #000;
}

/* THIS IS THE CRITICAL COLUMN DIVIDER LINE */
.cs-bottom-table th:first-child, 
.cs-bottom-table td:first-child {
  border-right: 1px solid #000; /* Distinct vertical line splitting the table */
  width: 50%;
}

.cs-bottom-table th:last-child, 
.cs-bottom-table td:last-child {
  width: 50%;
}
.cs-top-tables .cs-table tbody tr{
	border-width: 1px 0;
}
/* BOTTOM TABLE: Solid Background Color to match original */
.cs-bottom-table {
  background-color: #e9e9e9; /* Exact light grey match */
			font-size: medium !important;

}

h3.cs-sidebar-title {
    margin-top: 0px;
}

.cs-bottom-table th {
  background-color: #dddddd;
}

/* Force all rows in the bottom table to be the exact same solid grey */
.cs-bottom-table tbody tr,
.cs-bottom-table tbody tr:nth-child(odd) {
  background-color: #e6e6e6 !important; 
}

.cs-bottom-table tbody tr:nth-child(even){
	background-color:#dddddd !important;
}
/* Bottom Table Header - ONLY bottom border */
.cs-bottom-table th {
  text-align: left;
  padding: 14px 20px;
  font-weight: 700;
  border-top: none; /* Removed the top border here */
  border-bottom: 2px solid #000; /* Kept the bottom border */
  color: #000;
  background-color: #e9e9e9;
}

/* Bottom Table Column Widths - NO middle border */
.cs-bottom-table th:first-child, 
.cs-bottom-table td:first-child {
  border-right: none; /* Removed the vertical line here */
  width: 50%;
}

.cs-bottom-table th:last-child, 
.cs-bottom-table td:last-child {
  width: 50%;
}
/* Responsive fix for mobile */
@media (max-width: 768px) {
  .cs-top-tables {
    flex-direction: column;
    gap: 30px;
  }
}

/* =========================================
   A GREAT OUTCOME - SIDE-BY-SIDE LIST
========================================= */

.cs-outcome-list {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Space between the two rows */
  margin-top: 30px;
}

.cs-outcome-item {
  display: flex;
  align-items: center;
  gap: 30px; /* Space between the image and the text */
}

/* PRO TIP: If you ever want the second item to have the Photo on the Right 
  and the Text on the Left, just add the class "reverse" to the HTML like this:
  <div class="cs-outcome-item reverse"> 
*/
.cs-outcome-item.reverse {
  flex-direction: row-reverse;
}

.cs-outcome-image {
  flex: 0 0 50%;
  max-width: 50%;
}

.cs-outcome-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08); /* Nice subtle shadow for the graphs */
}

.cs-outcome-text {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 20px;
}

.cs-outcome-heading {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  color: #000;
  line-height: 1.3;
}

/* Stack them vertically on mobile devices so they don't get squished */
@media (max-width: 768px) {
  .cs-outcome-item,
  .cs-outcome-item.reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cs-outcome-image, 
  .cs-outcome-text {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
  }
}



/* 1. Remove the default black dot bullets and padding */
.cs-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

/* 1. Create space for the custom icon (adjusted padding for a smaller icon) */
/* 1. Reset the list */
.cs-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

/* 2. Create space for the new bigger circle */
.cs-list > li {
  position: relative;
  padding-left: 22px; /* Pushed out a bit more to fit the bigger circle */
  margin-bottom: 16px;
  line-height: 1.6;
}

/* 3. The Bigger Red Circle + Smaller Checkmark */
.cs-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px; /* Adjust up or down to align perfectly with your text */
  
  /* Create the BIG RED CIRCLE background */
  width: 12px; 
  height: 12px;
  background-color: #d40000;
  border-radius: 50%; /* Makes it a perfect circle */
  
  /* Place the WHITE CHECKMARK inside it */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='white'/%3E%3C/svg%3E");
  
  /* Make the checkmark a bit smaller than the red circle */
  background-size: 14px; 
  background-position: center;
  background-repeat: no-repeat;
}

.cs-list li ul li::before {
    content: none !important; 
}

.cs-list li ul li {
	padding-left: 0 !important; 
	margin-left: 0; 
}

.cs-list li ul{
	padding-left: 20px;
    margin-left: 0;
}

.col-md-12 {
    padding-left: 0;
}

/* appliance table after img ends here */

/* =========================================
   ADJUST LAYOUT WIDTHS (Wider Left, Narrower Right)
========================================= */

/* Decrease the right sidebar width to 320px (originally 480px) */
/* The left section will automatically stretch to fill the newly freed space! */
.cs-sidebar {
  width: 350px !important; 
}

/* Ensure it scales down nicely on medium screens */
@media (max-width: 1300px) {
  .cs-sidebar {
    width: 300px !important; /* originally 400px */
  }
}

/* =========================================
   SIDEBAR "OTHER CASE STUDIES" ADJUSTMENTS
========================================= */

/* 1. Make the thumbnail image narrower (35%) */
.cs-card-img {
  width: 35% !important; 
}

/* 2. Adjust text wrapper to sit perfectly next to the smaller image */
.cs-card-text {
  margin-left: 40% !important; /* Pulls text closer to the image */
  width: 60% !important;       /* Expands text to fill the remaining space */
}

/* 3. Make the heading a little bit smaller */
.cs-card-heading {
  font-size: 16px !important; /* Reduced from 20px */
  line-height: 1.4;
}

/* 4. Make the height perfectly fit the heading (remove forced extra space) */
.cs-card {
  min-height: auto !important; /* Removes the original 100px forced minimum */
  padding-bottom: 15px !important; /* Slightly tighter bottom spacing */
}

h3.cs-section-title {
    margin-top: 35px;
    margin-bottom: 35px;
	color:transparent !important;
	font-size:26px !important;
}
/* GRADIENT MAIN TITLE (Left Side) */

.cs-main-title {

  font-family: "Inter", sans-serif;

  font-size: 26px!important;

  /* CHANGED: Weight set to 500 as requested */

  font-weight: 500; 

  margin-bottom: 10px;

  line-height: 1.2;

  /* Gradient Text Logic */

  background: linear-gradient(110deg, #d40000 0%, #0029aa 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  width: fit-content; 

}
 
/* 1. Create space for the custom icon (adjusted padding for a smaller icon) */

/* 1. Reset the list */

.cs-list {

  list-style: none;

  padding-left: 0;

  margin-top: 10px;

}
 
.cs-section {

  margin-bottom: 0;

}

h3.cs-section-title {

    margin-bottom: 1rem;

    color: transparent !important;

}
 
ul.cs-list.custom {

    padding-left: 30px;

}
 
.widget.w4 {
    padding-left: 0 !important;
}
a.post-title {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
h3.cs-sidebar-title {
    font-weight: 600 !important;
}
.cs-section-title,h2.cs-main-title {
    font-weight: 600 !important;
}
.container-fluid {
    padding-right: 0 !important;
}