/* Custom CSS for Bootstrap Integration */
:root {
    --bs-primary: #ff69b4;
    --bs-primary-rgb: 255, 105, 180;
}

html,
body {
    overflow-x: hidden;
    /* Prevent horizontal scrollbar globally */
}

body {
    font-family: 'Gilroy', sans-serif !important;
    line-height: 1.6;
}

/* Mobile scroll fix */
@media (max-width: 768px) {

    html,
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        height: auto !important;
        min-height: 100vh;
        /* Changed from 100% to 100vh */
    }

    /* Fix mobile header to prevent scroll blocking */
    .custom-fixed-header {
        position: fixed !important;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Ensure body scroll is not blocked */
    body {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        touch-action: manipulation;
        /* Remove problematic padding/margin that affects scrollbar calculation */
        min-height: calc(100vh + 100px);
        /* Ensure sufficient height for proper scrollbar */
    }

    /* Fix hero section to prevent initial scroll dead zone */
    .hero {
        padding-top: 100px !important;
        /* Reduced from 120px */
        margin-top: 0px;
        /* Removed margin that was affecting height calculation */
    }
}

/* Override Bootstrap primary color */
.btn {
    height: 60px;
    padding: 0 16px;
}

.btn-lg {
    height: 88px;
    padding: 0 45px;
}

