/* Custom CSS for the E-Commerce Expertise Section */

/* Variables (Optional, but good practice) */
:root {
    --custom-dark: #000019; /* Main section background color (dark blue/black) */
    --box-dark: #1e293b; /* Service box background color */
    --highlight-blue: #65D7FF; /* Primary blue color for buttons/highlights */
    --text-blue: #6495ED; /* Light blue/periwinkle for the 'Expertise' highlight */
    --custom-dark-2: #0f172a; /* Main section background color (dark blue/black) */
    --highlight-blue-work: #50c9c3; /* Primary accent color for the "Work" highlight */
    --arrow-bg-light: #f1f5f9; /* Light background for the arrow */
    --arrow-bg-dark: #007bff; /* Blue background for the active arrow */
    --pricing-dark-bg: #0d1222; /* Very dark background */
    --card-bg: #1e293b; /* Base card background */
    --price-highlight: #5887ff; /* Blue accent color */
    --gradient-start: #0f274a;
    --gradient-end: #0f172a;
    --faq-dark-bg: #0d1222;    /* Section background */
    --item-bg: #101827;        /* Accordion item background (unopened) */
    --item-active-bg: #1c2b48; /* Accordion item background (open/hover) */
    --border-color: #334155;    /* Border/separator color */
    --text-primary: #e2e8f0;    /* Main text color */
    --text-secondary: #94a3b8; /* Answer text color */
    --collapse-icon-color: #5887ff; /* Blue accent for arrow */
    --custom-dev-bg: #f1f5f9; /* Light background for the box */
    --custom-dev-text: #0d1222; /* Very dark text color */
}
.header-bg {
    /*background-color: #1a1a1a;*/
    /*background-image: linear-gradient(to right, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9)), url(https://placehold.co/1920x100/1a1a1a/1a1a1a?text=Subtle+Dark+Pattern);*/
    background-size: cover;
    background-position: center;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 10px 40px 0 40px;
    margin: 20px auto;
}

/* Specific styling for the AI Horizon logo/glow effect */
.header-bg .logo-glow {
    /* Using a radial gradient for the bright yellow/orange glow behind the logo */
    background: radial-gradient(circle at 50% 100%, rgba(255, 193, 7, 0.4) 0%, rgba(26, 26, 26, 0) 70%);
    position: absolute;
    top: 0;
    left: 10px;
    width: 150px;
    height: 100%;
    pointer-events: none;
    z-index: 1; /* Keep it behind the text */
}

/* Ensure header links and text are white/light */
.header-bg a, .header-bg p {
    color: white !important;
    text-decoration: none;
    z-index: 2;
}

