/* Common Style starts */
:root {
    --primary-color: #30AD1C;
    --secondary-color: #1778BE;
    --page-fade: #4285F4;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-gray: #6D7783;
	--heading-color: #212529;
}

 .page-primary {
    background: var(--primary-color);
} 
.text-primary {
	color: var(--primary-color) !important;
}

.heading-color {
	color: var(--heading-color);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.text-gray {
    color: var(--text-gray) !important;
}

html body {
    color: var(--text-theme) !important;
}

.object-cover {
    object-fit: cover;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background: var(--primary-color) !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    background: #111451 !important;
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.text-highlight {
    color: var(--secondary-color) !important;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */

.intro-list {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.intro-list li {
    font-size: 19px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.intro-list li img {
    width: 24px;
}

/* Counter Intro */

.sep-1 img {
    height: 250px;
}

.sep-2 img {
    margin: -20px 0 0;
}

.counter-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--white-color);
}


/* Management Intro */

.management-intro {
    background-image: url(../images/adwards-images/management-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sticky-column {
    position: sticky;
    top: 180px;
}

.management-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.management-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #FFFFFF14;
    border: 2px solid #FFFFFF40;
    backdrop-filter: blur(10px);
    padding: 30px 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.management-icon {
    width: 100%;
    max-width: 80px;
}

.count-text {
    position: absolute;
    right: 20px;
    top: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
}

.management-block::before,
.service-block::before,
.choose-block::before {
    content: "";
    position: absolute;
    inset: -3px;
    padding: 4px;
    background: linear-gradient(270deg, #34A853, #FBBC04, #4285F4);
    border-radius: 30px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.management-block:hover::before,
.service-block:hover::before,
.choose-block:hover::before {
    opacity: 1;
}

/* Service */

.service-slider {
    background-color: #4285F41A;
}

.service-slider-wrap .swiper-slide {
    height: auto !important;
}

.service-block {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--white-color);
    border: 2px solid #4285F44D;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    padding: 30px 30px 80px;
}

.service--icon {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--page-fade);
    border-radius: 50px;
}

.serv-slide-btn {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-block .count-text {
    position: absolute;
    right: 20px;
    top: 10px;
    background: linear-gradient(180deg, #EAEAEA 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
}

/* Process Block */

.process-sec {
    padding-bottom: clamp(4.375rem, -15.4943rem + 55.2885vw, 15rem) !important;
}

.process-slider .swiper-slide:not(:last-child)::after {
    content: '';
    width: 60%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 75%;
    top: 75px;
    background: rgba(255, 255, 255, .3);
}

.process-sec > span {
    opacity: 10%;
    color: var(--white-color);
    font-size: 12vw;
    text-align: center;
    display: block;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

.process-block h4 {
    margin-bottom: 90px;
}

.process-block::before {
    content: '';
    width: 38px;
    height: 38px;
    background: var(--white-color);
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
}

.process-block::after {
    content: '';
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    height: 18px;
    width: 18px;
    border-radius: 50px;
    background: var(--page-fade);
}

.process-slider .swiper-slide:nth-child(2) .process-block::after {
    background: #DB4437;
}

.process-slider .swiper-slide:nth-child(3) .process-block::after {
    background: #F4B400;
}

.process-slider .swiper-slide:nth-child(4) .process-block::after {
    background: #0F9D58;
}

/* Choose Intro */

.choose-intro {
    background-image: url(../images/adwards-images/choose-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.choose-block {
    width: 100%;
    backdrop-filter: blur(100px);
    border: 2px solid #FFFFFF40;
    background: #FFFFFF14;
    padding: 30px 30px;
    border-radius: 30px;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 32px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

.cta-wrapper {
    padding: 50px 100px;
    background-color: var(--primary-color);
    border-radius: 30px;
    text-align: center;
}

/*-- New --*/
.hero-banner, .number-speaks {
    background-image: url(../images/india-images/bg-hero.webp);
	  background-size: cover;
    background-position: center;
}
.intro-list li img {
    width: 24px;
    filter: brightness(100);
}
.five-boxes-stand-we {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}
.five-boxes-stand-we > div:nth-child(2n) {
	background-color: rgba(48, 173, 28, 0.08);
	margin-top:80px;
}
.five-boxes-stand-we > div {
    background-color: rgba(23, 120, 190, 0.07);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 30px;
}
.marketing-expert-section {
    background-color: rgba(23, 120, 190, 0.06);
    background-image: url(../images/india-images/right-bottom-bg.webp);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 25%;
}
.marketing-expert-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-image: url(../images/india-images/left-top-bg.webp);
    background-repeat: no-repeat;
    background-size: 100%;
    pointer-events: none;
}
.case-study-left {
    background-color: rgba(23, 120, 190, 0.06);
    height: 100%;
}
.case-study-inner {
    border: 2px solid var(--secondary-color);
    border-radius: 30px;
    padding: 80px 50px;
}
.right-case-india ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.right-case-india ul li {
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 25px;
}
.right-case-india > a {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    column-gap: 15px;
}
#slider-case-study, #image-slider {
    overflow: hidden;
}
.swiper-pagination-case-study > span {
    width: 16px;
    height: 16px;
    border-radius: 0;
    background-color: rgba(23, 120, 190, 0.1);
    opacity: 1;
}
.swiper-pagination-case-study span.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
}
.swiper-pagination-image-slider span {
	width: 16px;
    height: 16px;
    border-radius: 0;
   background-color: rgba(23, 120, 190, 0.1);
    opacity: 1;
}
.swiper-pagination-image-slider span.swiper-pagination-bullet-active {
	background-color: var(--secondary-color);
}
.swiper-pagination-case-study {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -50px !important;
    left: 0;
}
div#slider-case-study {
    position: relative;
}
.right-imgs-number-speaks img {
    margin-bottom: 30px;
}
.single-driving-success {
    border: 1px solid #E0E0E0;
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 50px;
    height: 100%;
}
.single-driving-success p {
    margin: 0;
}
.single-driving-success > span {
    width: 88px;
    height: 88px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin-bottom: 30px;
}
.row.boxes-row .col-lg-4 {
    margin-bottom: 30px;
}
.single-driving-success:hover {
	background: var(--secondary-color);
}
.single-driving-success:hover span {
	background: var(--primary-color);	
}
.single-driving-success:hover h4, .single-driving-success:hover p {
	color: #fff;
}
.top-results {
    background-color: rgba(23, 120, 190, 0.06);
    background-image: url(../images/india-images/right-top-success.webp);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 25%;
}

.our-packages-section {
	background-color: var(--heading-color);
}
.single-pacakage {
    padding: 50px 50px 150px;
    border-radius: 30px;
    position: relative;
    height: 100%;
	z-index:2;
}
.pacakage-heading-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap:30px;
}
.pacakage-heading-single h3 {
    color: #fff !important;
    margin: 0;
}
.single-pacakage ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.single-pacakage ul li {
    color: #fff;
    display: inline-block;
    width: 100%;
    margin: 8px 0;
	position:relative;
	padding: 0 0 0 35px; 
}
.single-pacakage ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-image: url(../images/india-images/tick-light.webp);
}
.single-pacakage a.button {
    position: absolute;
    left: 50px;
    bottom: 55px;
    width: calc(100% - 100px);
    justify-content: center;
}
.single-pacakage > span {
    position: absolute;
    top: -45px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    text-align: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    z-index: -2;
    padding: 10px 10px 100px;
}
.single-pacakage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    z-index: -1;
    border-radius: 30px;
    backdrop-filter: blur(100px);
}
.top-seo-mar-section {
    background-image: url(../images/india-images/right-top-success.webp);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 25%;
}
section.process-sec.page-secondary {
    background-color: var(--secondary-color);
    padding-bottom: 12rem !important;
}
.row.boxes-row .col-lg-6 {
    margin-bottom: 30px;
}

.how-seo-work {
    background-color: var(--heading-color);
}
#seo-work-slider .swiper-slide {
    background-color: #fff;
    border-radius: 30px;
    height: auto;
    padding: 50px 50px 150px;
}
#seo-work-slider .swiper-slide > h2 {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 100px;
    font-weight: 900;
    background: linear-gradient(178deg,rgba(0, 0, 0, 0.2) 0%, rgba(237, 221, 83, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
#seo-work-slider .swiper-slide span {
    width: 96px;
    height: 96px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    position: absolute;
    left: 50px;
    bottom: 50px;
}
#seo-work-slider .swiper-slide:hover {
    background-color: var(--secondary-color);
}
#seo-work-slider .swiper-slide:hover h3, #seo-work-slider .swiper-slide:hover p {
	color: #fff !important; 
}
#seo-work-slider .swiper-slide:hover span {
	background-color: var(--primary-color);
}
.single-benefit-choosing span {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--secondary-color);
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
.single-benefit-choosing {
    padding: 0 0 0 50px;
}
.benefit-choosing-section {
    background-image: url(../images/india-images/right-top-success.webp);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 25%;
	background-color: rgba(23, 120, 190, 0.06);
}
.iframe-box-youtube {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-top: 50%;
}
.iframe-box-youtube iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
img.youtube-polygon {
    position: absolute;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.tabs-industry ul#myTab li {
    width: 100%;
}
.tabs-industry ul#myTab li button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    border: hidden;
    border-radius: 20px;
    font-size: 18px;
    color: var(--heading-color);
}
.tabs-industry ul#myTab li button.active, .tabs-industry ul#myTab li button:hover {
	background-color: var(--secondary-color);
	color:#fff;
}
.tabs-industry ul#myTab li button.active img, .tabs-industry ul#myTab li button:hover img {
	filter: brightness(100);
}
ul#myTab {
    border: hidden;
}
.tabs-section-top-seo {
    background-image: url(../images/india-images/bg-tab-f.webp);
    background-size: cover;
}
ul#myTabaward li button {
    padding: 0;
    border: hidden;
}
ul#myTabaward {
    border: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}
