﻿.header-slogan {
    /*position: relative;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-title {
    margin-bottom: 10px;
    color: #086AD8;
}

/*.slide {
    position: absolute;
    opacity: 0;
    padding-bottom: 20px;
    text-align: center;
    transition: opacity 0.7s ease-in-out;
}*/

.slide.active {
    opacity: 1;
}

.slide h2 {
    font-weight: 700;
    font-size: 38px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .header-slogan {
        height: 30vh;
    }

    .breadcrumb-title {
        margin-bottom: 95px;
    }

    .slide h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .header-slogan {
        height: 25vh;
        min-height: 200px;
    }

    .breadcrumb-title {
        margin-bottom: 95px;
    }

    .slide h2 {
        font-size: 1.3em;
    }
}

.testimonials {
    width: 70px;
    height: 70px;
}

.word-rotator {
    text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 10px 24px rgba(0,0,0,0.4);
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    width: max-content;
    min-width: 280px;
    height: 1.4em;
    overflow: hidden;
    vertical-align: bottom;
    color: #0066cc;
}


    .word-rotator span {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }


        .word-rotator span.active {
            opacity: 1;
            transform: translateY(0);
        }


.container-flex {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    height: 100%; /* Set a height for the div to demonstrate vertical centering */
}

.job-name {
    font-size: 20px;
    font-weight: 600;
    color: #086AD8;
}


.breadcrumb-title {
    position: relative;
    height: 1.3em; /* prevents layout jump */
    overflow: hidden;
}

.title-slide {
    font-size: 25px !important;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

    .title-slide.active {
        opacity: 1;
    }

/* Tablet */
@media (max-width: 991px) {
    .title-slide {
        font-size: 24px !important;
        line-height: 1.35;
    }

    .breadcrumb-list {
        margin-top: -70px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .title-slide {
        font-size: 20px !important;
        line-height: 1.4;
        padding: 0 10px; /* prevents edge clipping */
    }

    .breadcrumb-list {
        margin-top: -70px;
    }
}


/*GDPR START*/
#gdpr-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    font-family: inherit;
    max-width: 1100px;
    margin: auto;
}

.gdpr-hidden {
    display: none;
}

.gdpr-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.gdpr-content {
    flex: 1 1 65%;
}

    .gdpr-content h3 {
        margin: 0 0 8px;
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
    }

    .gdpr-content p {
        margin: 0;
        font-size: 14px;
        color: #4b5563;
        line-height: 1.5;
    }

    .gdpr-content a {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 500;
    }

.gdpr-actions {
    flex: 1 1 30%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

button {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: #0d6efd;
    color: #ffffff;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.btn-outline {
    background: transparent;
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .gdpr-container {
        flex-direction: column;
        text-align: center;
    }

    .gdpr-actions {
        justify-content: center;
        margin-top: 15px;
    }
}


/*GDPR END*/
.btn-header-cta {
    font-size: 15px;
    font-weight: 500;
    border-style: solid;
    border-radius: 5px;
    border-color: transparent;
    border: 1px solid transparent;
    padding: 0 36px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    height: 54px;
    line-height: 54px;
    letter-spacing: 0em;
    color: #ffffff;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    margin-top:3px;
}

    .btn-header-cta:hover {
        font-weight: 500;
        color: #000000;
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px);
    }

/* Base font size */
.breadcrumb-h1 {
    font-size: 2.5rem; /* 40px */
    line-height: 1.2;
}

/* Tablet landscape and below (≤1024px) */
@media (max-width: 1024px) {
    .breadcrumb-h1 {
        font-size: 2.25rem; /* 36px */
    }
}

/* Tablet portrait (≤768px) */
@media (max-width: 768px) {
    .breadcrumb-h1 {
        font-size: 2rem; /* 32px */
    }
}

/* Mobile landscape (≤576px) */
@media (max-width: 576px) {
    .breadcrumb-h1 {
        font-size: 1.75rem; /* 28px */
    }
}

/* Mobile portrait (≤375px) */
@media (max-width: 375px) {
    .breadcrumb-h1 {
        font-size: 1.5rem; /* 24px */
    }
}

/* section layout similar to dnndevelopers */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg,#ffffff,#f8f8f8);
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.cta-sub {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* CTA button */
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 42px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: #d2a98e;
    transition: all .35s ease;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

    /* GLOW BORDER EFFECT */
    .cta-btn::after {
        content: "";
        position: absolute;
        inset: -3px;
        border-radius: 60px;
        background: linear-gradient(45deg,#d2a98e,#fff,#d2a98e,#fff);
        z-index: -1;
        opacity: 0;
        transition: opacity .4s ease;
        background-size: 400% 400%;
        animation: glowMove 6s linear infinite;
    }

@keyframes glowMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-btn:hover::after {
    opacity: 1;
}

/* ripple effect */
.cta-btn span {
    position: relative;
    z-index: 2;
}

.cta-btn:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: width .5s ease,height .5s ease;
}

.cta-btn:hover:before {
    width: 320px;
    height: 320px;
}

/* arrow animation */
.arrow {
    font-size: 20px;
    transition: .35s;
}

.cta-btn:hover .arrow {
    letter-spacing: 4px;
}

/* subtle pulse without movement */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(210,169,142,0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(210,169,142,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(210,169,142,0);
    }
}

.cta-btn {
    animation: pulse 2.5s infinite;
}

/* responsive */
@media(max-width:768px) {
    .cta-title {
        font-size: 28px;
    }

    .cta-sub {
        font-size: 16px;
    }

    .cta-btn {
        padding: 16px 28px;
        font-size: 16px;
    }
}

/*-------------------------- TOP POPUP BUTTON --------------------------*/
:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --accent: #f72585;
    --accent-light: #ff4da6;
    --gradient: linear-gradient(135deg,#4361ee 0%,#3a0ca3 100%);
    --gradient-accent: linear-gradient(135deg,#d2a98e 0%,#d2a98e 100%);
}

.free-btn {
    letter-spacing: 1px;
    background: var(--gradient-accent);
    border: none;
    /*    padding: 16px 40px;
*/ font-weight: 600;
    border-radius: 5px;
    transition: .4s;
    color: #fff;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

    .free-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: var(--gradient);
        transition: .4s;
        z-index: 0;
    }

    .free-btn span {
        position: relative;
        z-index: 1;
    }

    .free-btn:hover::before {
        width: 100%;
    }

    .free-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(247,37,133,.35);
    }

/* ===== MODAL ===== */
.modal-content {
    border-radius: 18px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.modal-header {
    background: #086AD8;
    color: #fff;
    border: none;
    padding: 25px 28px;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff !important;
}

.modal-body {
    padding: 28px;
}

.form-control {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    transition: .3s;
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 .15rem rgba(67,97,238,.2);
    }

.cta-submit-btn {
    background: var(--gradient-accent);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    width: 100%;
    transition: .3s;
    letter-spacing: 1px;
}

    .cta-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px #086AD8;
    }
/* mobile free consultation button */
.mobile-free-consult {
    padding: 15px 0px;
}

.free-consult-btn {
    width: 100%;
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    transition: .3s;
}

    .free-consult-btn:hover {
        background: linear-gradient(135deg,#4361ee,#3a0ca3);
    }

/* hide on desktop */
@media (min-width:1200px) {
    .mobile-free-consult {
        display: none !important;
    }
}
@media only screen and (max-width: 767px) {

    .modal-title{font-size: 14px;}
}
    /*-------------------------- TOP POPUP BUTTON --------------------------*/