
        /* Hero Section Specific Styles - Safe to add to existing CSS */

        .heroblock-main-wrapper {
            min-height: 100vh;
            background: linear-gradient(135deg, #FFF9F4 0%, #FFE8D6 100%);
            display: flex;
            align-items: center;
            padding: 2rem;
            padding-top: 8rem; /* Space for navbar - adjust as needed */
        }

        .heroblock-container-max {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .heroblock-grid-layout {
            display: grid;
            grid-template-columns: 1.5fr 0.5fr;
            gap: 1.5rem;
            align-items: center;
        }

        /* Left Content Section */
        .heroblock-content-left {
            padding-right: 1rem;
        }

        .heroblock-badge-top {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: white;
            padding: 0.75rem 1.75rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 2.5rem;
        }

        .heroblock-badge-label {
            background: #4A90E2;
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

/* .heroblock-badge-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.heroblock-badge-link:hover {
    opacity: 0.85;
} */

        .heroblock-main-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5.5vw, 5rem);
            font-weight: 700;
            line-height: 1.20;
            color: #1A202C;
            margin-bottom: 1.5rem;
            max-width: 100%;
        }

        .heroblock-highlight-text {
            color: #50C9CE;
            font-weight: 800;
        }

        .heroblock-subtitle-text {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            color: #4A5568;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .heroblock-features-list {
            list-style: none;
            margin-bottom: 3rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .heroblock-feature-single {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            font-size: 1.15rem;
            color: #1A202C;
            font-weight: 500;
        }

        .heroblock-feature-bullet {
            width: 10px;
            height: 10px;
            background: #FF8C42;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 8px;
        }

        .heroblock-buttons-group {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .heroblock-btn-base {
            padding: 1.2rem 3rem;
            font-size: 1.15rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .heroblock-btn-primary {
            background: #FF8C42;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
        }

        .heroblock-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 140, 66, 0.5);
            background: #FF7A2E;
        }

        .heroblock-btn-secondary {
            background: white;
            color: #1A202C;
            border: 2px solid #1A202C;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .heroblock-btn-secondary:hover {
            background: #1A202C;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(26, 32, 44, 0.3);
        }

        .heroblock-btn-arrow {
            font-size: 1.2rem;
        }

        /* Right Image Section */
        .heroblock-visual-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .heroblock-image-container {
            width: 100%;
            max-width: 700px;
            height: 600px;
            /* background: white; */
            /* border-radius: 30px; */
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .heroblock-image-placeholder {
            width: 110%;
            height: 100%;
            object-fit: contain;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .heroblock-grid-layout {
                gap: 3rem;
            }
           
            .heroblock-main-title {
                font-size: clamp(2.5rem, 6vw, 5rem);
            }

            .heroblock-image-container {
                height: 450px;
            }
        }

        @media (max-width: 768px) {
            .heroblock-main-wrapper {
                padding: 1.5rem;
                min-height: auto;
                padding-top: 6rem; /* Adjusted for smaller screens */
                padding-bottom: 3rem;
            }

            .heroblock-grid-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .heroblock-content-left {
                padding-right: 0;
                order: 1; /* Text comes first */
            }

            .heroblock-visual-right {
                order: 2; /* Image comes second */
                padding: 0;
            }

            .heroblock-image-container {
                height: 400px;
                max-width: 100%;
            }

            .heroblock-buttons-group {
                flex-direction: column;
                gap: 1rem;
            }

            .heroblock-btn-base {
                width: 100%;
                justify-content: center;
            }

            .heroblock-main-title {
                font-size: clamp(2rem, 7vw, 4rem);
            }

            .heroblock-subtitle-text {
                font-size: 1.05rem;
            }

            .heroblock-feature-single {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .heroblock-main-wrapper {
                padding: 1rem;
            }

            .heroblock-badge-top {
                font-size: 0.85rem;
                padding: 0.6rem 1.25rem;
                flex-wrap: wrap;
            }

            .heroblock-features-list {
                gap: 1rem;
            }

            .heroblock-image-container {
                height: 300px;
                border-radius: 20px;
            }

            .heroblock-btn-base {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
             .heroblock-badge-top{
                margin-top: 70px;
            }

        }

        @media (min-width: 1440px) {
            .heroblock-container-max {
                max-width: 1600px;
            }

            .heroblock-main-wrapper {
                padding: 3rem;
            }

            .heroblock-image-container {
                height: 550px;
            }
             .heroblock-badge-top{
                margin-top: 70px;
            }
        }
        .main-text{
            display: none;
        }
    
       
    /* Features Section Specific Styles */
    .features-section-wrapper {
        min-height: 100vh;
        background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
        padding: 5rem 2rem;
        display: flex;
        align-items: center;
    }

    .features-container-main {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    /* Top Centered Heading */
    .features-top-heading {
        text-align: center;
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 800;
        color: #1A202C;
        margin-bottom: 4rem;
        line-height: 1.3;
    }

    .features-top-highlight {
        color: #4A90E2;
    }

    .features-grid-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    /* Left Section - Heading & CTA */
    .features-left-content {
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        padding: 4rem 3rem;
        border-radius: 30px;
        box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .features-main-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        line-height: 1.2;
        color: white;
        margin-bottom: 2rem;
    }

    .features-heading-line1 {
        display: block;
    }

    .features-heading-line2 {
        display: block;
        font-style: italic;
        position: relative;
        padding-bottom: 1.5rem;
    }

    .features-heading-line2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 120px;
        height: 6px;
        background: #FF8C42;
        border-radius: 3px;
    }

    .features-cta-button {
        padding: 1.3rem 3.5rem;
        font-size: 1.2rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        background: white;
        color: #4A90E2;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        font-family: 'Plus Jakarta Sans', sans-serif;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        align-self: flex-start;
    }

    .features-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        background: #FF8C42;
        color: white;
    }

    .features-cta-icon {
        font-size: 1.3rem;
    }

    /* Right Section - Features List */
    .features-right-content {
        background: white;
        padding: 3rem;
        border-radius: 30px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .features-list-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .feature-item-card {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
        border-radius: 20px;
        transition: all 0.3s ease;
        border-left: 5px solid transparent;
    }

    .feature-item-card:hover {
        transform: translateX(10px);
        border-left-color: #FF8C42;
        background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
    }

    .feature-icon-box {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    }

    .feature-icon-image {
        width: 35px;
        height: 35px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    .feature-content-text {
        flex: 1;
    }

    .feature-title-heading {
        font-family: 'Outfit', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #1A202C;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .feature-description-text {
        font-size: 1rem;
        color: #4A5568;
        line-height: 1.6;
        font-weight: 400;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .features-grid-layout {
            gap: 3rem;
        }

        .features-main-heading {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
        }

        .feature-title-heading {
            font-size: 1.3rem;
        }

        .features-top-heading {
            font-size: clamp(1.8rem, 3.5vw, 3rem);
        }
    }

    @media (max-width: 768px) {
        .features-section-wrapper {
            padding: 4rem 1.5rem;
            min-height: auto;
        }

        .features-top-heading {
            font-size: clamp(1.6rem, 5vw, 2.5rem);
            margin-bottom: 3rem;
        }

        .features-grid-layout {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .features-left-content {
            padding: 3rem 2rem;
            order: 1;
        }

        .features-right-content {
            padding: 2.5rem 2rem;
            order: 2;
        }

        .features-main-heading {
            font-size: clamp(2rem, 6vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .features-cta-button {
            width: 100%;
            justify-content: center;
            padding: 1.2rem 2.5rem;
        }

        .feature-item-card {
            padding: 1.2rem;
            gap: 1.2rem;
        }

        .feature-icon-box {
            width: 50px;
            height: 50px;
        }

        .feature-icon-image {
            width: 30px;
            height: 30px;
        }

        .feature-title-heading {
            font-size: 1.2rem;
        }

        .feature-description-text {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .features-section-wrapper {
            padding: 3rem 1rem;
        }

        .features-top-heading {
            font-size: clamp(1.4rem, 6vw, 2rem);
            margin-bottom: 2.5rem;
        }

        .features-left-content {
            padding: 2.5rem 1.5rem;
        }

        .features-right-content {
            padding: 2rem 1.5rem;
        }

        .features-list-wrapper {
            gap: 1.5rem;
        }

        .feature-item-card {
            padding: 1rem;
            gap: 1rem;
        }

        .feature-icon-box {
            width: 45px;
            height: 45px;
        }

        .feature-icon-image {
            width: 25px;
            height: 25px;
        }

        .feature-title-heading {
            font-size: 1.1rem;
        }

        .feature-description-text {
            font-size: 0.9rem;
        }

        .features-heading-line2::after {
            width: 80px;
            height: 5px;
        }
    }

    @media (min-width: 1440px) {
        .features-container-main {
            max-width: 1600px;
        }

        .features-section-wrapper {
            padding: 6rem 3rem;
        }
    }
    @media (min-width: 768px) {
  .features-section-wrapper {
    display: none !important;
  }
}


    /* ===== BUY TALLY PRIME SECTION ===== */

.hj-buy-tally-section {
  background: linear-gradient(135deg, #DDF2FB, #DDF2FB);
  padding: 120px 20px;
  /* color: #ffffff; */
}

.hj-buy-tally-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.hj-buy-tally-left {
  position: relative;
}

.hj-buy-tally-brand {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 10px;
  color: #030b27;
}

.hj-buy-tally-tagline {
  font-size: 22px;
  font-weight: 500;
  color: #0c0c0c;
  margin-bottom: 25px;
}

.hj-buy-tally-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #805e03;
  max-width: 520px;
  margin-bottom: 35px;
}

.hj-buy-tally-image {
  max-width: 100%;
  border-radius: 16px;
  /* box-shadow: 0 30px 80px rgba(0,0,0,0.35); */
}

/* RIGHT */
.hj-buy-tally-right {
  background: #FEDC93;
  padding: 50px;
  border-radius: 24px;
  backdrop-filter: blur(6px);
}

.hj-buy-tally-title {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 30px;
}

.hj-buy-tally-points {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.hj-buy-tally-points li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  padding-left: 28px;
  position: relative;
  color: #eef6ff;
}

.hj-buy-tally-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #f4b400;
  font-weight: bold;
}

/* CTA */
.hj-buy-tally-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hj-buy-tally-btn {
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.hj-buy-tally-btn.primary {
  background: #f4b400;
  color: #000;
}

.hj-buy-tally-btn.secondary {
  border: 2px solid #f4b400;
  color: #f4b400;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hj-buy-tally-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hj-buy-tally-right {
    padding: 35px;
  }
}


    /* Why Buy Section Specific Styles */
    .whybuy-section-wrapper {
        background: linear-gradient(135deg, #FFF9F4 0%, #FFE8D6 100%);
        padding: 6rem 2rem;
    }

    .whybuy-container-main {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }

    /* Top Main Heading */
    .whybuy-main-title {
        text-align: center;
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        color: #1A202C;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .whybuy-title-highlight {
        color: #FF8C42;
    }

    .whybuy-subtitle-center {
        text-align: center;
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        color: #4A5568;
        margin-bottom: 4rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    /* Grid Layout */
    .whybuy-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    /* Left Side - Why Buy Heading */
    .whybuy-left-section {
        position: sticky;
        top: 100px;
    }

    .whybuy-left-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 4.5vw, 4rem);
        font-weight: 800;
        line-height: 1.3;
        color: #1A202C;
        margin-bottom: 2rem;
    }

    .whybuy-heading-primary {
        display: block;
        color: #2C5282;
    }

    .whybuy-heading-secondary {
        display: block;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        padding-bottom: 1.5rem;
    }

    .whybuy-heading-secondary::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 150px;
        height: 8px;
        background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
        border-radius: 4px;
    }

    .whybuy-left-description {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #4A5568;
        margin-bottom: 2.5rem;
    }

    .whybuy-cta-primary {
        padding: 1.3rem 3rem;
        font-size: 1.15rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
        transition: all 0.3s ease;
        font-family: 'Plus Jakarta Sans', sans-serif;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
    }

    .whybuy-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
    }

    /* Right Side - Features Grid */
    .whybuy-right-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whybuy-feature-card {
        background: white;
        padding: 2rem;
        border-radius: 25px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 3px solid transparent;
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .whybuy-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(74, 144, 226, 0.2);
        border-color: #E8F4F8;
    }

    .whybuy-icon-wrapper {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
    }

    .whybuy-icon-wrapper::before {
        content: '';
        position: absolute;
        inset: -3px;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }

    .whybuy-feature-card:hover .whybuy-icon-wrapper::before {
        opacity: 1;
    }

    .whybuy-feature-icon {
        font-size: 2.5rem;
    }

    .whybuy-feature-content {
        flex: 1;
    }

    .whybuy-feature-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #1A202C;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

    .whybuy-feature-description {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #4A5568;
    }

    .whybuy-feature-highlight {
        color: #4A90E2;
        font-weight: 600;
    }

    /* Decorative Elements */
    .whybuy-decoration-circle {
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        opacity: 0.05;
        z-index: 0;
    }

    .whybuy-decoration-1 {
        top: -100px;
        right: -100px;
    }

    .whybuy-decoration-2 {
        bottom: -100px;
        left: -100px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .whybuy-content-grid {
            gap: 3rem;
        }

        .whybuy-left-heading {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
        }

        .whybuy-feature-title {
            font-size: 1.35rem;
        }
    }

    @media (max-width: 768px) {
        .whybuy-section-wrapper {
            padding: 4rem 1.5rem;
        }

        .whybuy-main-title {
            font-size: clamp(2rem, 6vw, 3.5rem);
        }

        .whybuy-subtitle-center {
            font-size: 1.05rem;
            margin-bottom: 3rem;
        }

        .whybuy-content-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .whybuy-left-section {
            position: static;
        }

        .whybuy-left-heading {
            font-size: clamp(2rem, 6vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .whybuy-left-description {
            font-size: 1.05rem;
            margin-bottom: 2rem;
        }

        .whybuy-cta-primary {
            width: 100%;
            justify-content: center;
        }

        .whybuy-feature-card {
            padding: 1.5rem;
            gap: 1.2rem;
        }

        .whybuy-icon-wrapper {
            width: 60px;
            height: 60px;
        }

        .whybuy-feature-icon {
            font-size: 2rem;
        }

        .whybuy-feature-title {
            font-size: 1.25rem;
        }

        .whybuy-feature-description {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .whybuy-section-wrapper {
            padding: 3rem 1rem;
        }

        .whybuy-main-title {
            font-size: clamp(1.8rem, 7vw, 3rem);
        }

        .whybuy-subtitle-center {
            font-size: 1rem;
        }

        .whybuy-right-section {
            gap: 1.5rem;
        }

        .whybuy-feature-card {
            padding: 1.2rem;
            gap: 1rem;
            flex-direction: column;
            text-align: center;
            align-items: center;
        }

        .whybuy-icon-wrapper {
            width: 55px;
            height: 55px;
        }

        .whybuy-feature-icon {
            font-size: 1.8rem;
        }

        .whybuy-feature-title {
            font-size: 1.15rem;
        }

        .whybuy-heading-secondary::after {
            width: 100px;
            height: 6px;
            left: 50%;
            transform: translateX(-50%);
        }
    }

    @media (min-width: 1440px) {
        .whybuy-container-main {
            max-width: 1600px;
        }

        .whybuy-section-wrapper {
            padding: 7rem 3rem;
        }
    }
    @media (max-width: 767px) {
  .whybuy-section-wrapper {
    display: none;
  }
}


    /* Company Profile Strip */
    .cprofile-section-wrapper {
        background: linear-gradient(135deg, #FFFAE4 0%, #faeeb7 100%);
        overflow: hidden;
        position: relative;
    }

    .cprofile-grid-main {
        display: grid;
        grid-template-columns: 7fr 3fr;
        min-height: 600px;
    }

    /* Left Content */
    .cprofile-left-content {
        padding: 5rem 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    /* Gold Badge */
    .cprofile-gold-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        padding: 0.55rem 1.4rem;
        border-radius: 50px;
        width: fit-content;
        margin-bottom: 2rem;
        box-shadow: 0 6px 20px rgba(255, 165, 0, 0.35);
    }

    .cprofile-badge-star {
        font-size: 1.1rem;
    }

    .cprofile-badge-label {
        color: white;
        font-weight: 650;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Main Heading */
    .cprofile-main-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.8rem, 5.5vw, 5rem);
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 1.5rem;
    }

    .cprofile-name-hussain {
        background: linear-gradient(135deg, #006EA6 0%, #006EA6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 900;
    }

    .cprofile-name-ampersand {
        color: rgba(255, 255, 255, 0.7);
        font-weight: 700;
    }

    .cprofile-name-jujar {
        background: linear-gradient(135deg, #50C9CE 0%, #4A90E2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
    }

    .cprofile-heading-line {
        display: block;
        color: #006EA6;
        font-weight: 600;
    }

    .cprofile-heading-gold {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 500;
    }

    .cprofile-heading-teal {
        background: linear-gradient(135deg, #50C9CE 0%, #7DD3D8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 500;
    }

    /* Description */
    .cprofile-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.8;
        margin-bottom: 2rem;
        max-width: 600px;
    }

    /* Authorized Line */
    .cprofile-authorized-line {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.5rem;
        padding: 1rem 1.5rem;
        background: #006EA6;
        border-radius: 14px;
        border-left: 4px solid #FFD700;
        width: fit-content;
    }

    .cprofile-authorized-icon {
        font-size: 1.4rem;
    }

    .cprofile-authorized-text {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
    }

    .cprofile-authorized-highlight {
        color: #FFD700;
        font-weight: 800;
    }

    /* 2x2 Statistics Grid */
    .cprofile-stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cprofile-stat-block {
        background: #006EA6;
        border: 1px solid #DDF2FB;
        border-radius: 16px;
        padding: 2rem 1.5rem;
        transition: all 0.3s ease;
        text-align: center;
        cursor: default;
    }

    .cprofile-stat-block:hover {
        background: #FCAF1B;
        border-color: #fab536;
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(252, 175, 27, 0.4);
    }

    .cprofile-stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .cprofile-stat-number {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 4vw, 4rem);
        font-weight: 900;
        color: white;
        line-height: 1;
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
    }

    .cprofile-stat-suffix {
        font-size: clamp(1.8rem, 3vw, 3rem);
        font-weight: 900;
    }

    .cprofile-stat-label {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.3;
    }

    /* Right Image - Edge to Edge */
    .cprofile-right-image {
        position: relative;
        overflow: hidden;
    }

    .cprofile-company-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Subtle overlay on image for depth */
    .cprofile-right-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 100%;
        z-index: 1;
    }

    /* Decorative background dots */
    .cprofile-bg-dots {
        position: absolute;
        top: 0; 
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        opacity: 0.06;
        background-image: radial-gradient(circle, #DDF2FB 1.5px, transparent 1.5px);
        background-size: 35px 35px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .cprofile-grid-main {
            grid-template-columns: 7fr 3fr;
            min-height: 550px;
        }

        .cprofile-left-content {
            padding: 4rem 3rem;
        }

        .cprofile-main-heading {
            font-size: clamp(2.4rem, 5vw, 4rem);
        }

        .cprofile-stats-grid {
            gap: 1.2rem;
        }

        .cprofile-stat-block {
            padding: 1.8rem 1.2rem;
        }

        .cprofile-stat-number {
            font-size: clamp(2.2rem, 3.5vw, 3.5rem);
        }

        .cprofile-stat-label {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .cprofile-grid-main {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .cprofile-right-image {
            height: 280px;
            order: -1;
        }

        .cprofile-right-image::before {
            width: 100%;
            height: 60px;
            top: auto;
            bottom: 0;
            background: linear-gradient(to top, #1E4D6D, transparent);
        }

        .cprofile-left-content {
            padding: 3rem 2rem;
        }

        .cprofile-main-heading {
            font-size: clamp(2.2rem, 6vw, 3.5rem);
        }

        .cprofile-description {
            font-size: 1rem;
        }

        .cprofile-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .cprofile-stat-block {
            padding: 1.5rem 1rem;
        }

        .cprofile-stat-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .cprofile-stat-number {
            font-size: clamp(2rem, 5vw, 3rem);
        }

        .cprofile-stat-label {
            font-size: 0.95rem;
        }

        .cprofile-authorized-line {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .cprofile-right-image {
            height: 220px;
        }

        .cprofile-left-content {
            padding: 2.5rem 1.2rem;
        }

        .cprofile-main-heading {
            font-size: clamp(1.8rem, 7vw, 3rem);
        }

        .cprofile-gold-badge {
            padding: 0.45rem 1rem;
        }

        .cprofile-badge-label {
            font-size: 0.8rem;
        }

        .cprofile-stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
        }

        .cprofile-stat-block {
            padding: 1.2rem 0.8rem;
        }

        .cprofile-stat-icon {
            font-size: 1.8rem;
            margin-bottom: 0.6rem;
        }

        .cprofile-stat-number {
            font-size: clamp(1.8rem, 6vw, 2.5rem);
            margin-bottom: 0.6rem;
        }

        .cprofile-stat-suffix {
            font-size: clamp(1.4rem, 5vw, 2rem);
        }

        .cprofile-stat-label {
            font-size: 0.85rem;
        }

        .cprofile-authorized-line {
            padding: 0.8rem 1rem;
            flex-direction: column;
            text-align: center;
            gap: 0.4rem;
        }

        .cprofile-authorized-text {
            font-size: 0.9rem;
        }

        .cprofile-description {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
    }

    @media (min-width: 1440px) {
        .cprofile-grid-main {
            min-height: 650px;
        }

        .cprofile-left-content {
            padding: 5rem 5rem;
        }

        .cprofile-main-heading {
            font-size: clamp(3rem, 5vw, 5.5rem);
        }
    }

    /* Pricing Section Specific Styles */
    .pricing-section-wrapper {
        background: linear-gradient(135deg, #E8F4F8 0%, #D4E9F7 100%);
        padding: 6rem 2rem;
    }

    .pricing-container-main {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
    }

    /* Top Heading */
    .pricing-top-heading {
        text-align: center;
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.2rem, 4.5vw, 4rem);
        font-weight: 800;
        color: #1A202C;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .pricing-heading-highlight {
        background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .pricing-subheading {
        text-align: center;
        font-size: clamp(1.1rem, 2vw, 1.3rem);
        color: #4A5568;
        margin-bottom: 4rem;
    }

    /* Pricing Cards Grid */
    .pricing-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Individual Card */
    .pricing-card-single {
        background: white;
        border-radius: 25px;
        padding: 2.5rem;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        border: 3px solid transparent;
    }

    .pricing-card-single:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(74, 144, 226, 0.2);
        border-color: #E8F4F8;
    }

    /* Popular Badge */
    .pricing-badge-popular {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    }

    /* Card Header */
    .pricing-card-header {
        margin-bottom: 2rem;
    }

    .pricing-plan-name {
        font-family: 'Outfit', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: #4A90E2;
        margin-bottom: 0.8rem;
    }

    .pricing-plan-description {
        font-size: 1rem;
        color: #4A5568;
        line-height: 1.6;
    }

    /* Price Display */
    .pricing-amount-box {
        margin-bottom: 2rem;
    }

    .pricing-currency-symbol {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1A202C;
        vertical-align: top;
    }

    .pricing-amount-number {
        font-family: 'Outfit', sans-serif;
        font-size: 3.5rem;
        font-weight: 800;
        color: #1A202C;
        line-height: 1;
    }

    /* Buy Button */
    .pricing-btn-buy {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.15rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        background: linear-gradient(135deg, #FCAF1B 0%, #FCAF1B 100%);
        color: white;
        /* box-shadow: 0 8px 25px #fad220; */
        transition: all 0.3s ease;
        font-family: 'Plus Jakarta Sans', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .pricing-btn-buy:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 140, 66, 0.5);
    }

    /* Features List */
    .pricing-features-heading {
        font-size: 1rem;
        font-weight: 700;
        color: #1A202C;
        margin-bottom: 1.2rem;
    }

    .pricing-features-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-feature-item {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        font-size: 1rem;
        color: #4A5568;
        line-height: 1.5;
    }

    .pricing-checkmark-icon {
        width: 20px;
        height: 20px;
        background: #1A202C;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }

    .pricing-checkmark-icon::before {
        content: '✓';
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .pricing-feature-blue .pricing-checkmark-icon {
        background: #4A90E2;
    }

    /* Info Icon */
    .pricing-info-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        background: #E8F4F8;
        color: #4A90E2;
        border-radius: 50%;
        font-size: 0.75rem;
        font-weight: 700;
        margin-left: 0.3rem;
        cursor: help;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .pricing-cards-grid {
            gap: 2.5rem;
        }

        .pricing-plan-name {
            font-size: 1.8rem;
        }

        .pricing-amount-number {
            font-size: 3rem;
        }
    }

    @media (max-width: 768px) {
        .pricing-section-wrapper {
            padding: 4rem 1.5rem;
        }

        .pricing-top-heading {
            font-size: clamp(1.8rem, 6vw, 3.5rem);
        }

        .pricing-subheading {
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        .pricing-cards-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .pricing-card-single {
            padding: 2rem;
        }

        .pricing-plan-name {
            font-size: 1.6rem;
        }

        .pricing-amount-number {
            font-size: 2.8rem;
        }

        .pricing-btn-buy {
            padding: 1.1rem 1.8rem;
            font-size: 1.05rem;
        }
    }

    @media (max-width: 480px) {
        .pricing-section-wrapper {
            padding: 3rem 1rem;
        }

        .pricing-top-heading {
            font-size: clamp(1.5rem, 7vw, 3rem);
        }

        .pricing-card-single {
            padding: 1.8rem;
        }

        .pricing-badge-popular {
            font-size: 0.8rem;
            padding: 0.4rem 1.2rem;
        }

        .pricing-plan-name {
            font-size: 1.5rem;
        }

        .pricing-amount-number {
            font-size: 2.5rem;
        }

        .pricing-btn-buy {
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }

        .pricing-feature-item {
            font-size: 0.95rem;
        }
    }

    @media (min-width: 1440px) {
        .pricing-container-main {
            max-width: 1400px;
        }

        .pricing-section-wrapper {
            padding: 7rem 3rem;
        }
    }

    /* Testimonials Section Specific Styles */
    .testimonials-section-wrapper {
        background: linear-gradient(135deg, #1e5a7a 0%, #2d7a9b 100%);
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
    }

    /* Decorative Background Shapes */
    .testimonials-bg-shape {
        position: absolute;
        opacity: 0.1;
        pointer-events: none;
    }

    .testimonials-bg-triangle-1 {
        width: 0;
        height: 0;
        border-left: 400px solid transparent;
        border-right: 400px solid transparent;
        border-bottom: 600px solid #4A90E2;
        top: -200px;
        right: -100px;
        transform: rotate(15deg);
    }

    .testimonials-bg-triangle-2 {
        width: 0;
        height: 0;
        border-left: 300px solid transparent;
        border-right: 300px solid transparent;
        border-bottom: 500px solid #50C9CE;
        bottom: -150px;
        left: -50px;
        transform: rotate(-10deg);
    }

    .testimonials-container-main {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        position: relative;
        z-index: 10;
    }

    /* Top Heading */
    .testimonials-main-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 800;
        color: white;
        line-height: 1.2;
        margin-bottom: 3rem;
        text-align: left;
    }

    .testimonials-heading-highlight {
        color: #FFD700;
    }

    /* Main Content Grid - Left rating + Right slider */
    .testimonials-content-grid {
        display: grid;
        grid-template-columns: 300px 1fr;
        gap: 3rem;
        align-items: start;
    }

    /* Left Side - Google Rating */
    .testimonials-google-rating {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        position: sticky;
        top: 100px;
    }

    .testimonials-rating-badge {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 0.5rem;
    }

    .testimonials-stars-display {
        display: flex;
        gap: 0.3rem;
        font-size: 2rem;
    }

    .testimonials-star-filled {
        color: #FFD700;
    }

    .testimonials-review-count {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        font-weight: 600;
    }

    .testimonials-google-logo {
        margin-top: 0.5rem;
    }

    .testimonials-google-text {
        font-size: 2rem;
        font-weight: 700;
        color: white;
    }

    .testimonials-google-g {
        color: #4285F4;
    }

    .testimonials-google-o1 {
        color: #EA4335;
    }

    .testimonials-google-o2 {
        color: #FBBC05;
    }

    .testimonials-google-g2 {
        color: #4285F4;
    }

    .testimonials-google-l {
        color: #34A853;
    }

    .testimonials-google-e {
        color: #EA4335;
    }

    /* Right Side - Reviews Slider Container */
    .testimonials-slider-wrapper {
        position: relative;
    }

    .testimonials-slider-container {
        overflow: hidden;
        position: relative;
    }

    .testimonials-slider-track {
        display: flex;
        gap: 2rem;
        transition: transform 0.5s ease;
    }

    /* Review Card */
    .testimonials-review-card {
        min-width: 320px;
        max-width: 320px;
        background: white;
        border-radius: 25px;
        padding: 1.8rem;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        height: 380px;
    }

    /* Card Header */
    .testimonials-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .testimonials-user-info {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .testimonials-user-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #4A90E2 0%, #50C9CE 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        font-weight: 700;
        flex-shrink: 0;
    }

    .testimonials-user-details {
        display: flex;
        flex-direction: column;
    }

    .testimonials-user-name {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #1A202C;
    }

    .testimonials-review-date {
        font-size: 0.9rem;
        color: #718096;
    }

    .testimonials-google-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    /* Stars Rating */
    .testimonials-card-stars {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .testimonials-card-star {
        color: #FFD700;
        font-size: 1.2rem;
    }

    .testimonials-verified-badge {
        width: 18px;
        height: 18px;
        background: #4285F4;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        margin-left: 0.3rem;
    }

    /* Review Text */
    .testimonials-review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #4A5568;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex: 1;
    }

    .testimonials-read-more {
        color: #4A90E2;
        font-weight: 600;
        cursor: pointer;
        font-size: 0.9rem;
        border: none;
        background: none;
        padding: 0;
        text-decoration: underline;
        align-self: flex-start;
    }

    /* Navigation Buttons */
    .testimonials-nav-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .testimonials-nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials-nav-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.1);
    }

    .testimonials-nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* Trust Badge */
    .testimonials-trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(34, 197, 94, 0.2);
        border: 2px solid rgba(34, 197, 94, 0.4);
        padding: 0.6rem 1.2rem;
        border-radius: 50px;
        color: white;
        font-weight: 700;
        font-size: 0.9rem;
        margin-top: 2rem;
    }

    .testimonials-trust-icon {
        color: #22C55E;
        font-size: 1.2rem;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .testimonials-content-grid {
            grid-template-columns: 280px 1fr;
            gap: 2rem;
        }

        .testimonials-review-card {
            min-width: 300px;
            max-width: 300px;
            height: 270px;
        }

        .testimonials-main-heading {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
        }
    }

    @media (max-width: 768px) {
        .testimonials-section-wrapper {
            padding: 4rem 1.5rem;
        }

        .testimonials-main-heading {
            font-size: clamp(2rem, 6vw, 3.5rem);
            text-align: center;
            margin-bottom: 2rem;
        }

        .testimonials-content-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .testimonials-google-rating {
            position: static;
            max-width: 300px;
            margin: 0 auto;
        }

        .testimonials-review-card {
            min-width: 280px;
            max-width: 280px;
            height: 260px;
        }

        .testimonials-slider-track {
            gap: 1.5rem;
        }

        .testimonials-nav-buttons {
            margin-top: 2rem;
            display: flex !important;
        }

        .testimonials-slider-wrapper {
            width: 100%;
            overflow: visible;
        }

        .testimonials-slider-container {
            width: 100%;
            overflow: hidden;
        }
    }

    @media (max-width: 480px) {
        .testimonials-section-wrapper {
            padding: 3rem 1rem;
        }

        .testimonials-main-heading {
            font-size: clamp(1.8rem, 7vw, 3rem);
            margin-bottom: 1.5rem;
        }

        .testimonials-content-grid {
            gap: 1.5rem;
        }

        .testimonials-review-card {
            min-width: 260px;
            max-width: 260px;
            padding: 1.5rem;
            height: 250px;
        }

        .testimonials-google-rating {
            padding: 1.5rem;
        }

        .testimonials-rating-badge {
            font-size: 1.5rem;
        }

        .testimonials-stars-display {
            font-size: 1.5rem;
        }

        .testimonials-nav-btn {
            width: 45px;
            height: 45px;
            font-size: 1.3rem;
        }

        .testimonials-nav-buttons {
            margin-top: 1.5rem;
        }
    }

    @media (min-width: 1440px) {
        .testimonials-container-main {
            max-width: 1600px;
        }

        .testimonials-section-wrapper {
            padding: 7rem 3rem;
        }
    }
     @media (max-width: 768px){
        .testimonials-google-rating{
            display: none;
        }
     }
        @media (max-width: 440px){ 
        .testimonials-google-rating{
            display: none;
        }
     }

    /* Demo CTA Strip */
    .demo-cta-wrapper {
        background: linear-gradient(135deg, #1A3C5E 0%, #1E4D6D 100%);
        padding: 3.5rem 2rem;
        position: relative;
        overflow: hidden;
    }

    /* Animated background elements */
    .demo-cta-bg-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 215, 0, 0.08);
        pointer-events: none;
    }

    .demo-cta-circle-1 {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -100px;
    }

    .demo-cta-circle-2 {
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -100px;
    }

    .demo-cta-circle-3 {
        width: 150px;
        height: 150px;
        top: 50%;
        left: 20%;
        animation: demo-float 6s ease-in-out infinite;
    }

    @keyframes demo-float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }

    .demo-cta-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .demo-cta-grid {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 3rem;
        align-items: center;
    }

    /* Left Content */
    .demo-cta-left {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .demo-cta-heading {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 900;
        line-height: 1.1;
        color: white;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .demo-cta-highlight {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
        position: relative;
    }

    .demo-cta-highlight::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 6px;
        background: white;
        border-radius: 3px;
        opacity: 0.5;
    }

    .demo-cta-subtext {
        font-size: clamp(1.1rem, 2vw, 1.4rem);
        color: rgba(255, 255, 255, 0.95);
        font-weight: 600;
        line-height: 1.5;
        max-width: 600px;
    }

    .demo-cta-features {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .demo-cta-feature-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        color: white;
        font-size: 1rem;
        font-weight: 600;
    }

    .demo-cta-check-icon {
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FF8C42;
        font-weight: 900;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Right Button */
    .demo-cta-right {
        display: flex;
        align-items: center;
    }

    .demo-cta-button {
        padding: 1.8rem 4rem;
        font-family: 'Outfit', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        background: white;
        color: #FF6B35;
        border: none;
        border-radius: 60px;
        cursor: pointer;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .demo-cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s ease;
    }

    .demo-cta-button:hover::before {
        left: 100%;
    }

    .demo-cta-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        background: #FFD700;
        color: #1A202C;
    }

    .demo-cta-button-icon {
        display: inline-block;
        margin-left: 0.8rem;
        font-size: 1.6rem;
        transition: transform 0.3s ease;
    }

    .demo-cta-button:hover .demo-cta-button-icon {
        transform: translateX(8px);
    }

    /* Badge on button */
    .demo-cta-badge {
        position: absolute;
        top: -12px;
        right: -12px;
        background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
        color: white;
        font-size: 0.7rem;
        font-weight: 800;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
        animation: demo-pulse 2s infinite;
    }

    @keyframes demo-pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.08);
        }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .demo-cta-heading {
            font-size: clamp(2.2rem, 4.5vw, 4rem);
        }

        .demo-cta-button {
            padding: 1.6rem 3.5rem;
            font-size: 1.3rem;
        }

        .demo-cta-grid {
            gap: 2.5rem;
        }
    }

    @media (max-width: 768px) {
        .demo-cta-wrapper {
            padding: 3rem 1.5rem;
        }

        .demo-cta-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .demo-cta-left {
            align-items: center;
        }

        .demo-cta-heading {
            font-size: clamp(2rem, 6vw, 3.5rem);
        }

        .demo-cta-subtext {
            max-width: 100%;
            font-size: 1.05rem;
        }

        .demo-cta-features {
            justify-content: center;
        }

        .demo-cta-right {
            justify-content: center;
        }

        .demo-cta-button {
            padding: 1.5rem 3rem;
            font-size: 1.2rem;
            width: 100%;
            max-width: 400px;
        }

        .demo-cta-highlight::after {
            bottom: -6px;
            height: 5px;
        }
    }

    @media (max-width: 480px) {
        .demo-cta-wrapper {
            padding: 2.5rem 1rem;
        }

        .demo-cta-heading {
            font-size: clamp(1.8rem, 7vw, 3rem);
        }

        .demo-cta-subtext {
            font-size: 1rem;
        }

        .demo-cta-features {
            gap: 1.2rem;
        }

        .demo-cta-feature-item {
            font-size: 0.9rem;
        }

        .demo-cta-check-icon {
            width: 22px;
            height: 22px;
            font-size: 0.8rem;
        }

        .demo-cta-button {
            padding: 1.3rem 2rem;
            font-size: 1.1rem;
        }

        .demo-cta-button-icon {
            font-size: 1.4rem;
            margin-left: 0.6rem;
        }

        .demo-cta-badge {
            font-size: 0.65rem;
            padding: 0.35rem 0.7rem;
        }

        .demo-cta-grid {
            gap: 2rem;
        }
    }

    @media (min-width: 1440px) {
        .demo-cta-container {
            max-width: 1600px;
        }

        .demo-cta-wrapper {
            padding: 4rem 3rem;
        }

        .demo-cta-button {
            padding: 2rem 4.5rem;
            font-size: 1.5rem;
        }
    }
/* faq section */.faq-section {
  background: #f8fbff;
  padding: 60px 20px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Side */
.faq-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FAQ Content */
.faq-content {
  text-align: left;
}

.faq-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #3652a2;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 15px 10px;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: #444;
}

.faq-question:hover {
  color: #3652a2;
}

.faq-icon {
  font-size: 1.5rem;
  color: #3652a2;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-answer {
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-image img {
    margin: 0 auto 20px;
  }
}