ul#myTabaward li button {
    border: 7px solid transparent !important;
    border-radius: 100%;
    position: relative;
}
ul#myTabaward li button.active {
    border-color:var(--primary-color) !important;
}
ul#myTabaward	 li button.active::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 7px solid var(--primary-color);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    z-index: 2;
}
#myTabContentaward .tab-pane {
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    padding: 80px;
    text-align: center;
}
#myTabContentaward .tab-pane p:last-child {
    margin-bottom: 0;
}
.sir-intro-section {
    background-image: url(../images/india-images/img-sir-bg.webp);
}
.blue-section-three {
    background-image: url(../images/india-images/bg-blue.webp);
	background-position:center;
	background-size:cover;
}
.single-best-seo img {
    margin: 0 0 -40px -30px;
}
.left-benefits-choosing ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.left-benefits-choosing li {
    font-weight: 600;
    margin: 5px 0;
    display: inline-block;
    padding: 0 0 0 40px;
    position: relative;
    width: 100%;
}
.left-benefits-choosing li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-image: url(../images/india-images/img-tick.webp);
    background-size: 100%;
}
.ads-banner {
    background-color: var(--secondary-color);
    padding: 50px 80px;
    border-radius: 50px;
}
ul.link-list-india-seo {
    margin: 0;
    padding: 0 0 0 20px;
    color: var(--secondary-color);
}
ul.link-list-india-seo li a {
    color: var(--seconary-color);
    font-weight: 600;
}
ul.link-list-india-seo li a:hover {
    color: var(--primary-color);
}
ul.link-list-india-seo li{
	margin:5px 0;
	width:100%;
}

