/* ---------------------------------------------------------------
   1. DESIGN TOKENS (CSS Custom Properties)
--------------------------------------------------------------- */
/* Montserrat Variable Font */
@font-face {
    font-family: 'Montserrat';
    src: url('/wp-content/themes/photo-editing/fonts/Montserrat-VF.woff2') format('woff2');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

/* Apply Montserrat globally */
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}


:root {
    /* Palette */
    --clr-bg: #faf9f7;
    --clr-bg-alt: #f2f0ec;
    --clr-bg-dark: #141412;
    --clr-surface: #ffffff;
    --clr-border: rgba(0, 0, 0, 0.08);
    --clr-border-mid: rgba(0, 0, 0, 0.14);

    --clr-ink: #1a1a1a;
    --clr-ink-2: #4a4a48;
    --clr-ink-3: #7a7a78;
    --clr-ink-invert: #faf9f7;

    --clr-accent: #2a6b4a;
    /* forest green */
    --clr-accent-lt: #e6f0eb;
    --clr-accent-dk: #1d4d34;

    --clr-star: #d4960a;

    /* Typography */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-md: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.75rem;
    --text-4xl: 3.75rem;
    --text-5xl: 5rem;

    --leading-tight: 1.2;
    --leading-snug: 1.35;
    --leading-normal: 1.6;
    --leading-loose: 1.8;

    --tracking-tight: -0.03em;
    --tracking-normal: 0;
    --tracking-wide: 0.08em;
    --tracking-wider: 0.14em;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --max-w: 1320px;
    --header-h: 68px;
    --section-pad: 6rem;
    --gutter: clamp(1.25rem, 5vw, 4rem);

    /* Radius */
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 32px;
    --r-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 150ms;
    --dur-base: 220ms;
    --dur-slow: 380ms;
}


/* ---------------------------------------------------------------
   2. BASE STYLES
--------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    background: #fff;
    color: var(--clr-ink);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--clr-accent);
    color: #fff;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #263238;
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------------------------------------------------------------
   3. ACCESSIBILITY
--------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--clr-accent);
    color: #fff;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--dur-fast);
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}


/* ---------------------------------------------------------------
   4. LAYOUT
--------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: var(--gutter);
    padding: 0;
}

.section {
    padding-block: var(--section-pad);
}

.section--alt {
    background: var(--clr-bg-alt);
}


/* ---------------------------------------------------------------
   5. TYPOGRAPHY HELPERS
--------------------------------------------------------------- */
.section-label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-3xl));
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--clr-ink);
    max-width: 32ch;
}

.section-desc {
    font-size: var(--text-md);
    color: var(--clr-ink-2);
    max-width: 54ch;
    margin-top: var(--space-4);
    line-height: var(--leading-loose);
}

.section-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-title,
.section-header--center .section-desc {
    margin-inline: auto;
}


/* ---------------------------------------------------------------
   6. BUTTONS
--------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.75rem 1.5rem;
    border-radius: var(--r-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition:
        background var(--dur-base) var(--ease),
        color var(--dur-base) var(--ease),
        border-color var(--dur-base) var(--ease),
        transform var(--dur-fast) var(--ease),
        box-shadow var(--dur-base) var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary */
.btn--primary {
    background: var(--clr-accent);
    color: #fff;
    border-color: var(--clr-accent);
    box-shadow: 0 1px 2px rgba(42, 107, 74, 0.2);
}

.btn--primary:hover {
    background: var(--clr-accent-dk);
    border-color: var(--clr-accent-dk);
    box-shadow: 0 6px 20px rgba(42, 107, 74, 0.25);
}

/* Ghost/outline */
.btn--ghost {
    background: transparent;
    color: var(--clr-ink);
    border-color: var(--clr-border-mid);
}

.btn--ghost:hover {
    background: var(--clr-bg-alt);
    border-color: var(--clr-ink);
}

/* Outline */
.btn--outline {
    background: transparent;
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}

.btn--outline:hover {
    background: var(--clr-accent-lt);
}

/* Sizes */
.btn--small {
    padding: 0.5rem 1rem;
    font-size: var(--text-xs);
}

