:root {
    --primary-color: #4A90E2; /* Blue */
    --success-color: #7ED321; /* Green */
    --warning-color: #F5A623; /* Orange */
    --danger-color: #D0021B; /* Red */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --background-light: #F8F9FA; /* Very light grey, almost white */
    --background-clay: #F0F2F5; /* Slightly darker for clay effect */

    /* Claymorphism shadows */
    --clay-light-shadow: rgba(255, 255, 255, 0.7);
    --clay-dark-shadow: rgba(174, 174, 192, 0.2);
    --clay-inset-shadow: rgba(0, 0, 0, 0.05);
    --clay-box-shadow: 8px 8px 16px var(--clay-dark-shadow), -8px -8px 16px var(--clay-light-shadow), inset 2px 2px 4px var(--clay-inset-shadow);
    --clay-box-shadow-hover: 6px 6px 12px var(--clay-dark-shadow), -6px -6px 12px var(--clay-light-shadow), inset 1px 1px 2px var(--clay-inset-shadow);
    --clay-box-shadow-active: inset 6px 6px 12px var(--clay-dark-shadow), inset -6px -6px 12px var(--clay-light-shadow);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
}

p {
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.text-primary {
    color: var(--primary-color) !important;
}
.text-success {
    color: var(--success-color) !important;
}
.text-warning {
    color: var(--warning-color) !important;
}
.text-danger {
    color: var(--danger-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-light-clay {
    background-color: var(--background-clay) !important;
}

/* Claymorphism styles */
.clay-card {
    background-color: var(--background-clay);
    border-radius: 25px;
    box-shadow: var(--clay-box-shadow);
    border: none;
    transition: all 0.2s ease-in-out;
}

.clay-card:hover {
    box-shadow: var(--clay-box-shadow-hover);
}

.clay-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease-in-out;
}

.clay-btn:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.clay-btn:active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.7);
    transform: translateY(0);
}

.clay-btn-outline {
    border-radius: 20px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: var(--clay-box-shadow);
    transition: all 0.2s ease-in-out;
}

.clay-btn-outline:hover {
    box-shadow: var(--clay-box-shadow-hover);
    transform: translateY(-2px);
}

.clay-btn-outline:active {
    box-shadow: var(--clay-box-shadow-active);
    transform: translateY(0);
}

.clay-input {
    background-color: var(--background-clay);
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05), inset -2px -2px 5px rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease-in-out;
}

.clay-input:focus {
    background-color: var(--background-light);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.03), inset -1px -1px 3px rgba(255, 255, 255, 0.5), 0 0 0 0.25rem rgba(var(--bs-primary-rgb),.25);
    border-color: var(--primary-color);
}

.clay-text {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1), -2px -2px 4px rgba(255,255,255,0.5);
    color: var(--text-dark);
}

/* Navbar styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
}

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

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.15s ease-in-out, left 0.15s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('uploads/pics/board-game-prototyping-hero_2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
}

.trust-badges .badge-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px 25px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease-in-out;
    flex-grow: 1;
    max-width: 230px;
}

.trust-badges .badge-item:hover {
    transform: translateY(-5px);
}

/* About Section (Timeline) */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-color);
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border: 4px solid var(--background-light);
    border-radius: 50%;
    z-index: 1;
    top: 20px;
}

.timeline-item.left::before {
    margin-left: -12px;
}

.timeline-item.right::before {
    margin-left: -12px;
}

.timeline-content {
    position: relative;
    border-radius: 15px;
    min-height: 150px; /* Ensure visual size */
}

.timeline-item.left .timeline-content {
    margin-right: 55%;
}

.timeline-item.right .timeline-content {
    margin-left: 55%;
}

.timeline-item.left .timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent var(--background-clay);
}

.timeline-item.right .timeline-content::before {
    content: '';
    position: absolute;
    top: 25px;
    left: -15px;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent var(--background-clay) transparent transparent;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-item.left .timeline-content, .timeline-item.right .timeline-content {
        margin-left: 60px;
        margin-right: 0;
    }
    .timeline-item::before {
        left: 20px;
        margin-left: -12px;
    }
    .timeline-item.left .timeline-content::before, .timeline-item.right .timeline-content::before {
        left: -15px;
        right: auto;
        border-width: 15px 15px 15px 0;
        border-color: transparent var(--background-clay) transparent transparent;
    }
}

/* Services Section */
.service-step {
    position: relative;
}

.service-step .clay-card {
    border-radius: 25px;
    padding: 30px;
    min-height: 280px; /* Ensure consistent height */
}



@media (max-width: 767px) {
    .service-step:not(:last-child)::after {
        display: none;
    }
}

/* Process Section */
.process-flow .clay-card {
    min-height: 250px; /* Ensure consistent height */
}

