:root {
    --primary-color: #fcbf49;
    --primary-light: #fefaec;
    --primary-dark: #e5a626;
    --secondary-color: #0181f5;
    --secondary-light: #5DB2FF;
    --tertiary-color: #ff6b35;
    --tertiary-light: #ff8c69;
    --accent-color: #108bff;
    --accent-light: #3fcaff;
    --neutral-color: #e8e8e8;
    --neutral-light: #f8f8f8;
    --info-color: #17a2b8;
    --warning-color: #dc3545;
    --success-color: #28a745;
    --text-color: #e5a626;
    --background-color: #fefaec;
    --dark-bg: #0a0a0a;
    --section-bg: #f8f8f8;
    --border-color: #e8dfff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 21px;
}

.container-fluid {
    width: 100%;
    padding: 0 13px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.col-lg-12 { width: 100%; }
.col-lg-8 { width: 66.666667%; }
.col-lg-6 { width: 50%; }
.col-lg-4 { width: 33.333333%; }
.col-lg-3 { width: 25%; }
.col-xl-8 { width: 66.666667%; }
.col-xl-6 { width: 50%; }
.col-md-12 { width: 100%; }
.col-md-8 { width: 66.666667%; }
.col-md-7 { width: 58.333333%; }
.col-md-6 { width: 50%; }
.col-md-3 { width: 25%; }

[class*="col-"] {
    padding: 0 13px;
}

.main_menu {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    background-color: rgba(254, 250, 236, 0.95);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    position: relative;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger {
    width: 32px;
    height: 3px;
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.hamburger:before {
    top: -9px;
}

.hamburger:after {
    top: 9px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 21px;
}

.navbar-nav {
    display: flex;
    gap: 34px;
    list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.slider_area {
    height: 920px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../balcony/professional_coding_workspace_1.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.slider_text {
    max-width: 800px;
    margin: 0 auto;
}

.deal_text {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    display: inline-block;
    padding: 13px 34px;
    border-radius: 8px;
    margin-bottom: 34px;
}

.deal_text span {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider_text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.slider_text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 86px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 21px;
    text-transform: uppercase;
    margin-top: -21px;
}

.slider_text p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.boxed-btn3 {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: white;
    display: inline-block;
    padding: 17px 42px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.boxed-btn3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    transition: left 0.3s ease;
}

.boxed-btn3:hover::before {
    left: 0;
}

.boxed-btn3:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(252, 191, 73, 0.3);
}

.boxed-btn3 span {
    position: relative;
    z-index: 1;
}

.stats-counter {
    background: var(--dark-bg);
    padding: 89px 0;
    color: white;
}

.counter-block {
    text-align: center;
    margin-bottom: 34px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 13px;
    font-family: 'Playfair Display', serif;
}

.counter-content span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about_info_area {
    padding: 126px 0;
    background: var(--background-color);
}

.about_text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 21px;
    line-height: 1.2;
}

.about_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #727272;
    margin-bottom: 21px;
}

.about_thumb {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about_thumb:hover {
    transform: translateY(-8px);
}

.about_thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about_thumb:hover img {
    transform: scale(1.05);
}

.ftco-section {
    padding: 126px 0;
    background: var(--section-bg);
}

.heading-section {
    text-align: center;
    margin-bottom: 67px;
}

.heading-section .subheading {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 13px;
    display: block;
}

.heading-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 21px;
}

.services {
    text-align: center;
    padding: 34px 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 34px;
}

.services:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.15);
}

.services .icon {
    width: 89px;
    height: 89px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
    transition: all 0.3s ease;
}

.services:hover .icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.service-icon {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1);
}

.services h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 13px;
}

.services p {
    font-size: 14px;
    line-height: 1.6;
    color: #727272;
}

.menu-entry {
    margin-bottom: 34px;
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-entry:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.15);
}

.menu-entry .img {
    height: 200px;
    background-size: cover;
    background-position: center;
    display: block;
}

.menu-entry .text {
    padding: 21px;
}

