.contentgen-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    color: #1e293b;
    background-color: #f9fafb;
    line-height: 1.6;
}

/* Header & Banner Styles */
.contentgen-header {
    background: linear-gradient(120deg, #4f46e5, #4338ca);
    color: white;
    padding: 10rem 2rem;
    position: relative;
    overflow: hidden;
}

.contentgen-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.contentgen-header-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#contentgen-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contentgen-header-desc {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contentgen-header-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contentgen-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contentgen-btn-primary {
    background: white;
    color: #4f46e5;
    border: none;
}

.contentgen-btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.contentgen-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contentgen-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Content Layout */
.contentgen-layout-wrapper {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2.5rem;
}

.contentgen-main-area {
    flex: 1;
}

.contentgen-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Article Styles */
.contentgen-article {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contentgen-entry-content {
    font-size: 1.1rem;
}

.contentgen-entry-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem !important;
    margin: 2rem 0 1rem;
    color: #4338ca;
}

.contentgen-entry-content h3 {
    font-size: 1.5rem !important;
    margin: 1.5rem 0 0.8rem;
    color: #4f46e5;
}

.contentgen-entry-content p {
    margin-bottom: 1.2rem;
}

.contentgen-entry-content blockquote {
    border-left: 4px solid #10b981;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #64748b;
}

/* Sidebar Styles */
.contentgen-sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.contentgen-widget-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #e2e8f0;
    color: #4338ca;
}

.contentgen-feature-list {
    list-style: none;
}

.contentgen-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contentgen-feature-item:last-child {
    border-bottom: none;
}

.contentgen-feature-icon {
    color: #10b981;
    font-size: 1.2rem;
}

/* Stats Section */
#contentgen-stats {
    background: linear-gradient(to right, #4f46e5, #10b981);
    padding: 4rem 2rem;
    color: white;
    margin: 4rem 0;
}

.contentgen-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contentgen-stat-box {
    text-align: center;
    padding: 1.5rem;
}

.contentgen-stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contentgen-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.contentgen-footer {
    background: #1e293b;
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.contentgen-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.contentgen-footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.contentgen-footer-links {
    list-style: none;
}

.contentgen-footer-link {
    margin-bottom: 0.8rem;
}

.contentgen-footer-link a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contentgen-footer-link a:hover {
    color: white;
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contentgen-layout-wrapper {
        flex-direction: column;
    }
    
    .contentgen-sidebar {
        width: 100%;
    }
    
    #contentgen-main-title {
        font-size: 2.8rem;
    }
}