/* Style for the blue 'Live Chat' button */
.header-bg .live-chat-btn {
    background-color: #63b3ed; /* Light blue color */
    color: #1a1a1a; /* Dark text on the button */
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.header-bg .live-chat-btn:hover {
    background-color: #4299e1;
}
.banner-sec {
    padding: 150px 0 50px 0;
    /*background-image: none;*/
}

/*!* 1. Target your existing wrapper to act as the main container *!*/
/*.ai-horizon-stripe-background {*/
/*    !* Base styles remain for structure *!*/
/*    height: 100vh;*/
/*    position: relative;*/
/*    overflow: hidden;*/

/*    !* 2. UPDATED GRADIENT using colors from your image *!*/
/*    background: linear-gradient(*/
/*            135deg,*/
/*            #2C3947,    !* Deep Slate Blue (Primary Background Color) *!*/
/*            #344658,    !* Slightly Lighter Slate Blue *!*/
/*            #41D1E9,    !* Bright Cyan/Accent Blue (Glow Spot) *!*/
/*            #202B37     !* Deepest Blue *!*/
/*    );*/

/*    !* Make the background much larger than the screen for the movement effect *!*/
/*    background-size: 400% 400%;*/

/*    !* Apply the animation *!*/
/*    animation: gradientShift 20s ease infinite;*/
/*}*/

/*!* 3. Define the Movement (Keyframes - No change needed) *!*/
/*@keyframes gradientShift {*/
/*    0% {*/
/*        background-position: 0% 50%;*/
/*    }*/
/*    50% {*/
/*        background-position: 100% 50%;*/
/*    }*/
/*    100% {*/
/*        background-position: 0% 50%;*/
/*    }*/
/*}*/

/*!* 4. Ensure Content Visibility (Crucial for dark backgrounds) *!*/
/*!* Ensure the content sits above the background layer and is bright white. *!*/
/*.ai-horizon-stripe-background header,*/
/*.ai-horizon-stripe-background .banner-sec {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.ai-horizon-stripe-background h1,*/
/*.ai-horizon-stripe-background p,*/
/*.ai-horizon-stripe-background .txt {*/
/*    !* Ensure all text is bright white for contrast *!*/
/*    color: white !important;*/
/*}*/

.custom-dark-bg {
    background-color: var(--custom-dark);
    /* Adding some subtle gradient/texture effect to match the screenshot */
    /*background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity=".05"><circle cx="50" cy="50" r="40" fill="%23ffffff"/></svg>');*/
    background-size: 100% 100%, 50px 50px; /* Adjust as needed */
    padding-bottom: 8rem !important; /* Extra padding at the bottom */
}

/* Header Styles */
.custom-badge {
    background-color: #fff !important;
    color: #000 !important;
    padding: 0.75em 1em;
    font-size: 0.8rem;
    font-weight: 600;
}

.custom-heading {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.expertise-text {
    font-weight: 700;
    color: var(--text-blue);
}

.custom-btn {
    background-color: var(--highlight-blue) !important;
    border-color: var(--highlight-blue) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Timer Section Styles */
.limited-offer-bar {
    position: relative;
    padding-top: 1rem;
}

.digit-box {
    /* background-color: #003D66; */
    padding: 0 0.3rem;
    border-radius: 4px;
    line-height: 1.5;
    font-size: 3rem;
    background-image: linear-gradient(to bottom, #65D7FF, #003D66);
}
.line1 {
    position: absolute;
    top: 11%;
}
.line2 {
    position: absolute;
    top: 11%;
    right: 0%;
}
.digit-separator {
    font-size: 3rem;
    color: #4b5563; /* Grayish separator */
    font-weight: 100;
    display: inline-block;
}


/* Service Box Styles */
.service-box {
    background-color: transparent;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s
    ease;
    border: 1px solid #65d7ff;
}
.service-box1 {
    background-color: #65D7FF;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s
    ease;
    border: 1px solid #65d7ff;
}
.service-box:hover {
    border-color: var(--text-blue); /* Light border on hover */
    transform: translateY(-2px);
}

.small-box h4 {
    font-size: 1.15rem;
    font-weight: 600;
}

.small-box .icon-placeholder {
    font-size: 2rem;
    color: var(--text-blue); /* Icon color */
    display: block;
    margin-bottom: 0.5rem;
}
.custom-dev-box {
    /* Use a light background color */
    background-color: var(--custom-dev-bg);

    /* Rounded corners, matching the style in the screenshot */
    border-radius: 2rem;

    /* Ensure child absolute elements are relative to this box */
    position: relative;

    /* Hide anything that overflows, like the bottom of the absolutely positioned image */
    overflow: hidden;

    /* Set min-height or padding to accommodate the absolute image */
    padding-bottom: 200px !important; /* Adjust padding to make room for the absolute image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 2. Text Styling */
.custom-dev-title {
    color: var(--custom-dev-text);
    font-size: 2.2rem;
    line-height: 1.15;
}

.custom-dev-description {
    color: rgba(13, 18, 34, 0.7); /* Dark text with opacity */
    font-size: 1rem;
    line-height: 1.5;
    /* Increase margin-bottom to separate text from absolute image */
    margin-bottom: 3rem !important;

    /* Ensure text content stays above the absolutely positioned image */
    position: relative;
    z-index: 2;
}

/* 3. Image Wrapper (The Absolute Positioning Container) */
.image-absolute-wrapper {
    position: absolute;
    bottom: -50px; /* Pull it slightly off the bottom edge */
    left: 0;
    width: 100%;
    /* Maximize z-index to ensure the image appears above the background pattern */
    z-index: 5;
}

/* 4. Image Styling */
.custom-dev-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Scale and position the image slightly to match the angle in the screenshot */
    transform: scale(1.1) rotate(1deg);
    transform-origin: bottom center;
}

/* 5. Background Pattern Decoration (Simulated the faded white lines) */
.box-pattern-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using a radial gradient and semi-transparent color to mimic the subtle lines */
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: 1; /* Keep it behind the text and image */
    pointer-events: none;
}
/* Large Card Specific Styles */
.large-box {
    background-size: cover;
    background-position: center bottom;
    padding-bottom: 5rem !important;
    border: 1px solid var(--text-blue); /* Accent border on the large box */
    background: #fff;
}

.large-box h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
}

.image-placeholder {
    /* Mimic the overlayed image effect from the screenshot */
    position: absolute;
    bottom: -1rem; /* Adjust to move it out of the box slightly */
    left: 10%;
    width: 90%;
    height: 60%;
    background-color: #334155; /* Placeholder color for the device/image */
    border-radius: 10px;
    opacity: 0.9;
    z-index: 1;
    color: white;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    /* For the actual image, you would use an <img> tag with a specific class and styling */
}
.custom-dark-bg-2 {
    background-color: var(--custom-dark-2);
    /* Adding some subtle pattern for depth */
    background-image: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 1px, transparent 1px), radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.work-highlight {
    color: var(--highlight-blue-work);
}
.ecom-card-heading {
    color: var(--highlight-blue);
}

/* Work Item Grid Styles */
.work-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #1e293b; /* Slightly lighter background for the tile */
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(80, 201, 195, 0.4); /* Glow effect */
}

.work-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: filter 0.3s ease;
}