.btn-primary {
    background: linear-gradient(98.94deg, #FF6735 2.43%, #FF4BBA 100%);
    border: none;
    border-radius: 100px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(98.94deg, #DF4C1B 2.43%, #E61B98 100%);
}

.text-primary {
    color: #ff69b4 !important;
}

.container.custom-container {
    max-width: 1680px;
}

.section-title {
    font-size: 60px;
}

.section-subtitle {
    color: #56606F;
    font-size: 20px;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}



/* Trustpilot-style Review Styles */
.trustpilot-header {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.rating-text {
    color: #333;
    font-weight: 700;
}

.trustpilot-stars {
    gap: 2px;
}

.trustpilot-star {
    width: 24px;
    height: 24px;
    background: #00b67a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.rating-score {
    color: #333;
    font-weight: 700;
}


/* Header Styles */
.custom-fixed-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
}

.header .navbar {
    background: rgba(255, 255, 255, 1) !important;
    padding: 1rem 0;
    z-index: 999999;
}

.header .navbar .navbar-brand .logo {
    height: 40px;
    width: auto;
}

.header .navbar .navbar-nav {
    align-items: center;
    gap: 15px;
}

.header .navbar .navbar-nav .nav-link {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #000000;
}

.header .navbar .navbar-nav .nav-link:hover {
    color: #ff69b4 !important;
}

.header .navbar .navbar-nav .cta-btn {
    width: 220px;
    height: 70px;
    padding: 22px;
    line-height: 20px;
    position: relative;
    overflow: hidden;
}

.header .navbar .navbar-nav .cta-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(98.94deg, #FF6735 2.43%, #FF4BBA 100%);
    z-index: -1;
    transition: all 0.3s ease;
    width: 30%;
    border-radius: 100px;
    opacity: 0;
}

.header .navbar .navbar-nav .cta-btn:hover {
    background: transparent;
    border-color: transparent;
}

.header .navbar .navbar-nav .cta-btn:hover::before {
    width: 100%;
    opacity: 1;
}

/* Language Dropdown Styles */
.header .navbar .navbar-nav .language-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0px solid #e9ecef;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    position: relative;
}

.header .navbar .navbar-nav .language-circle-btn svg {
    width: 20px;
    height: 20px;
    vertical-align: -4px;
}

.header .navbar .navbar-nav .language-circle-btn:hover {
    border: 1px solid #000;
}

.header .navbar .navbar-nav .language-circle-btn:focus {
    border: 1px solid #000;
}

.header .navbar .navbar-nav .language-circle-btn::after {
    display: none;
}


.header .navbar .navbar-nav .dropdown-menu.language-dropdown-menu {
    width: 168px;
    left: -50px;
    top: 70px;
    background: #FFFFFF;
    box-shadow: 8px 8px 40px rgba(123, 135, 142, 0.26);
    border-radius: 26px;
    border: none;
    padding: 20px;
}

.header .navbar .navbar-nav .dropdown-menu.language-dropdown-menu .dropdown-item.language-item {
    color: #222;
}

.header .navbar .navbar-nav .dropdown-menu.language-dropdown-menu .flag-svg {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.header .navbar .navbar-nav .dropdown-menu.language-dropdown-menu .flag-svg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Hero Section */
.hero {
    padding-top: 120px;
    position: relative;
}

.hero .hero-text {
    color: #56606F;
}

.hero .hero-text .hero-title {
    font-weight: 250;
    font-size: 96px;
    line-height: 110%;
    text-transform: capitalize;
    color: #000000;
}

.hero .hero-text .hero-title .highlight {
    font-weight: 700;
}

.hero .hero-text .reviews {
    font-size: 20px;
    color: #56606F;
}

.hero .hero-text .reviews .rating-value {
    font-weight: 700;
    color: #000000;
}

.hero .hero-text .reviews .trustpilot-star {
    font-size: 24px;
}

.hero .hero-text .reviews .trustpilot-star img {
    max-width: 24px;
}

.hero .woman-image {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.hero .woman-image .chart-photo {
    position: absolute;
    width: 380px;
    left: -280px;
    bottom: 60px;
    background: #FFFFFF;
    box-shadow: -8px 8px 80px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

.hero .woman-image .woman-photo {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
    max-width: 500px;
}

.hero .woman-image .followers-photo {
	position: absolute;
	width: 180px;
	height: 114px;
	left: -95px;
	top: 286px;
}

.hero .woman-image .likes-photo {
    position: absolute;
    width: 140px;
    height: 91px;
    right: -92px;
    top: -40px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0);
    filter: drop-shadow(8px -8px 40px rgba(0, 0, 0, 0.1));
    border-radius: 20px;
}

.hero .woman-image .star-photo {
    position: absolute;
    width: 100px;
    height: 71px;
    right: 30px;
    bottom: 50px;
    /* background: #FFFFFF; */
    border: 1px solid rgba(0, 0, 0, 0.04);
    filter: drop-shadow(-8px 8px 40px rgba(0, 0, 0, 0.1));
    /* border-radius: 20px; */
}

/* Results Section */
.results {
    padding: 100px 0;
}

.results .section-title {
    font-size: 68px;
    margin-bottom: 3rem;
}

.results .user-count-header .user-avatars .user-avatar {
    margin-left: -55px;
    width: 90px;
    height: 90px;
}

.results .user-count-header .user-avatars .user-avatar img {
    max-width: 100%;
}

.results .user-count-header .user-count-text {
    font-size: 96px;
    line-height: 100%;
    color: #FF216A;
}

.results .user-count-header .user-count-subtitle {
    font-size: 32px;
    color: #56606F;
}

.results .review-card {
    padding: 50px;
    background: #F7F6FB;
    border-radius: 40px;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.results .review-card .review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.results .review-card .trustpilot-star {
    font-size: 16px;
    width: 20px;
    height: 20px;
}

.results .review-card .review-text {
    font-size: 14px;
    line-height: 160%;
    color: #000000;
    flex: 1;
    position: relative;
}

.results .review-card .review-text.truncated {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.results .review-card .review-text.truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, #F7F6FB);
    pointer-events: none;
}

.results .review-card .read-more-btn {
    background: none;
    border: none;
    color: var(--bs-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 10px;
    text-align: left;
    transition: all 0.3s ease;
    display: none;
}

.results .review-card .read-more-btn:hover {
    color: #FF216A;
    text-decoration: underline;
}

.results .review-card.has-long-content .read-more-btn {
    display: block;
}

.results .review-card .author-info .author-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 12px;
}

.results .review-card .author-info .author-avatar-small img {
    max-width: 100%;
}

.results .review-card .author-info .author-name {
    font-size: 20px;
    line-height: 100%;
    color: #000000;
}

.results .review-card .author-info .author-name .review-date {
    font-size: 14px;
    display: block;
    margin-top: 3px;
    color: #56606F;
}

/* Reviews Carousel Styles */
.results .reviews-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

/* .results .reviews-carousel {
    flex: 1;
    overflow: hidden;
} */

/* .results .reviews-carousel .owl-item {
    padding: 0 15px;
} */

.results .reviews-carousel .owl-stage-outer {
    overflow: hidden;
    /* Default: hidden for desktop */
}

.results .reviews-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    /* Align items to the left */
}

.results .carousel-nav {
    display: flex;
    gap: 15px;
    z-index: 10;
    justify-content: space-between;
    margin-bottom: 40px;
}

.results .carousel-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #DEE4EE;
    flex-shrink: 0;
}

.results .carousel-nav-btn svg {
    width: 20px;
    height: 20px;
}

.results .carousel-nav-btn svg path {
    stroke: #56606F;
}

.results .carousel-nav-btn:active {
    transform: scale(0.95);
}

.results .carousel-nav-btn:disabled,
.results .carousel-nav-btn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
    box-shadow: none;
}

.results .carousel-nav-btn:disabled:hover,
.results .carousel-nav-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Results Section ended */




/* Features Section */
.features {
    padding: 100px 0;
}

.features .feature-point .bullet-point {
    height: 64px;
    width: 64px;
    min-width: 64px;
    background: linear-gradient(98.94deg, #FF6735 2.43%, #FF4BBA 100%);
    border-radius: 64px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    position: relative;
    outline: 6px solid #fff;
    margin-bottom: 20px;
}

.features .feature-point .bullet-point::after {
    content: '';
    position: absolute;
    background: linear-gradient(98.94deg, #FF6735 2.43%, #FF4BBA 100%);
    height: 80px;
    top: -8px;
    border-radius: 60px;
    width: 80px;
    z-index: -1;
}

.features .feature-point .features-text .bullet-description {
    font-size: 16px;
    color: #56606F;
}

.features .features-image {
    position: relative;
    display: inline-block;
    width: 90%;
}

.features .features-image .features-woman-img {
    max-width: 720px;
    width: 100%;
}

.features .features-image .feature-followers-img {
    position: absolute;
    top: -50px;
    right: -40px;
    width: 230px;
    /* background: rgba(255, 255, 255, 0.9); */
    filter: drop-shadow(8px -8px 80px rgba(0, 0, 0, 0.1));
    /* border-radius: 40px; */
}

.features .features-image .feature-reach-img {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 240px;
    /* background: rgba(255, 255, 255, 0.9);
    border-radius: 40px; */
}

/* Why grow Section */
.why-groimpact {
    padding: 100px 0;
}

.why-groimpact .why-features-left,
.why-groimpact .why-features-right {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-self: start;
}

.why-groimpact .why-features-right {
    justify-content: flex-end;
}

.why-groimpact .why-features-left .why-title,
.why-groimpact .why-features-right .why-title {
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
    font-size: 36px;
}

.why-groimpact .why-features-left .why-title .logo {
    width: 27px;
    overflow: hidden;
    display: inline-block;
    height: 33px;
    vertical-align: -5px;
    margin-left: 15px;
}

.why-groimpact .why-features-left .why-title .logo img {
    height: 30px;
    display: inline-block;
    vertical-align: 0;
}

.why-groimpact .why-features-left .why-feature-box,
.why-groimpact .why-features-right .why-feature-box {
    background: #F7F6FB;
    border-radius: 40px;
    position: relative;
    width: calc(50% - 5px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

.why-groimpact .why-features-left .why-feature-box:hover {
    background: #FFE7EE;
}

.why-groimpact .why-features-right .why-feature-box:hover {
    background: #E1E3EC;
}

.why-groimpact .why-features-left .why-feature-box h4,
.why-groimpact .why-features-right .why-feature-box h4 {
    font-size: 20px;
    color: #000000;
    margin: 0;
    text-align: center;
    width: 80%;
    margin-top: 15px;
}

.why-groimpact .why-features-left .why-feature-box .feature-icon-small,
.why-groimpact .why-features-right .why-feature-box .feature-icon-small {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    left: 20px;
}

.why-groimpact .why-main-image img {
    max-height: 650px;
}

/* Why Groimpact ended */


.metric {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.app-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Niches Section */
.niches {
    padding: 100px 0;
}

.niches .niches-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.niches .niches-grid-small {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: calc(66.6% - 4rem);
}

.niches .niches-grid-small .small-niche-card {
    position: relative;
    width: calc(50% - 1rem);
    border-radius: 40px;
    overflow: hidden;
}

.niches .niches-grid-small .small-niche-card .small-niche-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.niches .niches-grid-small .small-niche-card:hover .small-niche-img {
    transform: scale(1.05);
}

.niches .niches-main-image .main-niche-card {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    height: 710px;
}

.niches .niches-main-image .main-niche-card .main-niche-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.niches .niches-main-image .main-niche-card:hover .main-niche-img {
    transform: scale(1.05);
}

.niches .niches-main-image .main-niche-card .niche-category,
.niches .niches-grid-small .small-niche-card .niche-category {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: #FFFFFF;
    border-radius: 80px;
    height: 40px;
    font-size: 20px;
    color: #000000;
    padding: 5px 30px;
    line-height: 30px;
}


/* Pricing Section */
.pricing {
    padding: 100px 0;
}

.pricing .test-subscription-plan {
    margin-bottom: 100px;
}

.pricing .test-subscription-plan .plan-title {
    font-size: 32px;
    color: #000000;
}

.pricing .test-subscription-plan .plan-description {
    font-size: 24px;
    line-height: 160%;
    color: #000000;
}

.pricing .test-subscription-plan .plan-info {
    background: #F7F6FB;
    border-radius: 40px;
}

.pricing .test-subscription-plan .plan-info .plan-title {
    font-size: 32px;
    color: #000000;
}

.pricing .test-subscription-plan .plan-info .plan-title .icon {
    vertical-align: 20px;
    margin-left: 3px;
}

.pricing .test-subscription-plan .plan-info .price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.pricing .test-subscription-plan .plan-info .price .currency {
    font-size: 24px;
}

.pricing .test-subscription-plan .plan-info .price .amount {
    font-size: 48px;
    line-height: 34px;
}

.pricing .test-subscription-plan .plan-info .price .period {
    font-size: 24px;
}

.pricing .test-subscription-plan .plan-info .plan-benefits {
    font-size: 16px;
    text-transform: capitalize;
    color: #000000;
    margin: 0;
}

.pricing .subscription-plans #durationTabs .nav-link,
.pricing .subscription-plans [id^="durationTabsMobile"] .nav-link {
    background: #fff;
    border: 1px solid #DEE4EE;
    border-radius: 60px;
    color: #56606F;
    height: 70px;
    padding: 0 40px;
    position: relative;
}

.pricing .subscription-plans #durationTabs .nav-link:hover,
.pricing .subscription-plans [id^="durationTabsMobile"] .nav-link:hover {
    color: #000000;
}

.pricing .subscription-plans #durationTabs .nav-link.active,
.pricing .subscription-plans [id^="durationTabsMobile"] .nav-link.active {
    border-color: #000000;
    color: #000000;
}

.pricing .subscription-plans #durationTabs .nav-link .badge,
.pricing .subscription-plans [id^="durationTabsMobile"] .nav-link .badge {
    position: absolute;
    top: -15px;
    right: 25px;
    border-radius: 20px;
    height: 30px;
    font-size: 16px;
    line-height: 17px;
}

.pricing .subscription-plans .subscription-card .subscription-card-body {
    background: #F7F6FB;
    border-radius: 40px;
}

.pricing .subscription-plans .subscription-card:nth-child(2n) .subscription-card-body {
    background: #FFEFF4;
}

.pricing .subscription-plans .subscription-card .subscription-card-title {
    font-size: 40px;
    color: #000000;
}

.pricing .subscription-plans .subscription-card .subscription-card-title .icon {
    vertical-align: 20px;
    margin-left: 3px;
}

.pricing .subscription-plans .subscription-card .subscription-card-description {
    font-size: 16px;
    color: #56606F;
    margin-bottom: 35px;
}

.pricing .subscription-plans .subscription-card .plan-info .price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    color: var(--bs-primary);
    margin-bottom: 20px;
}


.pricing .subscription-plans .subscription-card .plan-info .plan-option.hidden {
    display: none !important;
    visibility: hidden !important;
}

.pricing .subscription-plans .subscription-card .plan-info .plan-option.active {
    display: block !important;
    visibility: visible !important;
}

.pricing .subscription-plans .subscription-card .plan-info .price .currency {
    font-size: 24px;
}

.pricing .subscription-plans .subscription-card .plan-info .price .amount {
    font-size: 48px;
    line-height: 34px;
}

.pricing .subscription-plans .subscription-card .plan-info .price .period {
    font-size: 24px;
}

.pricing .subscription-plans .subscription-card .plan-info .plan-benefits {
    font-size: 16px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 40px;
    line-height: 2;
    padding-left: 15px;
}

.pricing .subscription-plans .subscription-card .plan-info .subscription-card-disclaimer {
    font-size: 14px;
    text-align: center;
    color: #56606F;
    width: 75%;
    margin: auto;
    margin-top: 20px;
}

.pricing .subscription-plans .money-back-guarantee-title {
    font-size: 30px;
    margin: 0;
    line-height: 60px;
}

.pricing .subscription-plans .money-back-guarantee-title .days {
    font-size: 64px;
    color: var(--bs-primary);
}

.pricing .subscription-plans .money-back-guarantee-title .period {
    font-size: 32px;
    color: var(--bs-primary);
}

.pricing .subscription-plans .money-back-guarantee-description {
    font-size: 20px;
    line-height: 100%;
    color: #56606F;
}


/* FAQ Section */
.faq {
    padding: 100px 0;
}

.faq #faqAccordion .accordion-item {
    border: none;
    border-bottom: 1px solid #DEE4EE;
    margin: 20px 0;
}

.faq #faqAccordion .accordion-button {
    background-color: #fff;
    font-weight: 400 !important;
    font-size: 20px;
    color: #000000;
    padding: 17px 0;
    box-shadow: none !important;
}

.faq #faqAccordion .accordion-button:hover {
    color: var(--bs-primary);
}

.faq #faqAccordion .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question i {
    color: #ff69b4;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact .contact-content {
    background: #F7F6FB;
    border-radius: 80px;
    padding: 40px;
}

.contact .contact-form-container {
    background: #FFFFFF;
    border-radius: 60px;
    padding: 50px;
}

.contact .contact-form .form-floating {
    margin-bottom: 2rem;
}

.contact .contact-form .form-floating .form-control {
    border: none;
    border-bottom: 1px solid #E1E3EC;
    border-radius: 0;
    background: transparent;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    font-size: 16px;
    height: auto;
    min-height: 60px;
    padding-left: 0;
}

.contact .contact-form .form-floating .form-control:focus {
    border-bottom-color: #56606F;
    box-shadow: none;
    background: transparent;
}

.contact .contact-form .form-floating>label {
    color: #56606F;
    font-weight: 400;
    padding: 0.625rem 0;
}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: rgba(var(--bs-body-color-rgb), .65);
    transform: scale(.85) translateY(-35px) translateX(0px);
}