.menu-entry h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.menu-entry h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-entry h3 a:hover {
    color: var(--primary-color);
}

.menu-entry p {
    font-size: 14px;
    line-height: 1.6;
    color: #727272;
    margin-bottom: 13px;
}

.menu-entry .price span {
    font-size: 21px;
    font-weight: 700;
    color: var(--accent-color);
}

.btn.btn-primary.btn-outline-primary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 8px 21px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn.btn-primary.btn-outline-primary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.pricing_area {
    padding: 126px 0;
    background: var(--background-color);
}

.main_title {
    text-align: center;
    margin-bottom: 67px;
}

.main_title h2 {
    font-size: 84px;
    color: var(--primary-color);
    opacity: 0.15;
    margin: 0;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.main_title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: -34px;
    margin-bottom: 21px;
}

.main_title p {
    font-size: 16px;
    color: #727272;
    max-width: 600px;
    margin: 0 auto;
}

.pricing_item {
    background: linear-gradient(135deg, var(--text-color), var(--primary-color));
    color: white;
    text-align: center;
    border-radius: 13px;
    margin-bottom: 34px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transition: left 0.3s ease;
}

.pricing_item:hover::before {
    left: 0;
}

.pricing_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.2);
}

.pricing_item.active {
    transform: scale(1.05);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.2);
}

.pricing_item.active::before {
    left: 0;
}

