.elementor-element.elementor-element-064fdb5.e-con-full.e-flex.e-con.e-child {
    display: none;
}

@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 150px; 
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #030303;
}

.hero-background-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('https://ad360.in/wp-content/uploads/2026/03/4391-1.jpg');
  background-size: cover; 
  background-position: bottom; 
  background-repeat: no-repeat;
	
}
.hero-background-img:after{
content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Solid black with 50% opacity */
  background: rgba(0, 0, 0, 0.5);
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('https://ad360.in/wp-content/uploads/2026/03/m-case.jpg');
  background-size: cover; 
  background-position: center top; 
  background-repeat: no-repeat;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Solid black with 50% opacity */
  background: rgba(0, 0, 0, 0.5); 
}
.col-md-12 {
    padding-right: 0;
    padding-left: 0;
}

.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;
	width:100%;
}

.hero-title {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: white;
  letter-spacing: -0.02em;
	margin: 0;
    color: #fff;
    font-weight: 600 !important;
}

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

/* --- Stats Styles --- */
.hero-stats-container {
  display: flex;
  flex-wrap: wrap; 
  width: 100%;
  max-width: 100%; 
  padding: 0; 
  margin-top: 100px; 
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding-right: 40px; 
}

.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: 10px; 
  justify-content: flex-start; 
  color: #ffffff;
  letter-spacing: -1.5px;
  padding-bottom: 5px;
}

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

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

.stat-label::before {
  content: "";
  display: block;
  width: 40px;       
  height: 4px;       
  background-color: rgba(255, 255, 255);
  margin-bottom: 12px;
  margin-top: 5px;     
}

/* =========================================
   BLURRY ENTRY ANIMATION 
   (Must match the other page's CSS)
========================================= */

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

/* Stagger Delays */
.delay-1 { transition-delay: 0.2s; color: #ffffff !important; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }

/* Active State: Triggered by JS */
.hero-section.visible .animate-entry {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .hero-background {
     background-size: cover; 
     background-position: center center;
  }
  .hero-subtitle {
    white-space: normal;
  }
  .hero-stats-container {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .hero-section {
      padding: 80px 20px 60px 20px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-stats-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
  }
  
  .stat-item {
      flex: 0 0 100%;
      max-width: 100%;
      align-items: center;
      text-align: center;
      padding-right: 0;
  }
  
  .atv-stat-number {
      justify-content: center; 
  }

  .stat-label::before {
      margin-left: auto;
      margin-right: auto;
  }
  
  .stat-label {
      text-align: center;
  }
}


@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 50px; 
  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; 
}





/* GRADIENT SECTION TITLE (Left Side) */
.cs-section-title {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  
  /* CHANGED: Weight set to 500 as requested */
  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;
  /* Sidebar title remains bold (700) or standard unless you want this 500 too */
  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 Headings */
.cs-card-heading {
  font-size: 20px;
  /* Sidebar headings remain 600 (SemiBold) or can be changed if needed */
  font-weight: 600; 
  margin: 0 0 8px 0;
  line-height: 1.3;
  
  background: linear-gradient(110deg, #d40000 0%, #0029aa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.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;
  }
}



/* =============================
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;
	}
}



h1.cs-main-title {
    max-width: 100%;
    width: 100%;
    font-size: 30px !important;
}
.share-section {
    margin-top: 0px;
}
.container-fluid {
    padding-right: 0;
}
.widget.w4 {
    max-width: none;
}
a.post-title {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}
h3.cs-section-title {
    font-size: 24px !important;
    font-weight: 600 !important;
    padding: 0 !important;
}
p.cs-text {
    font-size: 1rem;
    font-weight: 400;
}


/* 1. Remove the default black dot bullets and padding */
.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: 5px;
  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;
}
section#atv-success-hero{    height: 700px !important;
	display:flex;
	align-content:center;
}
.hero-text-block {
    padding-top: 8%;
}