.btn--large {
    padding: 0.9rem 2rem;
    font-size: var(--text-base);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn svg {
    width: 1.1em;
    height: 1.1em;
}

.main-button {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 700;
    background-color: #0072dd;
    color: #fff;
    padding: 18px 35px;
    text-align: center;
    border: 2px solid #0072dd;
    border-radius: 30px;
    transition: 300ms ease-in-out;
    z-index: 1;
}

.main-button:before {
    display: block !important;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin-left: 0;
    clip-path: circle(0% at 50% 50%);
    background: #2a5caa;
    border-radius: 30px;
    opacity: 1;
    z-index: -1;
    transition: -webkit-clip-path 400ms ease-out;
    transition: clip-path 400ms ease-out;
    transition: clip-path 400ms ease-out, -webkit-clip-path 400ms ease-out;
}

.main-button:hover {
    border-color: #2a5caa;
}

.main-button:hover:before {
    clip-path: circle(100% at 50% 50%);
}

h1 {
    font-size: 55px;
    line-height: 67px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

h2 {
    font-size: 42px;
    line-height: 56px;
    color: #2A2A2A;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    line-height: 28px;
    color: #2A2A2A;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #2C2C2C;

}

/* ---------------------------------------------------------------
   7. SITE HEADER
--------------------------------------------------------------- */
/* .site-header {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    height: var(--header-h);
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--clr-border);
    transition: background var(--dur-slow) var(--ease),
        box-shadow var(--dur-slow) var(--ease);
     max-width: var(--max-w);
     margin: auto;
} */


#site-nav ul {
    display: flex;
    gap: 22px;
    align-items: center;
}

nav#site-nav li a {
    line-height: 25px;
    font-weight: 500;
}

#last-link-menu {
    padding: 8px 20px;
}

/* price section */
.price-section-titel {
    text-align: center;
    margin-bottom: 75px;
}

#service-nav .main-services-link {
    display: flex;
    align-items: center;
    gap: 10px;
}


.site-nav ul li {
    position: relative;
}

/* Main submenu */
.site-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    flex-direction: column;
    gap: 0 !important;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show submenu on hover */
#service-nav:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu links */
.sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.sub-menu li a:hover {
    background: #f5f5f5;
}

/* =========================
   HAMBURGER BUTTON
========================= */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate to X when open */
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}





/* hero section  */
#hero {
    background-image: url("/wp-content/themes/photo-editing/assets/images/main-banner-images.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    max-width: 911px;
}

#hero .main-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

#hero .main-button span {
    margin-top: 2px;
}

#hero .container {
    text-align: center;
    display: flex;
    justify-content: center;
}

.hero-content p {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 10px;
    margin-bottom: 35px;

}


/* elevates Brand section  */
#elevatesBrand {
    background: #E7FBFF;
}

#elevatesBrand .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

#elevatesBrand .brand-titel {
    font-size: 36px;
    line-height: 46px;
    color: #2A2A2A;
    font-weight: 700;

}

#elevatesBrand {
    padding: 0;
}

/* service spection  */
#services {
    background: #E9EDF3;
    padding-block: var(--section-pad);
}

.services-section-head {
    max-width: 884px;
    margin: auto;
    text-align: center;
}

.services-section-head p {
    margin-top: 10px;
    margin-bottom: 60px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
}

.services-container .services-content-coll1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
}

.services-container .service-coll2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.services-content2 {
    background: #FFFFFF;
    border-radius: 16px;
}

.services-container .services-content-coll1 {
    padding-right: 20px;
}

.services-container .services-content-text {
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;

}

.services-content-coll1 .services-content-text ul {
    justify-content: start;
    margin-top: 15px;
}

.services-content-text {
    text-align: center;
    margin-top: 25px;
}

.services-content-text p {
    margin: 10px 0
}

.services-content-text ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.services-content-text ul li {
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #2C2C2C;
    position: relative;
}

.services-content-text ul li::before {
    content: url("/wp-content/themes/photo-editing/assets/images/list-style-icon.png");
    position: absolute;
    left: 0;
    top: 3px;
}

