/*
Copyright © Wild Rose Devs. & Alberta Lynx 2025. All rights reserved.

This software and its source code are proprietary and confidential.
Unauthorized copying, distribution, modification, or use in whole or in part
is strictly prohibited and may result in civil and/or criminal penalties.

No license or rights are granted by implication or otherwise under any
intellectual property rights.

For licensing inquiries, contact: https://wildrosedevs.ca
*/

:root {
    --main-color: #eb0b4d;
    --main-color-alt: #000000;
    --section-color: #ffffff;
    --btn-color: #eb0b4d;
    --btn-hover-color: #bd1e48;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.main-title {
    position: relative;
    margin: 0 auto 80px;
    border: 2px solid rgb(0, 0, 0);
    padding: 10px 20px;
    font-size: 30px;
    width: fit-content;
    z-index: 1;
    transition: 0.3s;
    text-transform: uppercase;
}

.main-title::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    border-radius: 50%;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--main-color);
    border-radius: 50%;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.spikes {
    position: relative;
}

.spikes::after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 30px;

    z-index: 1;
    background-image: linear-gradient(135deg, white 25%, transparent 25%),
        linear-gradient(222deg, white 25%, transparent 25%);
    background-size: 30px 30px;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    height: 80px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.main-nav a {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--main-color);
}

.quote-btn {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid var(--main-color);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 40px;
    transition: background-color 0.3s ease;
}

.quote-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.logo-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.logo-block img {
    height: 50px;
    display: block;
}

.logo-fallback {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 1.1;
    padding: 0;
    margin: 0;
}

.logo-fallback .logo-top {
    font-family: "Times New Roman", serif;
    font-size: 36px;
    font-weight: bold;
    color: #eb0b4d;
    margin: 0;
    padding: 0;
}

.logo-fallback .logo-bottom {
    font-family: "Cairo", sans-serif;
    font-size: 18px;
    color: #000;
    margin: 0;
    padding: 0;
    padding-left: 2px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../img/code-1076533_1920.jpg") no-repeat center center/cover;
    padding: 100px 0;
    height: 90vh;
}

.hero-content {
    width: 100%;
    position: relative;
    max-width: 1280px;
    margin-top: 150px;
    z-index: 2;
    padding-left: 60px;
    padding-right: 60px;
    text-align: left;
}

.hero h1 {
    font-family: "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 20px;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.hero p {
    font-size: 1.125rem;
    font-family: "Cairo", sans-serif;
    color: #f7f7f7;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 30px;
}

.hero .buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    /* Align buttons to the left */
    align-items: center;
    margin-top: 20px;
}