.contact-seo-india {
    background-color: var(--secondary-color);
}
.single-seo-field input {
    width: 100%;
    height: 50px;
    background: transparent;
    color: #fff;
	   border: hidden;
    border-bottom: 1px solid #d5d5d5;
}
.single-seo-field {
    margin-bottom: 15px;
}
.single-seo-field textarea {
    width: 100%;
    border: hidden;
    background: transparent;
    color: #fff;
    border-bottom: 1px solid #fff;
    height: 100px;
}
.contact-seo-india form input[type="submit"] {
    width: 100%;
    border: hidden;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 13px 0;
}
.single-seo-field input::-webkit-input-placeholder, .single-seo-field textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
  opacity:1;
}
.single-seo-field input::-moz-placeholder, .single-seo-field textarea::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
  opacity:1;
}
.single-seo-field input:-ms-input-placeholder, .single-seo-field textarea:-ms-input-placeholder { /* IE 10+ */
  color: #fff;
  opacity:1;
}
.single-seo-field input:-moz-placeholder, .single-seo-field textarea:-moz-placeholder { /* Firefox 18- */
  color: #fff;
  opacity:1;
}
.contact-seo-india iframe {
    width: 100%;
    height: 100%;
}
#award-slier .swiper-wrapper {
    align-items: center;
}
div#award-slier .swiper-slide {
    text-align: center;
}
.how-seo-work {
    overflow: hidden;
}
div#award-slier {
    overflow: inherit;
}	
/*-- New End --*/