.before-after-image-comparison-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    border-radius: 16px;
}


.comparison-slider-before-image {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
}

.comparison-slider-before-image img {
    max-width: unset;
}

.comparison-slider-after-image {
    display: block;
}

.comparison-slider-after-image img {
    width: 100%;
}

.image-comparison-slider-resizer {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 5;
    top: 0;
    left: 50%;
    height: 100%;
    width: 4px;
    background: #fff;
    cursor: pointer;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.image-comparison-slider-resizer:after {
    content: url('/wp-content/themes/photo-editing/assets/images/before-afterarrows-icon.png');
    background: #fff;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    position: absolute;
    margin: 0 0 0 -18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
}

.services-book-button {
    text-align: center;
    margin-top: 60px;
}

/* contact form section  */
#contact .container {
    border-radius: 16px;
    padding: 50px;
    background: linear-gradient(90deg, #0051D1 0%, #00D9FF 100%);

}

#contact .left-side {
    display: grid;
    grid-template-columns: 71% 25%;
    gap: 46px;
    margin-bottom: 50px;
}

.contact-section-titel {
    color: #fff;
}

.left-side p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    margin-top: 15px;
}


/* ── Reset & wrap ── */
.fomr-field-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.fomr-field-container .form-left-side,
.fomr-field-container .form-right-side {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
}



.ccf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

.ccf-wrap input[type=text],
.ccf-wrap input[type=tel],
.ccf-wrap input[type=email],
.ccf-wrap input[type=url],
.ccf-wrap textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgba(177, 181, 195, 0.34);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #2C2C2C;
    background: #FFFFFF;
    outline: none;
    transition: border .2s;
}

.ccf-full {
    margin-bottom: 12px
}

/* ── Upload zone ── */
.ccf-upload-zone {
    background: rgba(217, 217, 217, 0.15);
    border: 1px dashed rgba(114, 132, 156, 0.3);
    border-radius: 12px;
    padding: 28px 16px 20px;
    text-align: center;
    cursor: pointer;
    transition: border .2s, background .2s;
    margin-bottom: 12px;
}

.ccf-upload-zone:hover,
.ccf-upload-zone.drag-over {
    border-color: #4f8ef7;
    background: #f0f5ff
}

.ccf-upload-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.ccf-upload-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    color: #464646;
    margin-bottom: 4px;
}

.ccf-browse {
    color: #0072DD;
    font-weight: 700;
    cursor: pointer;
}

.ccf-upload-hint {
    font-size: 12px;
    color: #2C2C2C;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
}


/* ── Video section ── */

.ccf-video-section {
    background: #E9EDF3;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    margin-top: 18px;
}

.ccf-video-header {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 25px;
    color: #1a202c;
    font-weight: 800;
}

.ccf-video-sub {
    font-size: 14px;
    color: #2C2C2C;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 18px;
}

.ccf-cloud-icons {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #2C2C2C;
    line-height: 18px;
    font-weight: 500;
}

.ccf-cloud-icons img {
    height: 20px;
    object-fit: contain
}

.ccf-link-field {
    position: relative;
}

#ccf_video_link {
    padding-left: 36px;

}

.ccf-link-field img {
    position: absolute;
    top: 13px;
    left: 12px;
}

.ccf-submit {
    width: 100%;
    padding: 15px;
    background: #263238;
    border: 1px solid #263238;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: background .2s, transform .1s;
}

.ccf-submit:hover {
    background: #fff;
    color: #263238;

}

.ccf-response {
    font-size: 18px;
    margin-top: 15px;
    color: green;
    font-weight: 600;
}

.ccf-response.error {
    color: rgb(214, 10, 10);
}

/* ── Preview grid ── */
.ccf-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-bottom: 8px;
}

.ccf-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1.5px solid #e0e4ea;
    background: #f7f8fa;
}

.ccf-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ccf-thumb-remove {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    transition: background .2s;
}

.ccf-thumb-remove:hover {
    background: rgba(220, 38, 38, .85)
}