.hero .btn {
    padding: 16px 32px;
    /* Increase padding for bigger button */
    font-size: 1.3rem;
    /* Increase font size */
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.hero .btn.primary {
    background-color: #eb0b4d;
    color: white;
}

.hero .btn.primary:hover {
    background-color: #bd1e48;
}

.hero .btn.secondary {
    background-color: #fde9ee;
    color: #111;
}

.hero .btn.secondary:hover {
    background-color: #eb0b4d;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #000;
    margin-left: auto;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero {
        height: 100vh;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .quote-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: 16px;
        padding-left: 16px;
    }

    .hero-border {
        padding: 30px 20px;
    }

    .hero .buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero .btn {
        width: 100%;
        text-align: center;
    }


    .hero h1 {
        font-size: 2rem;
        /* Adjust font size for smaller screens */
        white-space: normal;
        /* Allow text to wrap */
        text-align: center;
        /* Center the title for better readability */
        margin-bottom: 10px;
        /* Add margin for better spacing */
    }

    .hero p {
        font-size: 1rem;
    }

    .services-row {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 100%;
        max-width: 320px;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   Project BlueRose Section
────────────────────────────────────────────────────────────────────────── */
.project-bluerose {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/ucp-banner.png') no-repeat center center / cover;
    padding: 80px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #f7f7f7;
    overflow: hidden;
}

.project-bluerose::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.project-bluerose-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* ─── Text Block ───────────────────────────────────────────────────────── */
.br-title {
    font-size: 64px;
    line-height: 1;
    margin: 0;
    max-width: 100%;
    font-weight: 800;
    color: #0c81f7;
}

.br-title span {
    color: #47A8F7;
}

.br-subtitle {
    margin: 30px 0 0;
    max-width: 1000px;
    width: 100%;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
}

/* ──────────────────────────────────────────────────────────────────────────
   Animated Filled Arrow
────────────────────────────────────────────────────────────────────────── */
.animated-arrow {
    display: inline-block;
    position: relative;
    margin-top: 9.5rem;
    padding: 14px 80px 14px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    clip-path: polygon(0% 0%,
            85% 0%,
            100% 50%,
            85% 100%,
            0% 100%);
    animation: pulseBlue 1.5s ease-in-out infinite alternate;
}

@keyframes pulseBlue {
    0% {
        background-color: #47A8F7;
    }

    100% {
        background-color: #3C97F9;
    }
}

@media (max-width: 768px) {
    .project-bluerose-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .project-bluerose-content>div:first-child {
        flex: 1 1 100%;
        max-width: none;
    }

    .br-title {
        font-size: 3rem;
        /* was 64px */
        line-height: 1.1;
    }

    .br-subtitle {
        font-size: 1.125rem;
        margin: 20px 0;
        max-width: 90%;
    }

    .animated-arrow {
        margin-top: 24px;
        padding: 12px 60px 12px 20px;
    }
}

@media (max-width: 480px) {
    .br-title {
        font-size: 2.4rem;
    }

    .br-subtitle {
        font-size: 1rem;
    }

    .animated-arrow {
        padding: 10px 48px 10px 16px;
    }
}


.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.contact-background canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 991px) {
    .landing .text {
        text-align: center;
    }
}

.landing .text h1 {
    font-size: 40px;
    margin: 0;
    letter-spacing: -2px;
}

@media (max-width: 767px) {
    .landing .text h1 {
        font-size: 28px;
    }
}

.landing .text p {
    font-size: 20px;
    line-height: 1.7;
    margin: 5px 0 0;
    color: #666;
    max-width: 500px;
}

@media (max-width: 991px) {
    .landing .text p {
        margin: 10px auto;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .landing .text p {
        font-size: 18px;
    }
}

.landing .image img {
    position: relative;
    width: 400px;
    margin-left: 20px;
    animation: up-and-down 3s linear infinite;
}

@media (max-width: 991px) {
    .landing .image img {
        display: none;
    }
}

#scroll-up {
    display: none;
    background-color: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

#scroll-up:hover {
    color: #fff;
    background-color: var(--main-color);
    cursor: pointer;
}

#scroll-up i {
    font-size: 20px;
    font-weight: 900;
    animation: bouncing 1.5s infinite;
}

.main-title {
    text-align: left;
    font-size: 50px;
    color: var(--main-color);
    font-weight: bold;
    margin-left: 20px;
    border: none;
}

.main-title::before,
.main-title::after {
    display: none;
}

.why-work-section {
    padding: 100px 0;
    background-color: var(--section-color);
    text-align: center;
}

.why-work-section .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
}

.why-work-section .box {
    background: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.why-work-section .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.why-work-section .box h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.why-work-section .box p {
    font-size: 16px;
    color: #333;
}

.why-work-section .cta {
    margin-top: 40px;
    text-align: center;
}

.why-work-section .cta-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.why-work-section .cta-button:hover {
    background-color: var(--btn-hover-color);
}

@media (max-width: 900px) {
    .why-work-section .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-work-section .container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.splitter3 {
    width: 100%;
    height: 20px;
    background: white;
    margin: 10px 0;
    display: block;
}

.our-difference {
    background-color: #f5f5f5;
    padding: 80px 0;
    text-align: center;
}

.our-difference .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
}

.our-difference .difference-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
}

.our-difference .impact-box {
    background-color: #fce4e4;
    border: 2px solid var(--main-color);
}

.our-difference p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 768px) {
    .our-difference .container {
        padding: 0 20px;
    }

    .our-difference .difference-box {
        padding: 20px;
    }
}

.our-work-section {
    padding: 4rem 2rem;
    background-color: #f7f7f7;
}