.case-study-inner iframe {
    width: 100%;
    height: 310px;
}
div#slider-case-study .swiper-slide {
    height: auto;
}
div#slider-case-study .swiper-slide > div {
	height:100%;
}
.swiper-pagination-image-slider {
    display: flex;
    justify-content: center;
}
div#image-slider .swiper-wrapper {
    align-items: center;
}
section.number-speaks {
    background-image: none;
    background-color: rgba(23, 120, 190, 0.06);
}
section.tabs-section-top-seo {
    margin: -25px 0 0;
}
section.youtube-section {
    background-color: rgba(23, 120, 190, 0.06);
}

div#award-slier img {
    max-width: 120px;
}
.single-driving-success a {
    color: rgb(11, 12, 13);
}

/* Responsive */

@media only screen and (max-width: 1599px) {
    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media (max-width:1199px){
.case-study-inner {
    padding: 30px 20px;
}
.single-link-growth > img {
    max-width: 70px;
}
.right-case-india ul li {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.right-case-india ul li img {
    max-width: 20px;
}
.right-case-india > a {
    font-size: 18px;
}
.single-pacakage {
    padding: 30px 20px 100px;
}
.single-driving-success {
    padding: 30px 20px;
}
#seo-work-slider .swiper-slide {
    padding: 30px 20px 130px;
}
#seo-work-slider .swiper-slide span {
    left: 20px;
    bottom: 30px;
}
.single-pacakage a.button {
    left: 20px;
    bottom: 25px;
    width: calc(100% - 40px);
}
.single-benefit-choosing span {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
.single-benefit-choosing {
    padding: 0 0 0 40px;
}
.tabs-industry ul#myTab li button {
    padding: 17px 20px;
    font-size: 16px;
}
#myTabContentaward .tab-pane {
    padding: 40px;
}
.left-benefits-choosing li::before {
    top: 2px;
    width: 25px;
    height: 25px;
}
}

@media only screen and (max-width: 991px) {

    .intro-list {
        width: fit-content;
        margin-inline: auto;
    }

    .sep-1 img {
        height: auto;
    }

    .management-block {
        flex-direction: column;
    }

    .cta-wrapper {
        padding: 40px 20px;
    }
	.five-boxes-stand-we {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.five-boxes-stand-we > div:nth-child(2n) {
    margin-top: 0;
}
div#slider-case-study {
    margin-top: 30px;
}
.our-packages-section .row .col-lg-4:nth-child(2) {
    margin: 70px 0 25px;
}
img.youtube-polygon {
    bottom: -24px;
    max-width: 60px;
}
div#myTabContent .row .col-lg-6:first-child {
    display: none;
}
ul#myTabaward {
    column-gap: 10px;
}
.single-driving-success span {
    margin: 0 auto 20px;
}
.float-end {
    float: none !important;
}
.tabs-industry ul#myTab li button {
    font-size: 16px;
}
.benefit-choosing-section img {
    margin-top: 30px;
}
#seo-work-slider .swiper-slide span {
    left: 50%;
    transform: translateX(-50%);
}
section.youtube-section h2 {
    margin-bottom: 30px !important;
}
ul#myTabaward {
    row-gap: 30px;
}
.sir-intro-section img {
    margin-bottom: 30px;
}
.top-results img {
    margin-top: 25px;
}
section.faq-section .col-lg-5 {
    margin-top: 30px;
}
.contact-seo-india form {
    margin-bottom: 30px;
}
#myTabContentaward .tab-pane {
    padding: 20px 20px;
}
#seo-work-slider .swiper-slide > h2 {
    right: 10px;
    top: 10px;
    line-height: 1 !important;
    font-size: 50px !important;
}
.our-packages-section h2 + .mb-5 {
    margin-bottom: 0 !important;
}
.row.boxes-row .col-lg-4:last-child {
    margin: 0;
}
}

@media only screen and (max-width: 767px) {

    .count-text {
        font-size: 70px;
    }

    .service-block,
    .management-block,
    .choose-block {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .management-block::before, .service-block::before, .choose-block::before {
        border-radius: 20px;
    }

    .new-faq .accordion-item {
        padding: 20px 0px !important;
    }
	.case-study-inner iframe {
    width: 100%;
    height: auto;
}
.ads-banner {
    padding: 30px 30px;
}
}