/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 02 2025 | 13:11:22 */
 
body {
   padding-top: 80px;
}

img.ad-footer-logo.image-only {
    min-width: 58px;
	margin-right: 10px;
}
.campaign-details{
    align-items: center;
	display: flex;
    gap: 10px;
	
}
.campaign-name{
	font-size: 20px;
	display: none !important;
}
.ad-footer-container-2{
	width: 100%;
    overflow: hidden;
    background: #523b96;
    color: white;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
/*     box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3); */
}
.ad-footer-container {
    width: 100%;
    overflow: hidden;
    background: #f80c61;
    color: white;
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
/*     box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3); */
}
.ad-footer-content {
    display: inline-flex;
    align-items: center;
    animation: scrollFooter 30s linear infinite;
}
.ad-footer-item {
    display: block;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    margin-right: 50px;
	margin-left: 50px;
    white-space: nowrap;
}
.ad-footer-item img{
	max-width: 26px;
}
.ad-footer-item.image-only {
	justify-content: center;
	margin-right: 0!important;
}
.ad-footer-item.image-only img{
	    max-width: 95px;
}
/* White dot styling */
.ad-footer-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    margin: 0 20px;
}
/* Seamless infinite scrolling animation */
@keyframes scrollFooter {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}

/* Pause on hover */
.ad-footer-container:hover .ad-footer-content {
    animation-play-state: paused;
}
.ad-footer-container-2:hover .ad-footer-content {
    animation-play-state: paused;
}


/* Container Styling */
.case-study-container {
/*     display: flex; */
	display: none;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 30px;
}

/* Columns */
.column-left, .column-right {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Image transition animation */
.column-left img, .column-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    transition: transform 1s ease-in-out, opacity 0.8s ease;
}

/* Animation Directions */
.column-left img {
    transform: translateY(-100%);
}
.column-left img.active {
    transform: translateY(0);
}

.column-right img {
    transform: translateY(100%);
}
.column-right img.active {
    transform: translateY(0);
}

/* Button Styling */
.button-container {
    text-align: center;
    margin: 30px 0;
	display: none;
}

