.e-con>.e-con-inner {
    gap: 0!important;
    height: 100%;
    margin: 0 auto;
    max-width: none !important;
    padding-inline-end: 0;
    padding-inline-start: 0;
    width: 100%;
}
/* hero-section starts here*/

.hero-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 40px 20px;*/
    background-color: transparent;
    position: relative; 
    overflow: hidden; 
}
.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover; 
    object-position: center center; 
    z-index: 1; 
}

.container {
    max-width: 1750px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
	 position: relative;
    z-index: 2;
}

/* --- Left Side: Text --- */
.text-content {
    flex: 1;
    min-width: 300px; 
}

.text-content h1 {
    font-size: 3.4rem; 
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

.text-content h1 span {
    background: linear-gradient(113deg, rgb(212, 0, 0) 0%, rgb(0, 41, 170) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: flex;
}


.text-content p {
    font-size: 1.1rem;
    color: #212121;
    margin-bottom: 25px;
    line-height: 140%;
    letter-spacing: -0.17px;
    max-width: 1100px;
}

.btn-primary, .btn-primary:active {
    background: linear-gradient(104deg, var(--token-d740e542-a7f8-4fa8-8d82-14b3e2f72c80, rgb(212, 0, 0)) 0%, var(--token-0cbd564a-2170-47b7-8dbe-29300ae55864, rgb(0, 41, 170)) 100%); 
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-primary.focus, .btn-primary:focus{
	box-shadow: none;
    outline: none;
}

/* form ends here */

.form-container {
    flex: 0 0 450px; /* Fixed width for form on desktop */
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); /* Soft shadow like image */
}

.form-group {
    margin-bottom: 15px;
}


/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Group */
.form-group {
  width: 100%;
}

/* Two column fields */
.name-group,
.contact-group {
  display: flex;
  gap: 10px;
}

.name-group .input-box,
.contact-group .input-box {
  flex: 1;
}

/* Inputs */
.input-box input,
.select-box select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #f7f7f7;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.input-box input:focus,
.select-box select:focus {
  border-color: #6a6aff;
  background: #ffffff;
}

/* Dropdown */
.select-box select {
  appearance: none;
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input {
  margin-top: 4px;
}

.checkbox-text {
  font-size: 12px;
  color: #777;
  margin: 0;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(104deg, var(--token-d740e542-a7f8-4fa8-8d82-14b3e2f72c80, rgb(212, 0, 0)) 0%, var(--token-0cbd564a-2170-47b7-8dbe-29300ae55864, rgb(0, 41, 170)) 100%);
  transition: 0.3s;
}

.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
/* Responsive */
@media (max-width: 480px) {
  .name-group,
  .contact-group {
    flex-direction: column;
  }
}

/* form ends here */

/* --- Responsive Media Queries (Mobile ke liye) --- */
@media (max-width: 900px) {
    .container {
        flex-direction: column; /* Stack items vertically */
        align-items: stretch;
		padding: 0;
    }

    .text-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .text-content p {
        margin: 0 auto 30px auto; /* Center paragraph */
    }

    .form-container {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2rem; /* Chhote phone ke liye font size kam */
    }
    
    .form-row {
        flex-direction: column; /* Name fields stack on very small screens */
        gap: 15px;
    }
}

/* hero-section ends here*/



/* marketing-section starts here */

.marketing-section {
    position: relative; /* Background image mate reference point */
    width: 100%;
    /*padding-top: 80px;*/
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Content top thi start thay */
    text-align: center;
    background-color: #fff;
}

/* --- 1. Background Shape Image Styling --- */
.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100% !important;
    width: 100%;
    z-index: 0;
    opacity: 0.8;
}

h2 span.head-text {
    background-image: linear-gradient(94deg, var(--token-d740e542-a7f8-4fa8-8d82-14b3e2f72c80, rgb(212, 0, 0)) 0%, var(--token-0cbd564a-2170-47b7-8dbe-29300ae55864, rgb(0, 41, 170)) 98.2982738597973%, var(--token-e5e17deb-5e9d-44d5-81ea-49cd744eb462, rgb(33, 33, 33)) 98.37838937570383%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 30px;
    display: inline-flex;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 100%;
    letter-spacing: -0.04em;
    align-items: center;
    justify-content: center;
    width: 69%;
	display: inline-block;
}

.subtext {
    font-size: 1.1rem;
    color: #4b5563; /* Grey text */
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* --- 2. Graph Image Styling --- */
.graph-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0; /* Tadiye chipkine rahe */
}

.graph-img {
    width: 100%;
    max-width: 1000px; /* Bahu motu na thai jay */
    height: auto;
    display: block;
    /* filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); */
}

/* --- Responsive Design (Mobile/Tablet) --- */

@media (max-width: 900px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .bg-shape {
        width: 60%; /* Tablet par thodu motu background */
    }
}

@media (max-width: 600px) {
    /*.marketing-section {
        padding-top: 50px;
    }*/

    /* Mobile ma background shape nanu kari do */
    .bg-shape {
        width: 70%;
        opacity: 0.5; 
    }
	
	h1 span.head-text {
		width: 100%;
	}

    h1 {
        font-size: 1.8rem; /* Mobile font size */
    }

    .desktop-break {
        display: none; /* Mobile ma line break hatavi do */
    }

    .subtext {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 30px;
    }
}

/* marketing-section ends here */


/* cards starts here */

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1720px;
    margin: auto;
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 700px;
    height: 160px;
    position: relative;
    overflow: visible;
	background-color: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 16px 24px;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 12px 0px, rgba(0, 0, 0, 0.09) 0px 21px 21px 0px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
/*.stat-card.stat-card-highlight{
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
}*/
/*.stat-card {
    padding: 16px 24px;
}*/

#seo-page-stats-cards .stat-number {
    display: flex;
    align-items: baseline;
    gap: 11px;
    overflow: var(--overflow-clip-fallback, clip);
    flex-direction: row;
    width: 100%;
    padding: 0;
    position: relative;
	height:100%;
	flex:0 0 0;
}

.stat-prefix {
  font-size: 64px;
  font-weight: 500;
  color: #212121;
}
span.brands-text {
    font-family: "Clash Display", "Clash Display Placeholder", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1em;
    color: rgb(212, 0, 0);
}

.stat-value {
  	font-family: Mulish, "Mulish Placeholder", sans-serif;
   	font-size: 64px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.09em;
    line-height: 1em;
    color: #0f0f0f;
}

.stat-suffix {
  	font-family: "Clash Display", "Clash Display Placeholder", sans-serif;
    font-size: 54px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1em;
    color: rgb(212, 0, 0);
}

.highlight {
  color: #d40000;
}

.stat-line {
  width: 40px;
  height: 3px;
  background: #ccc;
}

.stat-label {
  font-size: 15px;
  font-weight: 400;
  color: #0f0f0f;
	margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .stats-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-prefix,
  .stat-value {
    font-size: 52px;
  }

  .stat-suffix {
    font-size: 48px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats-cards {
    grid-template-columns: 1fr;
  }

  .stat-card {
    text-align: center;
  }

  .stat-number {
    justify-content: center;
  }

  .stat-prefix,
  .stat-value {
    font-size: 44px;
  }

  .stat-suffix {
    font-size: 40px;
  }

  /*.stat-line {
    margin: 12px auto;
  }*/
}
/* card ends here */


/* E-commerce Success starts here */

.why-ad360-section .e-con-inner {
  margin: 0 auto;
}

/*.why-ad360 {
	margin-top: 120px;
  	font-family: Arial, sans-serif;
}*/

/* Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 100%;
    background: linear-gradient(113deg, rgb(212, 0, 0) 0%, rgb(0, 41, 170) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-align: center;
    width: 100%;
}

/* Feature rows */
.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  padding: 22px 28px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.feature-item p {
    width: 50%;
    font-size: 18px;
    line-height: 1.5;
}

p.para {
    width: 25%;
}

.feature-item h3 {
    width: 60%;
    font-weight: 600;	
    line-height: 1em;
    text-align: right;
    color: #0f0f0f;
}

/* CTA */
.cta-box {
    margin-top: -40px;
    padding: 28px 30px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #d40000, #0029aa);
    color: #fff;
	width: 100%;
}

.cta-box span {
  font-size: 36px;
  font-weight: 700;
}

.cta-btn {
    color: #ffff;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 36px;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    text-align: left;
  }
	/*.why-ad360 {
		margin-top: 50px;
		font-family: Arial, sans-serif;
	}*/
	
	.container {
		gap: 10px;
	}
	
  .feature-item p,
  .feature-item h3 {
    width: 100%;
	font-size: 15px;
  }

  .feature-item h3 {
    text-align: left;
    margin-top: 10px;
	font-size: 18px;
	order: 1;  
  }
	.feature-item p{
		order: 2;
	}
	
	.cta-box span {
        display: none;
    }
	
	.cta-box {
		flex-direction: column;
		gap: 15px;
		text-align: center;
		padding: 10px 30px;
		margin-top: 10px;
	}
	
	.cta-btn {
    	font-size: 23px;
	}

}

@media (max-width: 480px) {
	.name-group, .contact-group {
		flex-direction: row;
	}
}



/* E-commerce Success ends here */


/* hero section starts here */

.animation-section {
    text-align: center;
    max-width: 1500px;
    margin: auto;
}

.gradient-heading {
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.1;
  background: linear-gradient(94deg, var(--token-d740e542-a7f8-4fa8-8d82-14b3e2f72c80, rgb(212, 0, 0)) 0%, var(--token-0cbd564a-2170-47b7-8dbe-29300ae55864, rgb(0, 41, 170))        	98.2982738597973%, var(--token-e5e17deb-5e9d-44d5-81ea-49cd744eb462, rgb(33, 33, 33)) 98.37838937570383%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin-top: 15px;
  font-size: 17px;
}

/* animation part */

.services-marquee-wrapper {
  	width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 1300px;
    margin: auto;
}

/* each row */
.services-marquee-row {
    position: relative;
    overflow: hidden;
    margin: 12px 0;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    place-items: center;
    margin: 0px;
    padding: 10px;
    list-style-type: none;
    opacity: 1;
}

.services-marquee-track.marquee-left {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    place-items: center;
    margin: 0px;
    padding: 10px;
    list-style-type: none;
    position: relative;
    flex-direction: row;
    will-change: transform;
    transform: translateX(0px);
    /* left: -2790px; */
}

.services-marquee-track.marquee-right {
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    place-items: center;
    margin: 0px;
    padding: 10px;
    list-style-type: none;
    gap: 60px;
    position: relative;
    flex-direction: row;
    will-change: transform;
}

/* fade edges */
.services-marquee-row::before,
.services-marquee-row::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.services-marquee-row::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.services-marquee-row::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* common track */
.services-marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  align-items: center;
  will-change: transform;
}

/* Left to Right animation */
.marquee-left {
  animation: scrollLeft 10s linear infinite;
}

/* Right to Left animation */
.marquee-right {
  animation: scrollRight 10s linear infinite;
}

/* pills */
.service-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  background-image: linear-gradient(90deg, #d40000, #0029aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* icon */
.service-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

/* animations */
@keyframes scrollLeft {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

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

.service-fa-icon {
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1;
}


/* hero section ends here */

.feature-item,
.cta-box {
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease-out;
  transform-origin: center center;
  will-change: transform, opacity;
}
.feature-item.active,
.cta-box.active {
  opacity: 1;
  transform: scale(1);
}
.cta-text {
    display: inline-block;
    transition: opacity 0.1s ease;
}
.cta-btn {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.cta-box:hover {
    justify-content: center;
}
.cta-box:hover .cta-text {
    opacity: 0;
	visibility: hidden;
}
.cta-box:hover .cta-btn {
    transform: translateX(calc(-50% - 20px)); 
}
.cta-btn:hover{
	color: rgb(255, 255, 255);
}

.service-pill .svg-icon-wrap{
	height: var(--framer-aspect-ratio-supported, 24px);
    flex: none;
    width: 24px;
    position: relative;
}

.red-banner1{
	position: absolute;
    width: 100%;
    height: 100%;
    /*clip-path: polygon(0 0, 100% 0%, 100% 64%, 0% 100%);*/
    background: #FFFFFF;
}
/*.pulse-1, .pulse-2 {
    left: 50%;
    right: 0;
    top: 50%;
    bottom: 0;
    z-index: -1;
}
.pulse, .pulse-btn {
    height: 333px;
    width: 333px;
    background: linear-gradient(#fdefef, #f9eded);
    position: absolute;
    border-radius: 50%;
    opacity: .8;
}
.pulse, .pulse-1, .pulse-2 {
    transform: translate(-50%, -50%);
}
.pulse:before {
    animation: 2s ease-out infinite pulse;
}
.pulse-btn:after, .pulse-btn:before, .pulse:after, .pulse:before {
    position: absolute;
    opacity: .4;
}
.pulse-btn:after, .pulse-btn:before, .pulse:after, .pulse:before {
    content: '';
    height: 100%;
    background: #ee3636;
    width: 100%;
    border-radius: 50%;
}
.pulse:after {
    animation: 3s ease-out infinite pulse;
}
.pulse-btn:after, .pulse-btn:before, .pulse:after, .pulse:before {
    position: absolute;
    opacity: .4;
}
.pulse-btn:after, .pulse-btn:before, .pulse:after, .pulse:before {
    content: '';
    height: 100%;
    background: #ee3636;
    width: 100%;
    border-radius: 50%;
}
@keyframes pulse {
	100% {
		transform: scale(2);
		opacity: 0;
	}
}
@keyframes pulse-btn {
	100% {
		transform: scale(2);
		opacity: 0;
	}
}*/
.form-container{
	position: relative;
}
/*@media screen and (max-width: 900px) {
	.hero-section{
		padding: 35px 20px;
	}
}

@media screen and (min-width: 901px) {
	.hero-section{
		padding: 35px 70px;
	}
}*/
/*@media screen and (max-width: 410px) {
	.pulse, .pulse-btn {
        height: 300px;
        width: 300px;
    }
}
@media screen and (min-width: 411px) {
	.pulse, .pulse-btn {
    	height: 333px;
    	width: 333px;
	}
}*/
@media screen and (min-width: 1200px) {
	/*.container{
		padding: 60px 80px 0;
	}
	.hero-section .container{
		padding-bottom: 60px;	
	}*/
}
@media screen and (max-width: 809px) {
	/*.container{
		padding: 60px 16px 0;	
	}
	.hero-section .container{
		padding-bottom: 40px;
	}*/
	.stat-card{
		align-items: center;
		height: 100%;
	}
	.stat-number{
		justify-content: center !important;
	}
	.services-marquee-track.marquee-left{
		gap: 30px;
	}
}
@media screen and (min-width: 809px) {
	#seo-page-stats-cards .stat-number{
		justify-content: flex-start;
	}
	.services-marquee-track.marquee-left{
		gap: 60px;
	}
}
@media screen and (max-width: 767px) {
	body{
		overflow-x: hidden;
	}
	.ad360-btn-wrapper .button-container{
		justify-content: center;
	}
}

.ad360-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    background: linear-gradient(104deg, #d40000 0%, #0029aa 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: none;
    cursor: pointer;
    gap: 10px;
}
.ad360-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    gap: 10px;
    background-color: #f0f0f0;
    color: #0f0f0f;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.svg-arrow-bg-icon {
    height: 24px;
    flex: none;
    width: 24px;
    position: relative;
    --18mrqx2: rgb(255, 255, 255);
}
svg.telephone-icon {
    height: var(--framer-aspect-ratio-supported, 24px);
    flex: none;
    width: 24px;
    position: relative;
}
.ad360-btn-secondary:hover{
	color: #0f0f0f;
}
.ad360-btn-primary:hover{
	color: #ffffff;
}