.contact .contact-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.contact .contact-image .contact-woman {
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.contact .contact-image .contact-chart {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: 300px;
}

/* Footer */
.footer {
    /* background-color: #f8f9fa;
    padding: 80px 0 40px 0;
    border-top: 1px solid #e9ecef; */
}

.footer .footer-content {
    margin-bottom: 40px;
}

.footer .footer-content .footer-logo-section .footer-logo {
    height: 40px;
    margin-bottom: 30px;
}

.footer .footer-content .social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f1f3f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
}

.footer .footer-content .footer-column .footer-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer .footer-content .footer-column .footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #495057;
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    margin-top: 40px;
}

.copyright {
    color: #6c757d;
    font-size: 14px;
}

@media screen and (max-width: 1280px) {
    .container.custom-container {
        max-width: 1180px;
    }

    .hero .woman-image .woman-photo {
        max-width: 380px;
    }

    .hero .woman-image .likes-photo {
        width: 100px;
        height: auto;
        right: -50px;
        top: -30px;
    }

    .hero .woman-image .chart-photo {
        width: 250px;
        left: -120px;
    }

    .hero .woman-image .followers-photo {
    width: 118px;
    height: 114px;
    top: 229px;
    left: -50px;
  }

    .hero .hero-text .hero-title {
        font-size: 80px;
    }

    .results {
        padding: 70px 0;
    }

    .features {
        padding: 0px 0;
    }

    .features .features-image .feature-reach-img {
        width: 150px;
    }

    .features .features-image .feature-followers-img {
        width: 150px;
    }

    .niches .niches-main-image .main-niche-card {
        width: 400px;
    }

    .contact .contact-image .contact-chart {
        width: 220px;
    }
}