/* Navigation Arrow Styles */
.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Style for the 'Previous' arrow (White with dark icon) */
.nav-arrow:not(.next-arrow) {
    background-color: var(--arrow-bg-light);
    color: var(--custom-dark-2);
    border: none;
}

.nav-arrow:not(.next-arrow):hover {
    background-color: #cbd5e1;
}

/* Style for the 'Next' arrow (Blue/Active) */
.next-arrow {
    background-color: var(--arrow-bg-dark);
    color: white;
    border: none;
}

.next-arrow:hover {
    background-color: #0069d9;
}
.pricing-dark-bg {
    background-color: var(--pricing-dark-bg);
    /* Adding subtle pattern/texture from the screenshot */
    background-image: url('pricing-bg.png');
    background-repeat: no-repeat;
}

.pricing-highlight {
    color: var(--price-highlight);
}

/* Pricing Card Styles */
.pricing-card {
    background-color: #1a2333;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    /* Simulate a subtle gradient border */
    border: 3px solid transparent;
    border-image: linear-gradient(45deg, rgba(88, 135, 255, 0.5), rgba(0, 0, 0, 0.2)) 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 135, 255, 0.2);
}

/* Card Header Background (The blue map-like image) */
.card-price-label {
    position: relative;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    z-index: 2; /* Ensure text is above the gradient map background */
}

/*.pricing-card::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 120px; !* Height of the blue header area *!*/
/*    !* This gradient is used to mimic the map-like background image *!*/
/*    background-image: linear-gradient(to right, #007bff, #5887ff);*/
/*    opacity: 0.7; !* Adjust opacity to match the image's subtlety *!*/
/*    z-index: 1;*/
/*}*/