.p_title {
    font-size: 21px;
    font-weight: 600;
    padding: 34px 21px 21px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.p_price {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 21px;
    position: relative;
    z-index: 1;
}

.pricing_item ul {
    list-style: none;
    padding: 34px 21px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.pricing_item ul li {
    padding: 13px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.pricing_item ul li:last-child {
    border-bottom: none;
}

.p_btn {
    padding-bottom: 34px;
    position: relative;
    z-index: 1;
}

.gradient_btn {
    background: linear-gradient(45deg, var(--primary-color), var(--tertiary-color));
    color: white;
    padding: 13px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.gradient_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 21px rgba(252, 191, 73, 0.3);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.ftco-testimonial-1 {
    display: none;
    background: white;
    padding: 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    margin-bottom: 21px;
}

.ftco-testimonial-1.active {
    display: block;
}

.ftco-testimonial-vcard {
    display: flex;
    align-items: center;
    margin-bottom: 21px;
}

.ftco-testimonial-vcard img {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    margin-right: 21px;
    object-fit: cover;
}

.ftco-testimonial-vcard h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 3px;
}

.ftco-testimonial-vcard span {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
}

.section-title-underline span {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    border-bottom: 5px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 8px;
}

.site-section {
    padding: 126px 0;
    background: var(--section-bg);
}

.faq_area {
    padding: 126px 0;
    background: var(--section-bg);
}

.section_title {
    text-align: center;
    margin-bottom: 67px;
}

.section_title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 21px;
}

.section_title p {
    font-size: 16px;
    color: #727272;
    max-width: 600px;
    margin: 0 auto;
}

.single_faq {
    background: white;
    border-radius: 13px;
    margin-bottom: 17px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.single_faq:hover {
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.15);
}

.faq_header {
    padding: 21px 34px;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.faq_header:hover {
    background: var(--primary-light);
}

.faq_header::after {
    content: '+';
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.faq_header h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    padding-right: 34px;
}

.faq_content {
    padding: 0 34px 21px;
    border-top: 1px solid var(--border-color);
    display: none;
}

.faq_content p {
    font-size: 15px;
    line-height: 1.6;
    color: #727272;
    margin: 0;
    padding-top: 21px;
}

.contact_form_quote {
    padding: 126px 0;
    background: var(--background-color);
}

.form_wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 34px;
}

.form_wrap form input,
.form_wrap form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--neutral-color);
    padding: 17px 0;
    margin-bottom: 21px;
    background: transparent;
    font-size: 16px;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form_wrap form input:focus,
.form_wrap form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.form_wrap form textarea {
    height: 120px;
    resize: vertical;
}

.contact_thumb {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.contact_thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.contact_thumb:hover img {
    transform: scale(1.05);
}

.site-footer {
    padding: 89px 0;
    background: var(--dark-bg);
    color: white;
}

.footer-heading {
    font-size: 19px;
    font-weight: 600;
    color: white;
    margin-bottom: 21px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--primary-color);
}

.contact-info {
    margin-top: 21px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.text-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.d-flex {
    display: flex;
}

.w-100 {
    width: 100%;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }
.pb-3 { padding-bottom: 1rem; }
.mr-3 { margin-right: 1rem; }
.ml-auto { margin-left: auto; }
.mb-80 { margin-bottom: 67px; }

@media screen and (max-width: 1024px) {
    .col-lg-8 { width: 100%; }
    .col-lg-6 { width: 100%; }
    .col-lg-4 { width: 50%; }
    .col-lg-3 { width: 50%; }

    .slider_text h1 { font-size: 56px; }
    .slider_text h2 { font-size: 67px; }
    .about_text h3 { font-size: 34px; }
    .heading-section h2 { font-size: 34px; }
    .section_title h3 { font-size: 34px; }
    .form_wrap h3 { font-size: 34px; }
    .section-title-underline span { font-size: 34px; }
    .main_title h1 { font-size: 34px; }
    .main_title h2 { font-size: 67px; }
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 17px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-color);
        transition: all 0.3s ease;
        padding-top: 89px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 21px;
    }

    .nav-item {
        text-align: center;
        margin: 13px 0;
    }

    .nav-link {
        font-size: 19px;
        padding: 13px 21px;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .col-md-12 { width: 100%; }
    .col-md-8 { width: 100%; }
    .col-md-7 { width: 100%; }
    .col-md-6 { width: 100%; }
    .col-md-3 { width: 100%; }
    .col-lg-8 { width: 100%; }
    .col-lg-6 { width: 100%; }
    .col-lg-4 { width: 100%; }
    .col-lg-3 { width: 100%; }
    .col-xl-8 { width: 100%; }
    .col-xl-6 { width: 100%; }

    .slider_area {
        height: 680px;
        padding: 0 21px;
    }

    .slider_text h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .slider_text h2 {
        font-size: 48px;
        margin-top: -13px;
    }

    .slider_text p {
        font-size: 16px;
        margin-bottom: 21px;
    }

    .stats-counter {
        padding: 67px 0;
    }

    .counter-block {
        margin-bottom: 34px;
    }

    .stat-number {
        font-size: 42px;
    }

    .about_info_area,
    .ftco-section,
    .pricing_area,
    .site-section,
    .faq_area,
    .contact_form_quote {
        padding: 67px 0;
    }

    .about_text h3 {
        font-size: 28px;
        margin-bottom: 17px;
    }

    .heading-section h2 {
        font-size: 28px;
    }

    .section_title h3 {
        font-size: 28px;
    }

    .form_wrap h3 {
        font-size: 28px;
    }

    .section-title-underline span {
        font-size: 28px;
    }

    .main_title h1 {
        font-size: 28px;
    }

    .main_title h2 {
        font-size: 56px;
    }

    .services {
        margin-bottom: 21px;
    }

    .menu-entry {
        margin-bottom: 21px;
    }

    .pricing_item {
        margin-bottom: 21px;
    }

    .single_faq {
        margin-bottom: 13px;
    }

    .faq_header {
        padding: 17px 21px;
    }

    .faq_header::after {
        right: 21px;
    }

    .faq_content {
        padding: 0 21px 17px;
    }

    .site-footer {
        padding: 67px 0;
    }

    .site-footer .col-lg-3,
    .site-footer .col-lg-8 .col-lg-3 {
        width: 100%;
        margin-bottom: 21px;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: flex;
    }

    .navbar-nav {
        display: flex;
    }
}

.slider_text .video_service_btn {
    margin-top: 21px;
}

.section-padding {
    padding: 126px 0;
}

.plus_padding {
    padding-top: 126px;
}

.mb-80 {
    margin-bottom: 67px;
}

.section_gap {
    padding: 126px 0;
}

.list-unstyled {
    list-style: none;
    padding: 0;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.w-100 {
    width: 100%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.ftco-animate {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-animation {
    animation: counterUp 2s ease-out;
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pricing_item .p_btn .gradient_btn span {
    position: relative;
    z-index: 1;
}

.services-2 .icon {
    background: var(--accent-color);
    border: none;
}

.services-2:hover .icon {
    background: var(--primary-color);
}

.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-toggle.active .faq_header::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-toggle.active .faq_content {
    display: block;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.loading-animation {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 21px;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--accent-color);
}

.form_wrap form input::placeholder,
.form_wrap form textarea::placeholder {
    color: #999;
    font-size: 14px;
}

.navbar.scrolled {
    background-color: rgba(254, 250, 236, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.scroll-to-top img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.gradient-overlay {
    position: relative;
    overflow: hidden;
}

.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 191, 73, 0.9), rgba(255, 107, 53, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-overlay:hover::before {
    opacity: 1;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

.custom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 21px;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 34px;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: 1fr;
        gap: 21px;
    }
}

.diagonal-section {
    position: relative;
    transform: skewY(-2deg);
    margin: 67px 0;
}

.diagonal-section .container {
    transform: skewY(2deg);
}

.circular-flow {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
}

.unique-spacing {
    margin-bottom: 21px;
}

.unique-spacing:nth-child(2n) {
    margin-bottom: 34px;
}

.unique-spacing:nth-child(3n) {
    margin-bottom: 13px;
}

.custom-transitions {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imperfect-margin {
    margin-bottom: 19px;
}

.imperfect-margin:nth-child(odd) {
    margin-bottom: 23px;
}

.slightly-rotated {
    transform: rotate(0.5deg);
}

.slightly-rotated:nth-child(even) {
    transform: rotate(-0.3deg);
}

.workspace-banner {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 13px 21px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 21px;
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 21px;
}

.showcase-area {
    background: var(--section-bg);
    padding: 89px 0;
    position: relative;
}

.ocean-blue { color: #006494; }
.forest-green { color: #2d5016; }
.sunset-orange { color: #ff6b35; }

.breakpoint-640 {
    display: none;
}

@media screen and (max-width: 640px) {
    .breakpoint-640 {
        display: block;
    }
}

.breakpoint-890 {
    display: none;
}

@media screen and (max-width: 890px) {
    .breakpoint-890 {
        display: block;
    }
}

.breakpoint-1280 {
    display: none;
}

@media screen and (max-width: 1280px) {
    .breakpoint-1280 {
        display: block;
    }
}

.breakpoint-1600 {
    display: none;
}

@media screen and (max-width: 1600px) {
    .breakpoint-1600 {
        display: block;
    }
}

.spacing-7 { margin: 7px; }
.spacing-13 { margin: 13px; }
.spacing-21 { margin: 21px; }
.spacing-34 { margin: 34px; }

.creative-hover {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.creative-hover:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.distinctive-typography {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.original-component {
    background: linear-gradient(135deg, var(--primary-light), var(--neutral-light));
    border-radius: 21px;
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.original-component::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(252, 191, 73, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Page Styles */
.page-hero {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../balcony/professional_coding_workspace_1.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 21px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.about_story_area {
    padding: 126px 0;
    background: var(--background-color);
}

.about_story_text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 21px;
}

.about_story_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #727272;
    margin-bottom: 21px;
}

.story_highlights {
    display: flex;
    gap: 34px;
    margin-top: 34px;
}

.highlight_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight_icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(51%) sepia(97%) saturate(1352%) hue-rotate(21deg) brightness(103%) contrast(103%);
}

.highlight_item span {
    font-weight: 600;
    color: var(--text-color);
}

.about_story_image {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
}

.about_story_image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about_story_image:hover img {
    transform: scale(1.05);
}

.mission_vision_area {
    padding: 126px 0;
    background: var(--section-bg);
}

.mission_box, .vision_box {
    background: white;
    padding: 42px 34px;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 34px;
}

.mission_box:hover, .vision_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.15);
}

.mission_icon, .vision_icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
}

.mission_icon_img, .vision_icon_img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.mission_box h3, .vision_box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 17px;
}

.mission_box p, .vision_box p {
    font-size: 15px;
    line-height: 1.6;
    color: #727272;
}

.team_area {
    padding: 126px 0;
    background: var(--background-color);
}

.team_member {
    background: white;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 34px;
}

.team_member:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.15);
}

.member_photo {
    height: 250px;
    overflow: hidden;
}

.member_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team_member:hover .member_photo img {
    transform: scale(1.1);
}

.member_info {
    padding: 21px;
}

.member_info h4 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.member_info span {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 14px;
}

.member_info p {
    font-size: 14px;
    line-height: 1.6;
    color: #727272;
    margin: 13px 0;
}

.member_expertise {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.expertise_tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.values_area {
    padding: 126px 0;
    background: var(--section-bg);
}

.value_item {
    text-align: center;
    padding: 34px 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 34px;
}

.value_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.15);
}

.value_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 21px;
    filter: brightness(0) saturate(100%) invert(51%) sepia(97%) saturate(1352%) hue-rotate(21deg) brightness(103%) contrast(103%);
}

.value_item h4 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 13px;
}

.value_item p {
    font-size: 14px;
    line-height: 1.6;
    color: #727272;
}

.cta_area {
    padding: 89px 0;
    background: var(--dark-bg);
    color: white;
}

.cta_content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 13px;
}

.cta_content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta_button {
    text-align: right;
}

/* Thank You Page Styles */
.thankyou_hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../balcony/professional_coding_workspace_1.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.thankyou_content {
    max-width: 800px;
    margin: 0 auto;
}

.success_icon {
    margin-bottom: 34px;
}

.success_icon_img {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(64%) sepia(98%) saturate(1352%) hue-rotate(21deg) brightness(103%) contrast(103%);
}

.thankyou_content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 13px;
}

.thankyou_content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 21px;
    color: var(--primary-color);
}