.ccf-file-error {
    color: #e53e3e;
    font-size: 13px;
    min-height: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.selected-item .selected-item-button {
    background: rgba(6, 28, 61, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #2C2C2C;
}

.selected-item .selected-item-button strong {
    color: #0072DD;
    font-weight: 600;
}

.select-price-container .selected-item {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.total-price-container {
    background: rgba(177, 181, 195, 0.12);
    margin-top: 15px;
    padding: 16px 24px;
    border-radius: 16px;
}

.total-price-contain-price {
    font-size: 32px;
    font-weight: 700;
    color: #2C2C2C;
    line-height: 40px;
}


/* Why Choose section  */
#whyChoose .whyChoose-section-head {
    max-width: 1060px;
    margin: auto;
    text-align: center;
}

#whyChoose .whyChoose-section-head p {
    margin-top: 10px;
    margin-bottom: 70px;
}

#whyChoose .counter-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;

}


.counter-titel {
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #2A2A2A;
}

.counter-description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #52525B;
    margin-top: 5px;
}

.whyChoose-card-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 90px;
}

.whyChoose-card-head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.whyChoose-card-titel {
    font-size: 16px;
    line-height: 26px;
    font-weight: 800;
    color: #2C2C2C;
    transition: color 0.3s ease-in-out;
}

.whyChoose-card-item p {
    color: #686767;
    margin-top: 16px;
    transition: color 0.3s ease-in-out;
}

.whyChoose-card-item {
    border: 1px solid rgba(6, 28, 61, 0.08);
    border-radius: 16px;
    padding: 16px 25px;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

.whyChoose-card-item:hover {
    background: #0072DD;
    border: 1px solid #00B7F4;
}

.whyChoose-card-item:hover .whyChoose-card-titel {
    color: #fff;

}

.whyChoose-card-item:hover p {
    color: #fff;

}

.whyChoose-card-item:hover svg path {
    fill: #fff;
}

.whyChoose-card-item:hover svg rect {
    fill: #fff !important;
}


/* offer-section */

#whyChoose {
    padding-bottom: 30px;
}

.offer-section-container {
    display: grid;
    grid-template-columns: 40% 56%;
    gap: 50px;
    background: linear-gradient(90deg, #0051D1 0%, #00D9FF 100%);
    padding: 30px;
    border-radius: 30px;
    margin-top: 130px;
    padding-left: 0;
    padding-bottom: 0;
}

.offer-section-right h2 {
    color: #fff;
    margin-bottom: 16px;
}

.offer-section-right p {
    color: #fff;
}

.last-text {
    margin-top: 13px;

}

.white-button-container {
    margin-top: 60px;

}

.white-button {
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 700;
    background-color: #fff;
    color: #2A2A2A;
    padding: 24px 35px;
    text-align: center;
    border: 1.5px solid #00B7F4;
    border-radius: 30px;
    transition: 300ms ease-in-out;
}


.white-button:hover {
    background: #000000;
    border: 1.5px solid #000000;
    color: #fff;
}

/* testimonials section  */
#testimonials {
    padding-top: 30px;
    padding-bottom: 25px;
}

.testimonials-head-container {
    display: grid;
    grid-template-columns: 60% 36%;
    gap: 50px;
    align-items: center;
}

#testimonials .testimonial-nav {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 30px;
}

#testimonials .testimonial-nav button {
    background: rgba(0, 114, 221, 0.06);
    border-radius: 50%;
    padding: 18px;
    border: 1px solid rgba(0, 114, 221, 0.06);
    transition: all 0.3s ease-in-out;

}

#testimonials .testimonial-nav button:hover {
    border: 1px solid #0072DD;
}

#testimonials .testimonial-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 65px;
}

#testimonials .testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

#testimonials .testimonial-card {
    width: 33.333%;
    flex-shrink: 0;
    padding: 12px;
}

#testimonials .testimonial-card-inner {
    box-shadow: -6px 7px 16px 0px #0C44CC0A;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    padding: 24px;
    height: 370px;
    position: relative;
}

#testimonials .stars {
    margin-bottom: 10px;
}