.acg-cta{position:relative;margin:28px 0 40px;border-radius:22px;overflow:hidden;background:#ff7a00;color:#fff;padding:34px 28px;box-shadow:0 12px 40px rgba(0,0,0,.12);z-index: 1;}
.acg-cta__wrap{max-width:980px}
.acg-cta__title{font-size:28px;line-height:1.2;font-weight:800;letter-spacing:.2px}
.acg-cta__sub{margin-top:10px;font-size:15px;opacity:.95}
.acg-cta__actions{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.acg-cta__btn{appearance:none;border:none;background:#000;color:#fff;padding:12px 30px;border-radius:999px;font-weight:600;font-size:18px;display:inline-flex;align-items:center;gap:10px;cursor:pointer;text-decoration:none;box-shadow:0 6px 18px rgba(0,0,0,.25);height: 54px;border: 1px solid #484848;}
.acg-cta__btn:hover {
  background-color: #fff;
  color: #000 !important;
}
.acg-cta__btn:hover .acg-cta__dot {
  background-color: #000;
}
.acg-cta__btn img {
  margin: 0 !important;
  width: 30px !important;
}
.acg-cta__btn:hover{filter:brightness(1.06)}
.acg-cta__dot{width:18px;height:18px;border-radius:999px;background:#fff;display:inline-block}
.acg-cta::before{content:””;position:absolute;inset:0;background:
radial-gradient(closest-side at 85% 60%, rgba(255,255,255,.22), rgba(255,255,255,0) 55%),
radial-gradient(closest-side at 85% 60%, rgba(255,255,255,.18), rgba(255,255,255,0) 38%),
radial-gradient(closest-side at 85% 60%, rgba(255,255,255,.14), rgba(255,255,255,0) 22%),
linear-gradient(0deg, rgba(0,0,0,.10), rgba(0,0,0,.10)),
url(‘https://new.marqetrix.com/wp-content/uploads/2025/04/Web-Development-Mumbai.webp’);
background-size:cover;background-position:center right;filter:saturate(1.05) contrast(1.05)}
.acg-cta::after{content:””;position:absolute;inset:0;background:linear-gradient(90deg, rgba(255,122,0,.75) 0%, rgba(255,122,0,.45) 45%, rgba(255,122,0,.20) 70%, rgba(255,122,0,.10) 100%)}
.acg-cta__content{position:relative;z-index:2}
.acg-cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.acg-cta__btn br {
  display: none;
}
.acg-cta__btn {
  color: #fff !important;
}
@media (min-width:768px){.acg-cta{padding:44px 48px}.acg-cta__title{font-size:36px}.acg-cta__sub{font-size:16px}}



.hg-popup-container {
            background-image: url('https://marqetrix.com/wp-content/uploads/2025/07/Mqx-9.webp');
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 40px;
            width: 100%;
            max-width: 890px;
            text-align: left;
            color: white; 
            position: relative;
            }
            .hg-popup-container::before{
                content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        background-color: rgba(0, 0, 0, 0.8);
            z-index: 1; 
            border-radius: 10px;
            }
            .hg-popup-content {
            position: relative;
            z-index: 9;
            }
            .hg-popup-content h2 {
            font-size: 30px;
            margin-bottom: 20px;
            color: #fff;
            }

            .hg-popup-buttons {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            flex-wrap: wrap;
            }
            .hg-popup-green-btn {
                text-decoration: none;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 18px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: flex;
            align-items: center; 
            gap: 10px; 
            background-color: #40bb75;
            }
            .hg-popup-green-btn:hover {
                background-color: #fff;
                color: #000;
            }
            .hg-popup-green-btn i {
            font-size: 18px;
            margin-left: 10px;
            border: 1px solid #fff;
            border-radius: 50%;
            padding: 10px;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            color: #000;
            }
            .hg-popup-green-btn:hover i {
            color: #fff;
            background-color: #000;
            }
            .hg-popup-quote {
                text-decoration: none;
                background-color: #000;
                color: #fff !important;
                padding: 12px 30px;
                border-radius: 30px;
                font-size: 18px;
                font-weight: 500;
                transition: background-color 0.3s ease;
                display: flex;
                align-items: center; 
				border: 1px solid #484848;
            }
            .hg-popup-quote:hover {
            color: #000 !important;
            background-color: #fff;
            }
.hg-popup-quote br {
  display: none;
}
            .hg-popup-btn i {
            font-size: 18px;
            margin-left: 10px;
            border-radius: 50%;
            padding: 10px;
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
            color: #000;
            }
            .hg-popup-quote:hover i {
            color: #fff;
            background-color: #000;
            }

            @media screen and (max-width: 600px) {
            .hg-popup-container {
                padding: 15px;
                margin: 0px 15px;
            }
            }
            @media screen and (min-width: 600px) and (max-width:992px){
            .hg-popup-container {
                padding: 15px;
                margin: 0px 15px;
            }
            }

        /* Form */
        .hg-popup-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.90);
            justify-content: center;
            align-items: center;
            z-index: 9999999;
            animation: fadeIn 0.5s ease-in-out;
        }

        .hg-popup-popup-content {
            display: flex;
            justify-content: space-between;
            /* align-items: center; */
            /* background-color: #fff; */
            background-image: url("Grey and Blue Minimalist Leadership LinkedIn Article Cover Image.png");
            width: 80%;
            max-width: 600px;
            border-radius: 16px;
            padding: 50px;
            box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
            transform: scale(0.9);
            animation: popupAnimation 0.5s forwards;
            top: 60px;
            position: absolute;
			    background-color: #fff;
        }

        @keyframes popupAnimation {
            0% {
                transform: scale(0.9);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .hg-popup-close-btn {
            position: absolute;
  top: 15px;
  right: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.3s ease;
  border-radius: 50%;
  background-color: #000;
  height: 22px;
  width: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
        }

        .hg-popup-close-btn:hover {
            color: #000;
            background-color: #fff;
            border: 1px solid #000;
        }

        .hg-popup-popup-img {
            /* margin-top: 27px; */
  width: 60%;
  height: 392px;
border-radius: 0px 70px 0px 70px !important;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  object-position: center center;
  margin-left: -200px;
        }

        .hg-popup-popup-form {
            width: 70%;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .hg-popup-popup-form h2 {
            color: #333;
            font-size: 32px;
			border-top: none !important;
  			padding-top: 0 !important;
  			margin-top: 0 !important;
        }

        .hg-popup-popup-form input, .hg-popup-popup-form textarea {
		  padding: 12px !important;
		  border-radius: 10px !important;
		  border: 1px solid #ddd !important;
		  font-size: 16px;
		  transition: border 0.3s ease !important;
		  margin-bottom: 15px;
		}

        .hg-popup-popup-form input:focus, .hg-popup-popup-form textarea:focus {
            border-color: #ff4b2b;
            outline: none;
        }

        .hg-popup-popup-form button {
            padding: 12px 30px;
            background-color: #000000;
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 18px;
            cursor: pointer;
            transition: background 0.3s ease;
            border: 1px solid #000;
        }

        .hg-popup-popup-form button:hover {
            background-color: #ffffff;
            color: #000;
            border: 1px solid #000;
        }
        .hawk-a a{
  font-size: 12px;
  bottom: 20px;
  position: absolute;
  color: #9d9696;
  text-decoration: none;
}
.areas-we-serve-sidebar {
  z-index: 1 !important;
}

.acg-faq-answer {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}
.acg-faq-item .acg-faq-question[aria-expanded="true"] + .acg-faq-answer {
    max-height: 1000px; /* Adjust if content is taller */
    opacity: 1;
}
.acg-faq-item .acg-faq-question br {
  display: none;
}
.acg-faq-item .acg-faq-question {
  background-color: transparent;
  padding: 0;
  border: none;
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  text-align: left;
  position: relative;
	white-space: normal;
	padding-right: 40px;
}
.acg-faq-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #cacaca;
  margin-bottom: 15px;
}
.acg-faq-item p {
  display: none;
}
.acg-faq-item .acg-faq-answer p {
  display: block;
  margin-bottom: 0;
  padding-top: 15px;
}
.acg-faq-item .acg-faq-question::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transition: transform 0.3s ease;
}
.acg-faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(-136deg);
}

.related-services .iLocalCommunityCity-title {
  display: none;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList {
  background-color: transparent;
  border-radius: 0;
  color: #2E2E2E;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul {
  padding: 0;
	display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li a {
  padding: 10px 0 10px 25px;
  color: #2E2E2E;
  font-size: 18px;
  position: relative;
	font-weight: 700;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li a:hover {
  background-color: transparent;
  color: var( --e-global-color-secondary );
}
.related-services {
  margin-bottom: 40px;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li a::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0px;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/2025/10/next.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.page-template-community h2 strong, .page-template-community h3 strong {
  font-weight: 600;
}
.acg-faq-item + p strong {
  font-weight: 500;
}
.acg-faq-item + p + p {
  display: none;
}
.page-template-community .global-content h2, .page-template-community .global-content h3 {
  border-top: 1px solid #cecece;
  padding-top: 35px;
  margin-top: 50px;
}
.page-template-community .acg-cta .acg-cta__title {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.related-services #iLocalCommunityCity-container {
  max-width: 100%;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li:last-child a {
  border-bottom: none;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li {
  border-bottom: 1px solid #cecece;
  padding: 10px 0px;
	flex: 48%;
  max-width: 48%;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li:last-child {
  border-bottom: none;
}
#iLocalCommunity-container .iLocalCommunity-communityList span {
  color: #000 !important;
	padding-top: 10px !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList {
  border: none !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 {
  margin-top: 0 !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 span {
  padding-left: 24px !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 span {
  padding-left: 45px !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 span::after {
  left: 20px;
}
#iLocalCommunity-container .iLocalCommunity-communityList span::after {
  content: "";
  position: absolute;
  top: 0 !important;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url(https://marqetrix.com/wp-content/uploads/2025/10/next.png) !important;
  transform: none !important;
  bottom: 0;
  margin: auto 0;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 .level-posts li a {
  padding-left: 60px !important;
  padding-right: 0 !important;
	position: relative;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 .level-posts li a::before {
  content: '';
  background-color: #000;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 47px;
  top: 17px;
  border-radius: 50%;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 span {
  padding-left: 55px !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 span::after {
  left: 30px;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 {
  margin-top: 0 !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 ul.level-3 {
  margin-top: 0 !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 ul.level-3 span {
  padding-left: 60px !important;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 ul.level-3 span::after {
  left: 40px;
}
#iLocalCommunity-container .iLocalCommunity-communityList li.open > span::after {
  transform: rotate(90deg) !important;
}
/* #iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 li:last-child span {
  border-bottom: none;
} */
.iLocalCommunityCity-communityList ul {
  list-style-type: none;
}
.global-shortcode .iLocalCommunityCity-title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
	margin-bottom: 15px;
	color: #1dc690;
}
.global-shortcode .iLocalCommunityCity-communityList a {
  display: block;
}
#iLocalCommunity-container .iLocalCommunity-communityList ul.level-0 ul.level-1 ul.level-2 li:last-child span {
  border-bottom: none;
}
#iLocalCommunity-container .iLocalCommunity-communityList li.current-menu-item a,
.global-shortcode .iLocalCommunityCity-communityList li.current-menu-item a {
  color: #00C0EA !important;
}


@media only screen and (max-width: 479px) {
.hg-popup-popup-img {
  display: none;
}
.hg-popup-popup-form {
  width: 100%;
}
.hg-popup-popup-content {
  width: 92%;
  padding: 50px 20px;
}
.acg-cta {
  padding: 34px 20px;
}
.acg-cta__btn {
	padding: 12px 25px;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.hg-popup-btn {
    width: 100%;
    justify-content: center;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li {
  flex: 100%;
  max-width: 100%;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li a {
  display: flex;
}
.related-services #iLocalCommunityCity-container .iLocalCommunityCity-communityList ul li a::before {
  top: 14px;
}
}