.case-study-button {
    padding: 12px 30px;
    font-size: 18px;
    color: #fff;
    background: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.case-study-button:hover {
    background: #0056b3;
}

/* Container styling */
.map-container {
/*     display: flex; */
	display: none;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 30px;
}

/* Map section */
.map-section {
    flex: 1;
    position: relative;
    max-width: 50%;
}

.map-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* Clickable state areas */
.map-section .state {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* Blinking effect */
@keyframes blink {
    0% {
        box-shadow: 0 0 10px #007BFF;
    }
    50% {
        box-shadow: 0 0 20px #ff7f50;
    }
    100% {
        box-shadow: 0 0 10px #007BFF;
    }
}

/* Highlight the active state with a pulsating glow */
.map-section .state.active {
    animation: pulse 1.5s infinite alternate;
    transform: scale(1.2);
    border-color: #28a745;
    box-shadow: 0 0 25px #28a745;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px #28a745;
    }
    100% {
        box-shadow: 0 0 35px #28a745;
    }
}

/* State-specific positioning */
.gujarat {
    top: 50%;
    left: 30%;
    width: 80px;
    height: 80px;
}

.kashmir {
    top: 15%;
    left: 40%;
    width: 60px;
    height: 60px;
}

.telangana {
    top: 65%;
    left: 45%;
    width: 70px;
    height: 70px;
}

.mumbai {
    top: 55%;
    left: 35%;
    width: 60px;
    height: 60px;
}

/* Details section */
.details-section {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.details-section h2 {
    font-size: 28px;
    color: #007BFF;
    margin-bottom: 15px;
}

.details-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.details-section li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.active {
    opacity: 1;
}

.hidden {
    opacity: 0;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);  /* Black blurred background */
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 80%;
/*     max-height: 80%; */
/* 	padding: 20px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6); */
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

.popup-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;
    z-index: 10000;
}

.popup-close:hover {
    background: #000;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.our-work-section .wpb_column .team-member__picture img{
	box-shadow: none;
	border-radius: unset;
	border: 0px !important;
}
.our-work-section .profile-card-style-3 .team-member{
	background-color: #fff !important;
}

.our-work-section .profile-card-style-3 .team-member__picture{
	margin: 0px !important;
	padding: 0px !important;
	width: 100%;
}
.our-work-section .team-member__info{
	display: none;
}
.our-work-section .wpb_column.vc_column_container.vc_col-sm-1\/5{
	width: 500px;
	min-width: 500px;
}
.profile-card-style-3 .team-member{
	background-color: #fff;
}
.our-work-section .team-member.profile-background-dynamic-style {
    display: flex !important;
    gap: 14px !important;
	background: #fff;
}
.our-work-section .team-member.profile-background-dynamic-style{
	box-shadow: none !important;
/* 	border: 1px solid #dedede; */
}
.our-work-section .profile-name.profile-name-dynamic-style {
	font-size: 20px;
}
.our-work-section .profile-position.profile-position-dynamic-style{
	font-size: 15px;
	margin: 0px 0px 5px !important;
}
/* .our-work-section{
	display: flex;
	animation: scroll-animation 20s linear infinite; 
	flex-wrap: nowrap;
	position: relative;
	
}
.our-work-section:hover {
    animation-play-state: paused;
}

@keyframes scroll-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100%));
    }
} */

.our-work-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

.our-work-section {
    display: flex;
    gap: 10px; /* Adjust spacing between items */
    flex-wrap: nowrap; /* Prevent wrapping */
    align-items: center;
    transform: translateX(0);
    transition: transform 0.3s linear;
}
.our-work-section .profile-card-style-3 .profile-social-icon-background-dynamic-style {
  background: transparent !important;
  border-radius: 0px;
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
}
.profile_card_class_145473.profile-card-style-3 .profile-social-icon-color-dynamic-style:hover {
  color: transparent;
}
.home-feature-image{
	padding-top: 62px;
}
.qodef-page-header{
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; 
    background-color: #fff; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.qodef-element-from-left>div, .qodef-element-from-right>div{
	opacity: 1 !important;
}
.category-274 .qodef-title-holder .qodef-grid h1{
	color: #4a4092;
}
.icon-box .vc_custom_1661259079705 .qodef-iwt-text{
	text-align: left;
}
.icon-box .qodef-iwt-title{
	text-align: left !important;
}
.linkedin-popup-form .actions{
	margin: 0px !important;
	padding: 0px !important;
}
.triple-image-cursor{
	cursor: pointer;
}
.linkedin-influencer-icon-box .qodef-iwt-icon img{
	width: 80px;
	height: 80px;
}
.linkedin-influencer-icon-box .qodef-iwt-content{
	padding: 28px 0 0 !important;
}
.linkedin-influencer-icon-box{
	text-align: left !important;
}
.wordpress-custom-tabs ul li {
    margin: 10px !important;
}
.pt-40{
	padding-top: 40px;
}
.current_page_item a {
    color: #f90173;
}
.contact-icon .qodef-iwt-icon a span {
    rotate: 90deg;
}
span.qodef-icon-element.dripicons-phone {
    rotate: 90deg;
}
.icon-box-marketing-service .linkedin-influencer-icon-box .qodef-iwt-icon img{
	width: 60px;
	height: 60px;
}
.icon-box-marketing-service .linkedin-influencer-icon-box .qodef-iwt-content {
    padding: 7px 0 0 !important;
}
/* .icon-affiliate-box .qodef-eh-item-content .qodef-iwt-custom-icon .qodef-iwt-icon img{
	width: 50px;
} */

.landing-page-section{
	display: none !important;
}
.landing-slider{
	cursor: grab;
}


@media (max-width: 600px){
	 .single-post .has-fixed-layout{
		min-width: 500px !important;
	}

	.ad-footer-container-2{
		padding: 6px 0;
	}
	.ad-footer-container{
		padding: 6px 0;
	}
	.landing-page-section{
		min-width: 100% !important;
		width: 100% !important;
		padding: 40px 20px 0px 20px !important;
	}
	.icon-box-title .qodef-st-title{
		padding: 0px 20px;
	}
	.icon-box .qodef-iwt-icon{
		padding: 0 0 10px 0 !important;
	}
	.qodef-iwt.qodef-iwt-icon-left-from-title .qodef-iwt-title-text {
		padding: 0 0 10px 0 !important;
	}
	.footer-text {
	  font-size: 13px;
	}
	.testimonial-tabs .vc_tta-tabs.vc_tta-tabs-position-top .vc_tta-tabs-list{
	  overflow-x: hidden !important;
	}
	.qodef-dark-header .qodef-page-header>div:not(.fixed):not(.qodef-sticky-header) .qodef-logo-wrapper .qodef-normal-logo{
		opacity: 1 !important;
	}
	.wordpress-custom-tabs ul{
		display: flex !important;
		flex-wrap: nowrap;
		overflow-x: auto;
		min-width: 100% !important;
		scrollbar-width: thin;
	}
	.wordpress-custom-tabs ul li{
		min-width: fit-content;
	}
	.qodef-title-holder .qodef-title-image img{
		height: 240px;
		object-fit: cover;
	}
	.qodef-title-wrapper {
		height: 200px !important;
	}
	.qodef-blog-single-navigation .qodef-blog-single-prev{
		width: 100% !important;
	}
	.qodef-blog-single-navigation .qodef-blog-single-next{
		width: 100% !important;
	}
	.home-feature-image {
		padding-top: 20px;
	}
	.qodef-wrapper {
		margin-top: -76px;
	}
	.our-work-section .profile-card-style-3 .team-member.profile-background-dynamic-style {
		display: block !important;
	}
	.our-work-section .wpb_column.vc_column_container.vc_col-sm-1\/5{
		width: 300px !important;
		min-width: 300px !important;
	}
	.our-work-section .wpb_column .team-member__picture img{
		width: 100%;
		min-width: 270px;
	}
	.our-work-section{
		gap: 20px;
	}
	.our-work-section .profile-name.profile-name-dynamic-style {
		margin: 5px 0px !important;
		font-size: 18px;
	}
	.our-work-section .profile-position.profile-position-dynamic-style{
		font-size: 14px;
		margin: 0px 0px 5px !important;
	}
	.our-work-section .team-member.profile-background-dynamic-style{
		border-radius: 15px !important;
	}
	.popup-close {
		width: 25px;
		height: 25px;
	}

}