.section-title1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: left;
}

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

.project-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-text {
    padding: 1rem;
}

.project-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.project-text p {
    font-size: 0.9rem;
    color: #777;
}

.see-more {
    text-align: center;
    margin-top: 2rem;
    /* optional spacing above */
}

.see-more p {
    font-size: 1.2rem;
    color: var(--main-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.see-more-button {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.see-more-button:hover {
    background-color: #bd1e48;
}

.hover-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: black;
}

.hover-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hover-card .hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    text-align: center;
}

.hover-card:hover .hover-content {
    transform: translateY(0%);
}

.hover-card .hover-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.hover-card .hover-content p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.splitter2 {
    width: 100%;
    height: 20px;
    background: white;
    margin: 10px 0;
    display: block;
}

.our-team {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}

.main-titletestimonials {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-left: 20px;
    border: none;
}

.main-titletestimonials::before,
.main-titletestimonials::after {
    display: none;
}

.our-team .container {
    display: grid;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 50%;
    margin: auto;
    align-items: stretch;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.our-team .box {
    position: relative;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 2px 4px rgb(0 0 0 / 7%);
    border-radius: 6px;
    text-align: left;
}

.our-team .box img {
    width: 100px;
    border-radius: 50%;
    border: 10px solid var(--section-color);
    display: block;
    margin-bottom: 20px;
}

.our-team .box h3 {
    margin: 0 0 10px;
}

.our-team .box .titel {
    font-size: 16px;
    color: #777;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.our-team .box p {
    color: #4f4f4f;
    line-height: 1.5;
    margin: 0;
}

.splitter {
    width: 100%;
    height: 20px;
    background: white;
    margin: 10px 0;
    display: block;
}

.services {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}

.services .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.services .box {
    position: relative;
    background-color: #fff;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
        0px 2px 4px 0px rgb(0 0 0 / 12%);
    counter-increment: services;
    transition: 0.3s;
}

.services .box::before {
    content: "";
    position: absolute;
    background-color: var(--main-color);
    width: 0;
    height: 3px;
    top: -3px;
    left: 50%;
    transition: 0.3s;
    transform: translateX(-50%);
}

.services .box:hover::before {
    width: 100%;
}

.services .box:hover {
    transform: translateY(-10%);
}

.services .box i {
    margin: 30px auto 20px;
    display: block;
    text-align: center;
    color: #d5d5d5;
    font-size: 60px;
}

.services .box h3 {
    text-align: center;
    color: var(--main-color);
    font-size: 25px;
    margin: 20px 0 40px;
}

.services .box .info {
    padding: 15px;
    background-color: #f9f9f9;
    text-align: right;
    position: relative;
}

.services .box .info::before {
    content: "0" counter(services);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    padding-right: 15px;
    top: 0;
    left: 0;
    height: 100%;
    width: 80px;
    background-color: var(--main-color);
}

.services .box .info::after {
    content: "";
    position: absolute;
    top: 0;
    left: 80px;
    height: 100%;
    width: 50px;
    background-color: #d5d5d5;
    transform: skewX(-30deg);
}

.services .box .info a {
    color: var(--main-color);
}

.our-skills {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.our-skills .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.our-skills .box {
    flex: 1;
}

.our-skills .box .prog-holder h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-skills .box .prog-holder h3 span {
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 3px 5px;
    color: var(--main-color);
}

.our-skills .box .prog-holder .prog {
    position: relative;
    background-color: #eee;
    height: 30px;
    width: 100%;
}

.our-skills .box .prog-holder .prog span {
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: width 0.5s linear;
}

.events {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}

.events .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.events .container img {
    max-width: 450px;
}

@media (max-width: 991px) {
    .events .container img {
        display: none;
    }
}

.events .container .info {
    flex: 1;
    text-align: center;
}

.events .container .info .time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
}

.events .container .info .time .unit {
    border: 1px solid #c3c3c3;
    border-radius: 6px;
    width: 80px;
    text-align: center;
    transition: 0.3s;
}

.events .container .info .time .unit:hover {
    border-color: var(--main-color);
}

.events .container .info .time .unit span {
    display: block;
}

.events .container .info .time .unit span:first-child {
    font-size: 35px;
    padding: 15px;
    color: var(--main-color);
    font-weight: bold;
}

.events .container .info .time .unit span:last-child {
    padding: 8px 10px;
    font-size: 13px;
    border-top: 1px solid #d4d4d4;
}

.events .container .info h2 {
    margin-top: 30px;
    font-size: 30px;
}

.events .container .info p {
    color: #777;
    line-height: 1.5;
    font-size: 18px;
}

.events .container .subscribe {
    width: 100%;
    margin-top: 50px;
}

.events .container .subscribe form {
    display: flex;
    background-color: #f6f6f6;
    width: 600px;
    margin: 20px auto;
    padding: 30px 40px;
    border-radius: 50px;
    gap: 20px;
}

@media (max-width: 991px) {
    .events .container .subscribe form {
        flex-direction: column;

        max-width: 100%;
        padding: 20px;
    }
}

.events .container .subscribe form input[type="email"] {
    padding: 20px;
    border-radius: 50px;
    border: none;
    flex: 1;
    caret-color: var(--main-color);
}

.events .container .subscribe form input[type="submit"] {
    padding: 20px;
    border-radius: 50px;
    border: none;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.events .container .subscribe form input[type="submit"]:hover {
    background-color: #fff;
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

.pricing {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    background-color: var(--section-color);
}

.pricing .dots {
    position: absolute;
    background-image: url("../img/dots.png");
    width: 205px;
    height: 180px;
}

.pricing .dots.dots-up {
    right: 0;
    top: 200px;
}

.pricing .dots.dots-down {
    left: 0;
    bottom: 200px;
}

.pricing .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.pricing .container .box {
    position: relative;
    background-color: white;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%);
    text-align: center;
    transition: 0.3s;
}

.pricing .container .box:hover {
    transform: translateY(-3%);
}

@media (min-width: 1200px) {
    .pricing .container .box.popular {
        top: -20px;
    }
}

.pricing .container .box.popular .label {
    position: absolute;
    background-color: var(--main-color);
    color: white;
    font-weight: bold;
    font-size: 19px;
    right: 20px;
    width: 40px;
    padding: 10px 10px 35px 10px;
    writing-mode: vertical-rl;
}

.pricing .container .box.popular .label::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 20px;
    border-color: transparent transparent white transparent;
}

.pricing .container .box .titel {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: -1px;
    margin: 30px 0;
}

.pricing .container .box img {
    width: 80px;
    margin-bottom: 30px;
}

.pricing .container .box .price {
    margin-bottom: 30px;
}

.pricing .container .box .price span {
    display: block;
}

.pricing .container .box .price span:first-child {
    font-size: 60px;
    font-weight: bold;
    color: var(--main-color);
}

.pricing .container .box .price span:last-child {
    color: #777;
    margin-top: 0;
    font-size: 13px;
}

.pricing .container .box ul {
    text-align: left;
}

.pricing .container .box ul li {
    padding: 20px;
    border-top: 1px solid #eee;
}

.pricing .container .box ul li i {
    color: var(--main-color);
    margin-right: 10px;
}

.pricing .container .box a {
    width: fit-content;
    display: block;
    margin: 30px auto 40px;
    padding: 15px 20px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.pricing .container .box a:hover {
    background-color: var(--main-color);
    color: white;
}

.what-we-do {
    padding: 100px 20px;
    text-align: center;
    background-color: #f7f7f7;
}

.what-we-do .section-heading {
    font-size: 3rem;
    color: #eb0b4d;
    margin-bottom: 10px;
}

.what-we-do .subheading {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.service-box {
    width: 280px;
    min-height: 260px;
    background-color: white;
    border: 2px solid #000;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bottom-row {
    justify-content: space-evenly;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}

.service-box i.icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #000;
}

.service-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #000;
}

.service-box p {
    font-size: 0.95rem;
    color: #333;
}

.service-box .highlight {
    color: #eb0b4d;
    font-weight: bold;
}

.who-we-are {
    text-align: center;
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.who-we-are .section-heading {
    font-size: 3rem;
    color: #eb0b4d;
    margin-bottom: 20px;
}

.team-text {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    color: #111;
    line-height: 1.6;
}

.team-link {
    display: inline-block;
    margin-top: 10px;
    color: #eb0b4d;
    font-weight: bold;
    text-decoration: none;
}

.splitter4 {
    width: 100%;
    height: 20px;
    background: white;
    margin: 10px 0;
    display: block;
}

.contact-section {
    position: relative;
    width: 100%;
    padding: 50px 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.ContactHeader {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-left: 20px;
    border: none;
}

.ContactHeader::before,
.ContactHeader::after {
    display: none;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

select {
    width: 100%;
    padding: 10px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.contact-container {
    position: relative;
    z-index: 3;
    background: rgba(232, 232, 232, 0.95);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.form-column {
    flex: 1 1 500px;
    min-width: 280px;
}

.ad-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.contact-row {
    display: flex;
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.form-group label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font: inherit;
    width: 100%;
}

.form-group input[type="file"] {
    font: inherit;
    border: none;
    padding: 5px 0;
}

.contact-section button[type="submit"] {
    width: 120px;
    display: block;
    margin: 15px auto;
    padding: 15px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font: inherit;
    font-weight: bold;
}

.contact-section button[type="submit"]:hover {
    background-color: var(--main-color);
}

.splitter5 {
    width: 100%;
    height: 20px;
    background: rgb(255, 255, 255);
    margin: 1px 0;
    display: block;
}

.faqs {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.faqs .container .section {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faqs .container .section .faq {
    max-width: 700px;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c1c1c1;
    cursor: pointer;
}

.faqs .container .section .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqs .container .section .faq .question h3 {
    font-size: 25px;
    margin-right: 20px;
}

.faqs .container .section .faq .question i {
    color: var(--main-color);
    transition: transform 0.5s;
}

.faqs .container .section .faq.active .question i {
    transform: rotate(180deg);
}

.faqs .container .section .faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}

.faqs .container .section .faq .answer p {
    margin-top: 0;
    line-height: 1.6;
    font-size: 17px;
}

.faqs .container .section .faq.active .answer {
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.footer {
    position: relative;
    padding: 4rem 1.5rem 2rem;
    max-width: 100%;
    overflow-x: hidden;
}

.footer-bubble {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: #fde9ee;
    border-radius: 50%;
    z-index: 0;
    transform: translate(-30%, -30%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-about {
    flex: 1.5;
    min-width: 250px;
}

.wild-rose-highlight {
    color: var(--main-color);
}

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about p {
    margin-bottom: 1rem;
    line-height: 1.5;
    max-width: 300px;
}

.footer-inquiry p {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-inquiry .arrow {
    padding-left: 0.5rem;
}

.socials {
    margin-top: 1rem;
}

.socials a {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    color: black;
}

.footer-columns {
    flex: 2;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-columns .column {
    min-width: 150px;
}

.footer-columns h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-columns a,
.footer-columns p {
    display: block;
    margin-bottom: 0.5rem;
    color: black;
    text-decoration: none;
}

.footer-columns a:hover {
    color: #e60050;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 16px;
    color: #777;
}

.footer-inquiry a p {
    color: black;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-left,
    .footer-middle,
    .footer-links,
    .footer-services {
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }
}

@keyframes up-and-down {

    0%,
    100% {
        top: 0;
    }

    50% {
        top: -20px;
    }
}

@keyframes bouncing {

    0%,
    10%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40%,
    60% {
        transform: translateY(-5px);
    }
}

@keyframes left-move {
    50% {
        left: 0;
        width: 12px;
        height: 12px;
    }

    100% {
        left: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}

@keyframes right-move {
    50% {
        right: 0;
        width: 12px;
        height: 12px;
    }

    100% {
        right: 0;
        width: 50%;
        height: 100%;
        border-radius: 0;
    }
}

@keyframes move-arrow {
    100% {
        transform: translateX(10px);
    }
}

@keyframes flashing {

    0%,
    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        width: 200%;
        height: 200%;
    }
}

@keyframes fade {
    form {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}