#testimonials .date {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #2C2C2C;
    margin-bottom: 20px;
}

#testimonials .testimonial-text {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #2C2C2C;
    margin-bottom: 20px;
}

#testimonials .client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-info-container {
    position: absolute;
    bottom: 30px;
}


#testimonials .client-info img {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
}

#testimonials .client-info h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #00A6FF;
    margin-bottom: 4px;
}

#testimonials .client-info span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #2C2C2C;
}


/* Mannequin Video section  */
.mannequin-video-section-head {
    max-width: 1096px;
    margin: auto;
    text-align: center;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    box-shadow: 0px 18px 30px 0px #8377C61A;
    padding: 32px;
    border-radius: 30px;
}

#mannequinVideo .video-item-left iframe {
    border-radius: 17px;
}

.video-text {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.video-text::before {
    content: url("/wp-content/themes/photo-editing/assets/images/video-text-before-icon.png");
    position: absolute;
    left: 0;
    top: 3px;
}

.black-button {
    background: #000000;
    border: 1px solid #000000;
    color: #fff;
    padding: 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}


.black-button:hover {
    transform: translateY(-3px);
}


/* Footer section  */
.footer-col-left .footer-logo {
    margin-bottom: 40px;
}

footer.site-footer {
    margin-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 25% 65%;
    gap: 130px;
    margin-bottom: 15px;
}

.address-content {
    display: flex;
    gap: 10px;
    align-items: start;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer-col-right ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-col-right ul li {
    padding: 25px 15px;
    border: 1px solid rgba(6, 28, 61, 0.08);
    border-radius: 10px;
    color: #2C2C2C;
    padding-left: 80px;
    position: relative;
    font-size: 16px;
    font-weight: 800;
    line-height: 25px;
}

.footer-col-right ul li::before {
    content: url("/wp-content/themes/photo-editing/assets/images/footerli-Icons.png");
    position: absolute;
    left: 20px;
    top: 13px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 30px;
    border-top: 2px solid #EFF0F6;
}

.footer-credit {
    display: flex;
    gap: 20px;
}

/* faq section  */
#faqsection {
    position: relative;
    padding-bottom: 130px;
}

#faqsection .faq-section-container {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 20px;
}

.faqsection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 72px;
}

#faqsection .faq-section {
    background-color: #FFFFFF;
    box-shadow: 0px 12px 16px rgba(6, 28, 61, 0.08);
    padding: 30px;
    border-radius: 20px;
}

#faqsection .faq-item {
    margin-bottom: 0;
    overflow: hidden;
}

#faqsection .faq-item:last-child {
    border-bottom: none;
}

#faqsection .faq-question {
    padding: 18px 20px;
    border-radius: 12px 12px 0 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    cursor: pointer;
    position: relative;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#faqsection .faq-question .icon {
    font-size: 24px;
    font-weight: 400;
    color: #007bff;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.3s;
}


#faqsection .faq-answer {
    display: none;
    overflow: hidden;

}

#faqsection .faq-answer-inner {
    padding: 18px 20px;
    background: #ebf9fe;
    color: #2c2c2ccc;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0 0 12px 12px;
}

#faqsection .faq-item.active .faq-question {
    background: rgb(0, 183, 244);
    color: #fff;
}

#faqsection .faq-item.active .faq-question .icon {
    color: #fff;
}

#faqsection::before {
    content: url("https://offshoreclipping.com/wp-content/uploads/2023/06/faq-bg-shape-1.svg");
    position: absolute;
    bottom: -100px;
    right: 0;

}

.item-left-text {
    max-width: 892px;

}



/* new footer  */
.footer-top-section {
    background-image: url('/wp-content/themes/photo-editing/assets/images/client-review-google-bg-shape.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: initial;
}

#footer-container h2 {
    text-align: center;
    margin-top: 100px;
}

.featured-on-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.footer-middel-part-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    margin-top: 100px;
}

.footer-middel-part-container .item-left img {
    width: 100%;
    max-height: 442px;
    object-fit: cover;
}

.footer-middel-part-container .item-right {
    background: #5b2cc1;
    padding: 30px 50px;
}