@media (min-width: 1000px) and (max-width: 1200px) {
  .niches .niches-main-image .main-niche-card {
    width: 344px;
  }
}

@media (min-width: 900px) and (max-width: 1000px) {
  .niches .niches-main-image .main-niche-card {
    width: 264px !important;
  }
}

/* Mobile responsive styles for footer */
@media (max-width: 768px) {
    .why-groimpact .why-features-left .why-feature-box:nth-child(3) {
        display: none;
    }

    .why-groimpact .why-features-right .why-feature-box:nth-child(2) {
        display: none;
    }

    .footer {
        padding: 60px 0 30px 0;
    }

    .footer-logo-section {
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .footer .footer-content .footer-logo-section .footer-logo {
        height: 24px;
    }

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 16px;
    }

    .copyright {
        font-size: 12px;
    }
}

/* ===== MOBILE RESPONSIVE STYLES (max-width: 768px) ===== */
@media (max-width: 768px) {

    /* === GLOBAL STYLES === */
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 0;
    }

    .btn {
        height: 40px;
        font-size: 14px;
    }

    .btn-lg {
        height: 48px;
    }

    .trustpilot-stars {
        gap: 2px;
    }

    .trustpilot-star {
        font-size: 12px;
        width: 14px;
        height: 14px;
    }

    .header .navbar .navbar-brand .logo {
        height: 24px;
    }

    /* === HERO SECTION === */
    .hero {
        padding: 50px 0;
    }

    .hero .hero-text {
        text-align: center;
        margin-bottom: 50px;
    }

    .hero .hero-text .hero-title {
        font-size: 34px;
    }

    .hero .hero-text .lead {
        font-size: 14px;
    }

    .hero .hero-text .reviews {
        width: max-content;
        margin: auto;
        font-size: 14px;
    }

    .hero .hero-text .reviews .trustpilot-star {
        font-size: 11px;
    }

    .hero .woman-image {
        width: calc(100% - 70px);
        margin: auto;
        display: block;
    }

    .hero .woman-image .likes-photo {
        right: -30px;
        width: 85px;
        height: auto;
        top: -15px;
    }

    .hero .woman-image .chart-photo {
        width: 240px;
        left: -40px;
        bottom: -60px;
    }

    .hero .woman-image .followers-photo {
        width: 92px;
        height: auto;
        left: -40px;
        top: 35%;
    }

    .hero .woman-image .star-photo {
        height: 45px;
        width: auto;
        right: -30px;
        bottom: 30px;
    }

    /* === RESULTS SECTION === */
    .results {
        padding: 50px 0;
    }

    .results .section-title {
        font-size: 32px;
        margin-bottom: 2rem;
    }

    .results .user-count-header .user-count-text {
        font-size: 32px;
    }

    .results .user-count-header .user-avatars .user-avatar {
        width: 60px;
        height: 60px;
        margin-left: -30px;
    }

    .results .user-count-header .user-count-subtitle {
        font-size: 14px;
    }

    .results .carousel-nav {
        justify-content: flex-end;
        margin-bottom: 15px;
    }

    .results .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }

    .results .carousel-nav-btn svg {
        width: 12px;
    }

    .results .reviews-carousel .owl-stage-outer {
        overflow: visible;
    }

    .results .reviews-carousel .owl-stage {
        padding-left: 0 !important;
        margin-left: 0 !important;
    }

    .results .reviews-carousel-wrapper {
        padding-left: 0;
        overflow: hidden;
        position: relative;
    }

    .results .reviews-carousel-wrapper::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0px;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
        pointer-events: none;
        z-index: 1;
    }

    .results .review-card {
        transition: opacity 0.3s ease;
        border-radius: 20px;
        padding: 25px;
        min-height: 290px;
    }

    .results .reviews-carousel .owl-item.partial-visible .review-card:hover {
        opacity: 0.9;
        transform: scale(0.98);
    }

    .results .review-card .review-text {
        font-size: 12px;
    }

    .results .review-card .trustpilot-star {
        font-size: 15px;
        width: 18px;
        height: 18px;
    }

    .results .review-card .author-info .author-name {
        font-size: 16px;
    }

    .results .review-card .author-info .author-name .review-date {
        font-size: 12px;
    }

    .results .review-card .author-info .author-avatar-small {
        width: 50px;
        height: 50px;
        margin-left: 20px;
    }

    .features {
        padding: 50px 0;
    }

    .features .feature-point .bullet-point {
        height: 24px;
        width: 24px;
        min-width: 24px;
        font-size: 12px;
        margin-left: 10px;
    }

    .features .feature-point .bullet-point::after {
        width: 40px;
        height: 40px;
    }

    .features .feature-point .features-text .bullet-title .icon {
        margin-left: 5px !important;
    }

    .features .feature-point .features-text .bullet-title .icon svg {
        height: 12px;
        width: 12px;
    }

    .features .feature-point .features-text .bullet-title {
        font-size: 16px;
    }

    .features .feature-point .features-text .bullet-description {
        font-size: 14px;
    }

    .features .features-image .feature-reach-img {
        width: 140px;
        left: 10px;
        bottom: 10px;
    }

    .features .features-image .feature-followers-img {
        width: 140px;
        right: -26px;
        top: -35px;
    }



    .why-groimpact {
        padding: 50px 0;
    }

    .why-groimpact .why-features-left .why-feature-box .feature-icon-small,
    .why-groimpact .why-features-right .why-feature-box .feature-icon-small {
        width: 30px;
        height: 30px;
        left: 10px;
    }

    .why-groimpact .why-features-left .why-feature-box .feature-icon-small svg,
    .why-groimpact .why-features-right .why-feature-box .feature-icon-small svg {
        width: 8px;
        height: 8px;
    }

    .why-groimpact .why-features-left .why-feature-box h4,
    .why-groimpact .why-features-right .why-feature-box h4 {
        font-size: 14px;
    }

    .why-groimpact .why-features-left .why-feature-box,
    .why-groimpact .why-features-right .why-feature-box {
        height: 100px;
        border-radius: 20px;
        padding-top: 10px;
    }

    .why-groimpact .why-features-left .why-title,
    .why-groimpact .why-features-right .why-title {
        font-size: 22px;
    }

    .why-groimpact .why-features-left .why-title .logo {
        width: 18px;
        height: 25px;
        margin-left: 4px;
    }

    .why-groimpact .why-features-left .why-title .logo img {
        height: 20px;
    }

    .why-groimpact .why-main-image img {
        max-height: 400px;
    }



    .niches {
        padding: 50px 0;
    }

    .niches .niches-layout {
        gap: 10px;
    }

    .niches .niches-grid-small {
        min-width: 100%;
        gap: 10px;
    }

    .niches .niches-grid-small .small-niche-card {
        height: 200px;
        width: calc(50% - 5px);
        border-radius: 20px;
    }

    .niches .niches-main-image .main-niche-card .niche-category,
    .niches .niches-grid-small .small-niche-card .niche-category {
        font-size: 12px;
        height: 28px;
        padding: 5px 10px;
        right: 10px;
        bottom: 10px;
        line-height: 18px;
    }

    .niches .niches-main-image {
        flex-grow: 1;
    }

    .niches .niches-main-image .main-niche-card {
        height: 200px;
        width: 100%;
        border-radius: 20px;
    }

    .pricing {
        padding: 50px 0;
    }

    .pricing .test-subscription-plan {
        margin-bottom: 50px;
    }

    .pricing .test-subscription-plan .plan-title {
        display: none;
    }

    .pricing .test-subscription-plan .plan-description {
        font-size: 14px;
        text-align: center;
    }

    .pricing .test-subscription-plan .plan-info {
        margin: 0;
        border-radius: 20px;
    }

    .pricing .test-subscription-plan .plan-info .plan-title {
        display: block;
        font-size: 24px;
    }

    .pricing .test-subscription-plan .plan-info .plan-title .icon {
        vertical-align: 10px;
        margin-left: 0px;
    }

    .pricing .test-subscription-plan .plan-info .plan-title .icon svg {
        width: 14px;
        height: 14px;
    }

    .pricing .test-subscription-plan .plan-info .price .currency {
        font-size: 14px;
    }

    .pricing .test-subscription-plan .plan-info .price .amount {
        font-size: 32px;
    }

    .pricing .test-subscription-plan .plan-info .price .period {
        font-size: 14px;
    }

    .pricing .test-subscription-plan .plan-info .test-plan-purchase-btn {
        width: 75%;
        display: block;
        margin: auto;
    }

    .pricing .test-subscription-plan .plan-info .plan-benefits {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .subscription-plans .section-title {
        font-size: 24px;
    }

    .pricing .subscription-plans .subscription-card .subscription-card-body {
        border-radius: 20px;
    }

    .pricing .subscription-plans .subscription-card .subscription-card-title {
        font-size: 24px;
    }

    .pricing .subscription-plans .subscription-card .subscription-card-title .icon {
        vertical-align: 10px;
        margin-left: 0px;
    }

    .pricing .subscription-plans .subscription-card .subscription-card-description {
        font-size: 12px;
        margin-bottom: 40px;
    }

    .pricing .subscription-plans .subscription-card .plan-info .price .currency {
        font-size: 14px;
    }

    .pricing .subscription-plans .subscription-card .plan-info .price .amount {
        font-size: 32px;
    }

    .pricing .subscription-plans .subscription-card .plan-info .price .period {
        font-size: 14px;
    }

    .pricing .subscription-plans .subscription-card .plan-info .plan-benefits {
        font-size: 12px;
        line-height: 1.5;
    }

    .pricing .subscription-plans .subscription-card .plan-info .subscription-card-disclaimer {
        font-size: 10px;
    }

    /* === PRICING SECTION - Mobile Duration Tabs === */
    .pricing .subscription-plans [id^="durationTabsMobile"] .nav-link {
        height: 40px !important;
        padding: 0 12px !important;
        font-size: 12px;
        border-radius: 40px !important;
        background: transparent;
        margin-bottom: 15px !important;
    }

    .pricing .subscription-plans [id^="durationTabsMobile"] .nav-link .badge {
        top: -10px !important;
        right: 15px !important;
        height: 18px !important;
        font-size: 10px !important;
        line-height: 10px !important;
    }


    .pricing .subscription-plans .money-back-guarantee-title {
        font-size: 16px;
        line-height: 32px;
        margin-bottom: 5px;
        padding-left: 15px;
    }

    .pricing .subscription-plans .money-back-guarantee-title .days {
        font-size: 32px;
    }

    .pricing .subscription-plans .money-back-guarantee-title .period {
        font-size: 16px;
    }

    .pricing .subscription-plans .money-back-guarantee-description {
        font-size: 12px;
        padding-left: 15px;
    }





    .faq {
        padding: 0px 0;
    }

    .faq #faqAccordion {
        --bs-accordion-btn-icon-width: 12px;
    }

    .faq #faqAccordion .accordion-button {
        font-size: 12px;
        padding: 10px 0;
    }

    .faq #faqAccordion .accordion-item {
        margin: 10px 0;
    }

    .faq #faqAccordion .accordion-body {
        font-size: 12px;
        padding: 10px;
    }



    .contact {
        padding: 50px 0;
    }

    .contact .contact-content {
        background: transparent;
        padding: 0;
    }

    .contact .contact-form-container {
        padding: 0;
        margin-bottom: 50px;
    }

    .contact .contact-form .form-floating .form-control {
        font-size: 14px;
    }

    .contact .contact-form .form-floating>label {
        font-size: 14px;
    }

    .contact .contact-image .contact-chart {
        width: 150px;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .header .navbar .navbar-nav {
        align-items: center;
        gap: 0px !important;
    }

    .nav-item.last {
        padding-bottom: 84px;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        /* vertical centering */
        justify-content: center;
        /* horizontal centering */
        padding: 12px 28px;
        /* adjust button size */
        line-height: 1;
        /* fix extra vertical space */
        height: auto;
        /* ensure height adjusts naturally */
    }

    .header .navbar .navbar-nav .cta-btn {
        width: 275px;
        height: 50px;
        padding: 22px;
        line-height: 20px;
        position: relative;
        overflow: hidden;
    }

    .nav-item.mobile {
        position: relative;
        top: -41px;
    }

    .mobiles {
        font-size: 13px;
        position: relative;
        top: 4px;
    }

    .plan-description {
        flex-direction: column;
        /* force line break */
        align-items: flex-start;
        /* optional, left align */
    }

    .plan-description svg {
        margin-left: 0;
        /* remove inline spacing on mobile */
        margin-top: 4px;
        /* spacing from text */
    }

    .plan-description span.break-after {
        display: block;
        /* force line break on mobile */
    }

    .trustpilot-stars.d-flex.mobile {
        gap: 12px;
    }

    .footer .footer-content {
        margin-bottom: -45px;
    }
}

@media (min-width: 1280px) and (max-width: 1399px) {
  .niches .niches-main-image .main-niche-card {
    height: 623px;
  }
}