/* Specific styling for the Professional (Center) Card */
.professional-card {
    background-color: #1e293b;
    border-color: var(--price-highlight);
    border-width: 3px;
    transform: scale(1.05); /* Make it slightly larger */
}

.professional-card:hover {
    transform: scale(1.08);
}

/* Package Title and Price Details */
.package-title {
    /*font-size: 1.8rem;*/
    font-weight: 700;
    line-height: 1.2;
    z-index: 2;
    position: relative;
    color: var(--price-highlight); /* Use accent color for title */
}

.price-value {
    color: white;
    z-index: 2;
    position: relative;
}

.price-value .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 300;
}

.price-value .amount {
    font-size: 4rem; /* Main price number size */
    line-height: 1;
}

.price-value .cents {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 300;
}

.professional-card .price-value .amount {
    font-size: 5rem; /* Larger price for the middle card */
}

.original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    /* color: rgba(255, 255, 255, 0.5) !important; */
    /* margin-top: 0.5rem; */
    text-align: right;
    margin-right: 10%;
}
del {
    text-decoration: line-through;
}

.package-description {
    font-size: 0.9rem;
}

/* Button Styling */
.special-discount-btn {
    background: linear-gradient(to right, #007bff, #5887ff);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: opacity 0.3s ease;
}

.special-discount-btn:hover {
    opacity: 0.9;
    background: linear-gradient(to right, #0069d9, #4a77e5);
}
.custom-testimonial-badge {
    color: #000 !important;
    background-color: #f1f5f9 !important;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}
.badge-item p {
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* Illustration Styling */
.illustration-container {
    padding-left: 20px;
}

.laptop-image {
    /* If you use a PNG of the laptop, this helps position it */
    max-width: 100%;
    height: auto;
    z-index: 10;
}

.desktop-base {
    /* Simulating the white base/table the laptop sits on */
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: #fff;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

/* Testimonial Card Styling */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

/* Testimonial Grid and Column Layout (The Staggered Effect) */
.testimonial-grid {
    display: flex;
    align-items: flex-start; /* Aligns content to the top */
}

.testimonial-column {
    min-width: 250px; /* Adjust based on desired card width */
    max-width: 300px;
}

/* Apply the offset to the second column to achieve the staggered look */
.testimonial-grid .testimonial-column:nth-child(2) {
    margin-top: 50px; /* Pushes the second column down */
}

/* Decorations (Faded circle and line) */
.decoration-circle {
    position: absolute;
    right: 5%;
    top: 50%;
    width: 120px;
    height: 120px;
    background-color: #79a6e6; /* Blue circle color */
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
}

.decoration-line {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 300px;
    height: 2px;
    border-bottom: 2px dashed #e2e8f0;
    transform: rotate(15deg);
    z-index: 0;
}

/* Media Query for smaller screens to ensure cards stack correctly */
@media (max-width: 991.98px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-column {
        width: 100%;
        max-width: 450px;
        margin-right: 0 !important;
    }
    .testimonial-grid .testimonial-column:nth-child(2) {
        margin-top: 0; /* Remove stagger on smaller screens */
    }
    .decoration-circle, .decoration-line {
        display: none;
    }
}
@media (max-width: 767px) {
    .header-bg {
        box-shadow: none !important;
        border: none !important
    }
    .line1, .line2, .ai-image img, .ct2-wrapper img {
        display: none !important;
    }
    .ai-image {
        display: none;
    }
    .expert-btn {
        justify-content: center;
        display: flex;
        margin-top: 5%;
    }
    .ct2-wrapper img {
        display: none;
    }
    .fun-text {
        left: 50% !important;
    }
}
/*Media Query For Z fold*/
/*@media (device-width: 1536px) and (device-height: 1812px) {*/
/*    .line1, .line2, .ai-image img, .ct2-wrapper img {*/
/*        display: none;*/
/*    }*/

/*}*/
.faq-dark-bg {
    background-color: var(--faq-dark-bg);
}

.accordion {
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-border-radius: 0.5rem;
    --bs-accordion-inner-border-radius: 0.5rem;
}

.custom-accordion-item {
    background-color: var(--item-bg);
    border: none; /* Remove default item border */
    margin-bottom: 0.75rem; /* Space between items */
    border-radius: 0.5rem;
    overflow: hidden;
    /* Simulate the subtle border glow */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.custom-accordion-item:first-of-type,
.custom-accordion-item:last-of-type {
    border-radius: 0.5rem;
}

.custom-accordion-button {
    background-color: var(--item-bg);
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 1rem 1.25rem;
    box-shadow: none;
    transition: background-color 0.3s ease;
    border-radius: 0.5rem;
}

.custom-accordion-button:not(.collapsed) {
    background-color: var(--item-active-bg); /* Darker background when open */
    color: var(--text-primary);
}

.custom-accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(88, 135, 255, 0.25); /* Subtle blue focus ring */
}

/* Custom styling for the Collapse Icon (Chevron/Arrow) */
.custom-accordion-button::after {
    filter: invert(1); /* Makes the default Bootstrap arrow white */
    transition: transform 0.3s ease;
}

.custom-accordion-button:not(.collapsed)::after {
    /* Change arrow color/rotation when open */
    filter: invert(0) sepia(1) saturate(5) hue-rotate(200deg) brightness(1.5); /* Makes the arrow blue */
    transform: var(--bs-accordion-btn-icon-transform);
}

.custom-accordion-body {
    padding: 0.5rem 1.25rem 1.25rem;
    text-align: left;
    color: var(--text-secondary);
    background-color: var(--item-active-bg);
}
/* --- Keyframes for Animation (The Engine) --- */

/* Moves content from its initial position (end of duplicated content) back to the start */
@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); } /* Loops back to the start of the duplicated content */
}

/* Moves content from the start to the end of the duplicated content */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Slider Structure Styling --- */

.scroll-container {
    /* Hides the overflowing content outside the viewport */
    overflow: hidden;
    padding: 20px 0;
}

.scroll-track {
    /* Establishes flex context for the images to be inline */
    display: flex;

    /* Crucial for the infinite loop: Needs 200% width to fit the original content + the duplicated content */
    width: 200%;

    /* Gap between rows */
    margin-bottom: 20px;
}

.work-item-group {
    /* Container for the set of images (original or duplicated) */
    display: flex;
    flex-shrink: 0; /* Prevents images from shrinking */
    gap: 15px; /* Spacing between work items */
    padding-right: 15px;

    /* Each group takes up exactly 50% of the .scroll-track's total width */
    width: 50%;
}

.work-image {
    /* Style for individual image items */
    width: 200px; /* Fixed width for consistent scrolling speed */
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    filter: brightness(0.9);
}

.work-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* --- Animation Application (Applying the Movement) --- */

/* Row 1: Left to Right Scroll (Uses the scroll-right keyframe) */
.scroll-track-1 {
    animation: scroll-right 40s linear infinite; /* 40s duration, continuous, infinite loop */
}

/* Row 2: Right to Left Scroll (Uses the scroll-left keyframe) */
.scroll-track-2 {
    animation: scroll-left 40s linear infinite;
}

/* Pause animation on hover for better visibility */
.scroll-track:hover {
    animation-play-state: paused;
}

/* --- Section and Navigation Styling --- */

.custom-dark-bg-2 {
    background-color: #0d1222;
}

.work-highlight {
    color: #63b3ed; /* Accent blue color */
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

/* Default White Arrow Style */
.nav-arrow:not(.next-arrow) {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
    background-color: transparent;
}
.nav-arrow:not(.next-arrow):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Blue Arrow Style (Matching the screenshot) */
.nav-arrow.next-arrow {
    background-color: #63b3ed;
    color: #1a1a1a;
    border: none;
}
.nav-arrow.next-arrow:hover {
    background-color: #4299e1;
}
/* --- Global Pricing Section Styling --- */
/* Assuming this section will sit on a dark background */
.pricing-section-container {
    padding: 6rem 0;
}

/* --- Base Card Styling --- */
.custom-pricing-card {
    /* Base dark, semi-transparent card look */
    background-color: rgba(26, 33, 49, 0.7); /* Deep charcoal/blue background */
    color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle white border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    /* Set min-height to ensure consistency since the Professional card is taller */
    min-height: 450px;
}

/* --- Blue Gradient Header (The top curve/banner) --- */
.card-header-bg {
    /* Position the blue top layer */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    /* Blue gradient from the screenshot */
    /*background: linear-gradient(135deg, #1c4b90 0%, #3070ff 100%);*/
    background: var(--highlight-blue);
    background-image: url("pricing-card-bg.png");

    /* Apply border radius only to the top */
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;

    /* Height and spacing for the Price text */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Position the PRICE label inside the blue bar */
.custom-pricing-card .card-price-label {
    position: absolute;
    /* top: 1rem; */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #000;
    margin-bottom: 0 !important;
}

/* Push package title below the blue header */
.custom-pricing-card .package-title {
    margin-top: 5rem !important; /* Adjust based on card-header-bg height */
    /*font-size: 1.8rem;*/
    line-height: 1;
    font-weight: 700;
}

/* --- Price Styling --- */
.price-section {
    line-height: 1;
}

.price-value {
    /* Main color for the price figures */
    color: white;
}

.price-value .currency {
    font-size: 1.5rem;
    vertical-align: top;
    font-weight: 700;
    margin-right: -0.3rem;
}

.price-value .amount {
    font-size: 4rem;
    line-height: 1;
}


/* --- Unique Feature Line --- */
.package-setup-line {
    font-size: 1.2rem;
    /*color: #a7b7cd; !* Light grey text *!*/
}

/* --- Professional Card (Highlighted) Styling --- */
.highlighted-card {
    /*background-color: rgba(26, 33, 49, 1); !* Slightly darker, more prominent background *!*/
    transform: scale(1.05); /* Make it pop out slightly */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    padding: 3rem !important; /* Extra padding to make it visually larger */
}

.highlighted-card .price-value .amount {
    font-size: 5rem; /* Larger font for the highlighted price */
}

/* --- Button Styling (Gradient) --- */
.custom-btn-gradient {
    /* Blue gradient button to match the overall theme */
    background: linear-gradient(90deg, #4c8aff 0%, #165be5 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px; /* Pill shape */
    font-weight: 600;
    transition: all 0.3s ease;
}

.custom-btn-gradient:hover {
    background: linear-gradient(90deg, #165be5 0%, #4c8aff 100%);
    box-shadow: 0 4px 15px rgba(76, 138, 255, 0.4);
}
.footer-form-wrapper {
    border: none !important;
}
.form-ecom, .form-ecom:focus {
    background: #191930;
}
.form-ecom::placeholder {
    color: #fff !important; /* gray placeholder */
}
.footer-social-wrapper ul li a {
    background: transparent;
    color: #fff
}
div#copyright {
    background: #26263b;
}
.ai-solution-sec {
    background: url(cta-bg.png);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ai-heading {
    font-size: 2rem;
    font-weight: 700;
}

.ai-subtext {
    font-size: 1rem;
    max-width: 500px;
}

.ai-btn-list {
    margin-top: 1rem;
}

.ai-btn {
    display: inline-flex;
    align-items: center;
    /* background-color: rgba(255, 255, 255, 0.15); */
    border-radius: 6px;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s
    ease;
    min-width: 180px;
    line-height: 1.2;
}

.ai-btn i {
    font-size: 1.2rem;
    margin-right: 10px;
}
.ai-image img {
    position: absolute;
    right: 0%;
    top: -10%;
    z-index: 999 !important;
}
/*Footer*/
/* --- Typography & Layout --- */
.footer-heading-wrapper {
    /* Ensure the headings are close together */
    line-height: 0.9;
}

.upper-heading-wrapper, .lower-heading {
    color: white; /* Base text color is white for the rest of the text */
    font-size: 48px; /* Adjust as needed */
    font-weight: 700;
    margin-bottom: 0;
}

.fun-text-wrapper {
    /* Use flex to align the arrow and "Fun" */
    display: inline-flex;
    align-items: center; /* Vertically align */
}

/* --- "Fun" Text Styling (The key part) --- */
.fun-text {
    color: transparent;
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1.5px #00BFFF;
    text-stroke: 1.5px #00BFFF;
    position: absolute;
    left: 43%;
    top: 17%;
}
/* --- Arrow Styling --- */
.footer-arrow-img {
    /* Position and size the arrow image/element */
    display: flex;
    align-self: flex-start; /* Align to the top of "Fun" */
    margin-right: -15px; /* Adjust to move it closer to 'Fun' if needed */
}

/*.footer-arrow-img img {*/
/*    !* Ensure the image fits and doesn't disrupt layout *!*/
/*    max-width: 100px; !* Adjust size *!*/
/*    height: auto;*/
/*}*/

/* --- Contact & Social Styling --- */
.contact-list li {
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: white; /* Ensures link text is white */
}

.contact-item .material-icons {
    /* Style for the icons to match the image's simple look */
    font-size: 24px;
    margin-right: 15px;
    color: white;
}

.contact-item .contact-text {
    font-size: 16px;
    /* Remove the <h6> tags and use a simple span for cleaner text structure */
}

/* Social icons background to match the image's small black squares */
.social-list li a {
    background-color: #1a1a1a; /* Dark background */
    border-radius: 4px; /* Slight rounding */
    padding: 8px 10px; /* Adjust padding to match the size */
    color: white;
    display: flex; /* Helps center the icon */
}

.social-list li a i {
    font-size: 18px; /* Icon size */
}
/*CTA Section*/
.ct2-wrapper img {
    position: absolute;
    right: -6%;
    z-index: 9999;
    margin-top: -9%;
    width: 100%;
}
.book-sec {
    padding: 40px 0 !important;
}
/* --- Container for non-standard 2-1 layout --- */
.trust-badges-container {
    /* Optional: Sets up the main area. The inner flex containers handle the layout. */
    padding-top: 20px;
}

/* --- Badge Card Styling (The Box) --- */
.review-badge-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 10px;
    /* max-width: 90%; */
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-right: 1%;
}

/* --- Logo Styling --- */
.trust-logo {
    max-height: 35px; /* Adjust logo height to match image */
    width: auto;
    /* Margin to separate logo from rating details */
    margin-right: 20px;
}

/* Specific logo size adjustment if necessary (e.g., Clutch looks darker/smaller) */
.clutch-logo {
    max-height: 25px;
}
.bark-logo {
    max-height: 20px;
    margin-right: 40px; /* Adjust spacing since the Bark logo is horizontally wide */
}

/* --- Rating Details Styling --- */
.rating-details {
    /* Ensure text is right-aligned inside the small container */
    text-align: right;
    line-height: 1.2;
}

.rating-score {
    /* "4.9/5.0" text styling */
    font-size: 16px;
    font-weight: 600; /* Semi-bold */
    color: #333; /* Dark text */
}

.stars {
    /* Star color - Use a bright orange/yellow */
    color: #ff9900;
    font-size: 14px;
    letter-spacing: -1px; /* Tighter star spacing */
}

.rating-base {
    /* "Based on 20+ Clients" text styling */
    font-size: 12px;
    color: #6c757d; /* Muted gray text */
    margin-top: 2px;
}
.only-price {
    font-size: 14px;
    position: absolute;
}