.item-right-flex {
    display: grid;
    grid-template-columns: 70% 25%;
    gap: 30px;
}

.white-button-footer-container {
    margin-top: 30px;
}

.white-button-footer {
    color: #2a2a2a;
    border-width: 2px;
    border-color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    background-color: #FFFFFF;
    padding: 12px 20px;
}

.footer-titel {
    font-size: 24px;
    line-height: 33px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.item-right-flex p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 25px;
}

.item-right-flex .lastp {
    margin-top: 15px;
}

.footer-last-part-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 110px;
    margin-top: 90px;
    margin-bottom: 35px;
}

.footer-last-part-container .item1 p {
    color: #2c2c2c;
    margin-top: 15px;
    margin-bottom: 16px;
}

.item2-titel {
    font-size: 18px;
    line-height: 31px;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
}

.address-list-container {
    margin-top: 15px;

}

.address-list,
.number-list,
.email-list {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: #2c2c2c;
    position: relative;
    padding-left: 30px;
}

.address-list::before {
    content: url('/wp-content/themes/photo-editing/assets/images/maps-and-flags.png');
    position: absolute;
    left: 0;
    top: 2px;
}

.number-list,
.email-list {
    margin-top: 10px;
}

.number-list::before {
    content: url('/wp-content/themes/photo-editing/assets/images/phone-receiver-silhouette.png');
    position: absolute;
    left: 0;
    top: 2px;
}

.email-list::before {
    content: url('/wp-content/themes/photo-editing/assets/images/mail-icons.png');
    position: absolute;
    left: 0;
    top: 2px;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
}

.footer-menu ul li {
    line-height: 18px;
    padding-bottom: 13px;
}

.footer-menu ul li a {
    color: #2C2C2C;
    font-size: 16px;
}

.faq-section-container {}




/* costingCustomers  */
#costingCustomers {
    padding-bottom: 35px;
}

#costingCustomers .costing-customers-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.costing-customers-top-banner {
    max-width: 1102px;
}

#costingCustomers .top-titel {
    font-size: 32px;
    line-height: 45px;
    font-weight: 700;
    color: #2A2A2A;
    margin-bottom: 16px;
}


.costing-card-text {
    box-shadow: 0px 18px 30px 0px #8377C61A;

    padding: 18px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #2C2C2C;
    margin-top: 10px;

}

.costing-card-text strong {
    font-weight: 700;
}

.content-center {
    margin-top: 50px;
}

#costingCustomers .content-right-item1 {
    display: flex;
    gap: 14px;
    align-items: start;
    justify-content: start;
    box-shadow: -6px 21px 44px -17px #185CFF14;
    border: 1px solid rgba(177, 181, 195, 0.34);
    background: #fff;
    padding: 30px 20px 30px 40px;
    border-radius: 20px;
}

#costingCustomers .content-right-item1 h3 {
    margin-bottom: 10px;
}

#costingCustomers .content-right-item1>div:first-child {
    flex-shrink: 0;
}

#costingCustomers .content-right-item1 img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

#costingCustomers .content-right-item2 {
    box-shadow: none;
    border: none;
    background: #fff;
    margin-top: 20px;
}


#expertsTeam {
    margin-top: 30px;
    margin-bottom: 30px;
}


/* offer Banner section  */
#offerBanner {
    padding-bottom: 0px;
}

#offerBanner .offer-banner-container {
    box-shadow: 0px 7px 29px 0px #0072DD1A;
    border-radius: 16px;
    display: flex;
    gap: 40px;
}

#offerBanner .badge {
    background: #0050D2;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    align-items: center;
    padding: 16px;
    position: relative;
    border-right: 5px dashed #FFFFFF;
}

#offerBanner .content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex: 1;
}

#offerBanner .content-container .content {
    max-width: 648px;
    width: 100%;
}

#offerBanner .button-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
}

#offerBanner .banner-text {
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    padding-top: 10px;
}

#offerBanner .content-container p {
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    color: #2C2C2C;
    padding-bottom: 10px;
    margin-top: 3px;
}