strong.cs-list-title {
    display: flex;
    flex-direction: column;
}

.hero-background-costarica{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('https://ad360.in/wp-content/uploads/2026/03/Costa-Rica-Travel-Agency-1.webp');
  background-size: cover; 
  background-position: bottom; 
  background-repeat: no-repeat;
}

.hero-background-costarica:after{
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Solid black with 50% opacity */
  background: rgba(0, 0, 0, 0.5); 
}

.hero-text-block-centre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    width: 100%;
    padding-top: 70px;
}
.stat-container {
    display: flex;
    gap: 60px;
    max-width: 850px;
    width: 100%;
    justify-content: space-evenly;
    margin-top: 20px;
}

.stat-card {
    flex: 1;
    max-width: 340px;
    border: 1px solid #ffffff;
    padding: 10px;
    text-align: center;
    color: #ffffff;
    font-family: sans-serif;
}
h2.percentage {
    font-size: 50px !important;
    font-weight: 700 !important;
    margin-bottom: 15px;
}
.description {
    font-size: 22px;
    font-weight: 700;
    color: #ffff !important;
}

.widget.w4 {
    margin-top: 0;
}
h3.cs-section-title {
    margin: 0;
	color:transparent !important;
}
h3.cs-sidebar-title {
    margin-top: 0;
}

.hero-background-downpayment{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('https://ad360.in/wp-content/uploads/2026/03/Downpayment-Assistance.jpeg.jpg');
  background-size: cover; 
  background-position: bottom; 
  background-repeat: no-repeat;
}

.hero-background-downpayment:after{
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Solid black with 50% opacity */
  background: rgba(0, 0, 0, 0.5);
}

.hero-background-Appliance{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url('https://ad360.in/wp-content/uploads/2026/03/Untitled-2.png');
  background-size: cover; 
  background-position: bottom; 
  background-repeat: no-repeat;
}

.hero-background-Appliance:after{
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Solid black with 50% opacity */
  background: rgba(0, 0, 0, 0.5);  
}

.stats-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0;
}

.stat-box {
    flex: 1;
    padding: 10px;
    text-align: center;
    color: white;
    border: 1px solid #ffff;
    margin-right: -1px;
    background: none !important;
    border-radius: 0 !important;
}

.stat-box:last-child {
    margin-right: 0;
}

span.sat-number {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}

span.label {
    font-size: 22px;
    font-weight: 700;
}


/* appliance table after img starts here */
tr:nth-child(even) {
    background-color: #ddd;
}


.table-bordered td, .table-bordered th {
    border: 1px solid #e9ecef !important;
}
.elementor-widget-container p {
	color: #212529c9 !important;
}
/* appliance table after img ends here */


img.website-development-suggestion {
    width: 100%;
    max-width: 980px !important;
}

.cs-section.google-my-business-page {
    display: flex;
    justify-content: center;
}

/* 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;
}
/* This ensures the span inherits font-family, size, and weight from the H2 */
.percentage .counter {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    color: inherit;
    display: inline-block;
}

/* --- Mobile Responsive for Stats Container --- */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; 
        align-items: center;
        gap: 20px; 
        padding: 0 20px;
    }

    .stat-box {
        width: 100%; 
        margin-right: 0; 
        border: 1px solid #ffffff; 
        padding: 20px 10px;
    }

    span.sat-number {
        font-size: 36px; 
    }

    span.label {
        font-size: 18px;
    }
}

/* 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;
}

span.sat-number.counter {
    display: flex !important;
    justify-content: center;
}
	.widget.w4 {
    padding-left: 0 !important;
}
h3.cs-sidebar-title {
    font-weight: 600 !important;
}
.cs-section-title,h2.cs-main-title {
    font-weight: 600 !important;
}
.elementor-element.elementor-element-1342b2e.e-con-full.e-flex.e-con.e-child {
    padding-left: 0px !important;
}