.thankyou_content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 42px;
}

.next_steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 34px;
    border-radius: 13px;
    margin: 42px 0;
}

.next_steps h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 21px;
}

.steps_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 21px;
    margin-top: 21px;
}

.step_item {
    text-align: center;
    padding: 21px;
}

.step_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 13px;
    filter: brightness(0) invert(1);
}

.step_item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step_item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cta_buttons {
    display: flex;
    gap: 21px;
    justify-content: center;
    margin-top: 34px;
}

.boxed-btn3.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.boxed-btn3.secondary:hover {
    background: var(--primary-color);
    color: white;
}

.while_waiting_area {
    padding: 126px 0;
    background: var(--background-color);
}

.waiting_item {
    text-align: center;
    padding: 34px 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 8px 21px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 34px;
}

.waiting_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 42px rgba(0, 0, 0, 0.15);
}

.waiting_icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 21px;
    filter: brightness(0) saturate(100%) invert(51%) sepia(97%) saturate(1352%) hue-rotate(21deg) brightness(103%) contrast(103%);
}

.waiting_item h4 {
    font-size: 21px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 13px;
}

.waiting_item p {
    font-size: 14px;
    line-height: 1.6;
    color: #727272;
    margin-bottom: 17px;
}

.learn_more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.learn_more:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .page-hero {
        height: 300px;
        margin-top: 70px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .story_highlights {
        flex-direction: column;
        gap: 17px;
    }

    .about_story_text h2 {
        font-size: 28px;
    }

    .mission_box, .vision_box {
        padding: 21px;
    }

    .steps_grid {
        grid-template-columns: 1fr;
    }

    .cta_buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta_button {
        text-align: center;
    }

    .thankyou_hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .thankyou_content h1 {
        font-size: 32px;
    }

    .next_steps {
        padding: 21px;
    }
}