/* Cases Section (Portfolio) */
.project-card {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.project-card img {
    border-radius: 25px 25px 0 0;
    transition: transform 0.2s ease-in-out;
}

.project-card:hover img {
    transform: scale(1.03);
}

/* Pricing Section */
.pricing-card {
    border-radius: 25px;
    min-height: 450px; /* Ensure consistent height */
}

.pricing-card .list-group-item {
    border: none;
    padding-left: 0;
    padding-right: 0;
}

.pricing-card .list-group-item i {
    width: 20px;
}

.pricing-card.border-primary {
    border: 3px solid var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(var(--bs-primary-rgb), 0.3), var(--clay-box-shadow);
}

/* Team Section */
.team-member-card {
    border-radius: 25px;
    min-height: 380px; /* Ensure consistent height */
}

.team-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 15px;
    opacity: 0.7;
    transition: opacity 0.15s ease-in-out;
}

.carousel-control-prev-icon:hover, .carousel-control-next-icon:hover {
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: opacity 0.15s ease-in-out;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Stats Section */
.stats-section .clay-card {
    min-height: 200px; /* Ensure consistent height */
}

/* Contact Section */
#contact .clay-card {
    border-radius: 25px;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    z-index: 1020;
    padding: 15px 10px;
    text-align: center;
    background-color: var(--primary-color) !important;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-cta-bar .btn {
    background-color: var(--warning-color);
    color: white;
}

.sticky-cta-bar .btn:hover {
    background-color: darken(var(--warning-color), 10%);
}

/* Footer */
.footer {
    background-color: #212529 !important;
    color: var(--text-light);
}

.footer a {
    color: var(--text-light);
}

.footer a:hover {
    color: var(--primary-color);
}

.footer .logo-img-footer {
    height: 35px;
    width: auto;
}

.footer .hover-accent:hover {
    color: var(--primary-color) !important;
}

/* Cookie Banner */
.cookie-banner {
    z-index: 1040;
    background-color: #343a40 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner p {
    color: white;
    margin-bottom: 0;
}

.cookie-banner a {
    color: var(--primary-color);
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner .cookie-buttons {
        margin-top: 10px;
    }
    .cookie-banner p {
        margin-bottom: 10px;
    }
}
/* Parent container for content with specific padding */
.secureTermsHub {
    padding-top: 40px; /* Top padding for the section */
    padding-bottom: 40px; /* Bottom padding for the section */
    padding-left: 15px; /* Left padding for the section */
    padding-right: 15px; /* Right padding for the section */
    max-width: 960px; /* Optional: Constrain content width for readability */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
}

/* Heading 1 styles */
.secureTermsHub h1 {
    font-size: 2.2rem; /* Moderate font size for main headings */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2.5rem; /* Space above the heading */
    margin-bottom: 1.5rem; /* Space below the heading */
    color: var(--text-dark); /* Inherit or explicitly set text color */
}

/* Heading 2 styles */
.secureTermsHub h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

/* Heading 3 styles */
.secureTermsHub h3 {
    font-size: 1.5rem; /* Further reduced size */
    line-height: 1.4;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Heading 4 styles */
.secureTermsHub h4 {
    font-size: 1.3rem; /* Even smaller */
    line-height: 1.5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

/* Heading 5 styles */
.secureTermsHub h5 {
    font-size: 1.1rem; /* Smallest heading size */
    line-height: 1.6;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

/* Paragraph styles */
.secureTermsHub p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Good readability for body text */
    margin-top: 0; /* No top margin by default */
    margin-bottom: 1rem; /* Space below each paragraph */
    color: var(--text-medium); /* Slightly lighter text for body */
}

/* Unordered list styles */
.secureTermsHub ul {
    list-style: disc; /* Default disc bullet points */
    margin-top: 1rem; /* Space above the list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 25px; /* Indent list items */
    color: var(--text-medium);
}

/* List item styles */
.secureTermsHub li {
    font-size: 1rem; /* Standard font size for list items */
    line-height: 1.7; /* Consistent line height with paragraphs */
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Remove bottom margin for the last paragraph/list item if followed by another block */
.secureTermsHub p:last-child,
.secureTermsHub ul:last-child,
.secureTermsHub ol:last-child {
    margin-bottom: 0;
}


.footer{
    .text-muted,
    h5{
        color: #e1e1e1 !important;
    }
}

#hero{
    p,
    .clay-text{
        color: #fff !important;
    }
}

.sticky-cta-bar p{
    color: #fff !important;
}



@media (max-width: 767px){
    .carousel-control-next, .carousel-control-prev{
        display: none !important;
    }

    #orderForm{
        padding: 15px !important;
    }

    .timeline-item.right::before,
    .timeline-item.left::before{
        left: 20px;
    }
}
@media (min-width: 768px){
    .timeline-item.right::before{
        right: 50%;
            margin-right: -12px;

    }
    .timeline-item.left::before{
        left: 50%;
    }
}

@media (max-width: 575px){
    .navbar-brand .logo-img {
        width: 25px;
        height: 25px;
    }

    .sticky-cta-bar{
        display: none !important;
    }

    .timeline-item.right::before,
    .timeline::before,
    .timeline-item.left::before{
        display: none !important;
    }

    .timeline-item.right .timeline-content,
    .timeline-item.left .timeline-content{
        margin: 0 !important;
    }
}

.card-body{
    padding: 14px;
}
