/*------------------------------------------
TABLE OF CONTENTS
1. Reset & Variables
2. Global Styles
3. Header & Navigation
4. Hero Section
5. Brand Slider
6. Services Section
7. About Section
8. Case Studies Section
9. Video Section
10. Counter Section
11. Testimonials Section
12. CTA Section
13. Footer Section
14. Animations
15. Utility Classes
------------------------------------------*/

/* 1. Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --tp-common-black: #030303;
    --tp-common-white: #FFFFFF;
    --tp-theme-primary: #C4EE18;
    --tp-text-grey-1: #525252;
    --tp-text-grey-2: #999999;
    --tp-bg-grey: #EEEEEE;
    --tp-border-light: rgba(3, 3, 3, 0.14);
    --tp-transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--tp-common-white);
    color: var(--tp-common-black);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Smooth Scroll Container */
#smooth-wrapper {
    inset: 0;
    width: 100%;
    height: 100%;
    /*position: fixed;*/
    /*overflow: hidden;*/
}

#smooth-content {
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
}

/* 2. Global Styles */
img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tp-transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1343px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Typography */
.fs-16 { font-size: 16px; }
.fs-18 { font-size: 18px; }
.fs-22 { font-size: 22px; }
.fs-25 { font-size: 25px; }
.fs-35 { font-size: 35px; }
.fs-50 { font-size: 50px; }
.fs-60 { font-size: 60px; }
.fs-70 { font-size: 70px; }
.fs-100 { font-size: 100px; }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.lh-1 { line-height: 1; }
.lh-12 { line-height: 1.2; }
.lh-120-per { line-height: 1.2; }
.lh-28 { line-height: 28px; }
.lh-36 { line-height: 36px; }

/* Buttons */
.tp-btn {
    border-radius: 100px;
    padding: 12px 32px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--tp-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.tp-btn-dark {
    background-color: var(--tp-common-black);
    color: var(--tp-common-white);
    border-color: var(--tp-common-black);
}

.tp-btn-dark:hover {
    background-color: var(--tp-common-white);
    color: var(--tp-common-black);
}

.tp-btn-light {
    background-color: var(--tp-common-white);
    color: var(--tp-common-black);
    border-color: var(--tp-common-black);
}

.tp-btn-light:hover {
    background-color: var(--tp-common-black);
    color: var(--tp-common-white);
}

.tp-btn-rounded {
    border-radius: 100px;
    padding: 16px 40px;
    background: rgba(26, 26, 26, 0.83);
    color: var(--tp-common-white);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--tp-transition);
    position: relative;
    overflow: hidden;
}

.tp-btn-rounded:hover {
    background: var(--tp-theme-primary);
    color: var(--tp-common-black);
}

/* В самом начале файла style.css добавьте: */

/* Базовые стили для кнопок - гарантируем видимость */
.tp-btn,
.tp-btn-dark,
.tp-btn-light,
.tp-btn-rounded,
.tp-hero-buttons .tp-btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}

/* Убираем любые возможные анимации, которые могут скрыть кнопки */
.tp-hero-buttons {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Для всех кнопок на странице */
button,
a.tp-btn,
a.tp-btn-dark,
a.tp-btn-light {
    opacity: 1 !important;
    visibility: visible !important;
}

/* 3. Header & Navigation */
.tp-header-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--tp-transition);
}

.header-sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.tp-header-logo img {
    width: 150px;
}

.tp-nav-menu {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.tp-nav-menu li a {
    font-weight: 500;
    font-size: 16px;
    transition: var(--tp-transition);
}

.tp-nav-menu li a:hover {
    color: var(--tp-theme-primary);
}

.tp-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.tp-header-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--tp-transition);
}

.tp-header-search-btn:hover {
    color: var(--tp-theme-primary);
}

.tp-menu-bar {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tp-menu-bar span {
    width: 25px;
    height: 2px;
    background-color: var(--tp-common-black);
    transition: var(--tp-transition);
}

/* Offcanvas Menu */
.tp-offcanvas-area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--tp-common-white);
    z-index: 1001;
    transition: all 0.5s ease;
    padding: 40px;
    overflow-y: auto;
}

.tp-offcanvas-area.opened {
    right: 0;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--tp-transition);
}

.body-overlay.apply,
.body-overlay.opened {
    opacity: 1;
    visibility: visible;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    transition: var(--tp-transition);
}

.close-btn:hover {
    color: var(--tp-theme-primary);
}

.tp-offcanvas-menu nav ul {
    margin-top: 40px;
}

.tp-offcanvas-menu nav ul li {
    margin-bottom: 20px;
}

.tp-offcanvas-menu nav ul li a {
    font-size: 24px;
    font-weight: 500;
    transition: var(--tp-transition);
}

.tp-offcanvas-menu nav ul li a:hover {
    color: var(--tp-theme-primary);
}

.tp-offcanvas-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--tp-common-black);
}

.tp-offcanvas-contact ul li {
    margin-bottom: 15px;
    color: var(--tp-text-grey-1);
}

/* 4. Hero Section */
.tp-hero-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    overflow: hidden;
}

.tp-hero-content {
    position: relative;
    z-index: 2;
}

.tp-hero-subtitle {
    display: inline-block;
    background: rgba(196, 238, 24, 0.15);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.tp-hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.tp-hero-title span {
    color: var(--tp-theme-primary);
}

.tp-hero-text {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    margin-bottom: 40px;
    max-width: 500px;
}

.tp-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tp-hero-thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tp-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 5. Brand Slider */
.tp-brand-area {
    padding: 80px 0;
    border-top: 1px solid var(--tp-border-light);
    border-bottom: 1px solid var(--tp-border-light);
}

.tp-brand-slider {
    overflow: hidden;
}

.tp-brand-item {
    text-align: center;
    opacity: 0.5;
    transition: var(--tp-transition);
}

.tp-brand-item:hover {
    opacity: 1;
}

.tp-brand-item img {
    max-width: 120px;
    height: auto;
}

/* 6. Services Section */
.tp-services-area {
    padding: 120px 0;
}

.tp-section-header {
    margin-bottom: 60px;
}

.tp-section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.tp-section-subtitle .borders {
    width: 30px;
    height: 2px;
    background-color: var(--tp-theme-primary);
    display: inline-block;
}

.tp-section-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tp-section-description {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    max-width: 600px;
    margin: 0 auto;
}

.tp-service-item {
    background: var(--tp-common-white);
    padding: 40px;
    border-radius: 20px;
    transition: var(--tp-transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.tp-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tp-service-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 238, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--tp-theme-primary);
}

.tp-service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tp-service-text {
    color: var(--tp-text-grey-1);
    margin-bottom: 20px;
    line-height: 1.6;
}

.tp-service-link {
    color: var(--tp-theme-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--tp-transition);
}

.tp-service-link:hover {
    gap: 12px;
}

/* 7. About Section */
.tp-about-area {
    padding: 120px 0;
    background-color: var(--tp-bg-grey);
}

.tp-about-thumb {
    border-radius: 20px;
    overflow: hidden;
}

.tp-about-thumb img {
    width: 100%;
    height: auto;
}

.tp-about-text {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    margin-bottom: 30px;
}

.tp-about-expreance {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.tp-about-number {
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
}

.tp-about-number .plus {
    font-size: 30px;
}

.tp-about-experience-text {
    font-weight: 500;
}

/* 8. Case Studies Section */
.tp-case-area {
    padding: 120px 0;
}

.tp-case-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.tp-case-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.tp-case-item:hover img {
    transform: scale(1.1);
}

.tp-case-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--tp-common-white);
}

.tp-case-category {
    font-size: 14px;
    color: var(--tp-theme-primary);
    margin-bottom: 10px;
}

.tp-case-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* 9. Video Section */
.tp-video-area {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.tp-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tp-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-video-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    background: var(--tp-common-black);
    padding: 40px;
    max-width: 400px;
    border-radius: 20px;
    z-index: 2;
}

.tp-video-btn {
    width: 80px;
    height: 80px;
    background: var(--tp-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--tp-transition);
}

.tp-video-btn:hover {
    transform: scale(1.1);
}

.tp-video-btn i {
    font-size: 24px;
    color: var(--tp-common-black);
}

.tp-video-text {
    color: var(--tp-common-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

/* 10. Counter Section */
.tp-counter-area {
    padding: 100px 0;
    background-color: var(--tp-common-black);
    color: var(--tp-common-white);
}

.tp-counter-number {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tp-counter-text {
    font-size: 18px;
    color: var(--tp-text-grey-2);
}

/* 11. Testimonials Section */
.tp-testimonial-area {
    padding: 120px 0;
}

.tp-testimonial-intro {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    margin-top: 20px;
}

.tp-testimonial-slider {
    overflow: hidden;
}

.tp-testimonial-item {
    background: var(--tp-bg-grey);
    padding: 50px;
    border-radius: 30px;
}

.tp-testimonial-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.tp-testimonial-author {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.tp-testimonial-position {
    color: var(--tp-text-grey-1);
}

.tp-testimonial-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.tp-testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--tp-text-grey-2);
    opacity: 0.5;
    margin: 0 5px;
}

.tp-testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--tp-theme-primary);
    opacity: 1;
}

/* 12. CTA Section */
.tp-cta-area {
    padding: 100px 0;
    background-color: var(--tp-common-black);
    color: var(--tp-common-white);
}

.tp-cta-title {
    font-size: 60px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 30px 0;
}

.tp-cta-title a {
    color: var(--tp-theme-primary);
    position: relative;
    display: inline-block;
}

.tp-cta-title a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tp-theme-primary);
    transition: var(--tp-transition);
}

.tp-cta-title a:hover:after {
    width: 100%;
}

/* 13. Footer Section */
.tp-footer-area {
    background-color: var(--tp-common-black);
    padding: 80px 0 30px;
    color: var(--tp-text-grey-2);
}

.tp-footer-logo {
    margin-bottom: 25px;
}

.tp-footer-logo img {
    width: 150px;
}

.tp-footer-text {
    margin-bottom: 30px;
    line-height: 1.6;
}

.tp-footer-widget-title {
    font-size: 20px;
    color: var(--tp-common-white);
    margin-bottom: 25px;
    font-weight: 600;
}

.tp-footer-links li {
    margin-bottom: 15px;
}

.tp-footer-links li a {
    transition: var(--tp-transition);
}

.tp-footer-links li a:hover {
    color: var(--tp-theme-primary);
}

.tp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tp-footer-bottom-links {
    display: flex;
    gap: 30px;
}

.tp-footer-bottom-links a {
    transition: var(--tp-transition);
}

.tp-footer-bottom-links a:hover {
    color: var(--tp-theme-primary);
}

/* 14. Animations */
.tp_fade_anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tp_fade_anim.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-up-img {
    overflow: hidden;
}

.scale-up {
    transition: transform 0.3s ease;
}

/* 15. Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--tp-common-white);
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.w-100 {
    width: 100%;
}

/* Preloader */
.loader-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--tp-common-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.load-text {
    color: var(--tp-theme-primary);
    font-size: 24px;
    letter-spacing: 4px;
    font-weight: 600;
}
/* Дополнительные стили для страницы About */
.tp-team-item {
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.tp-team-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.tp-team-thumb img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.tp-team-item:hover .tp-team-thumb img {
    transform: scale(1.05);
}

.tp-team-content {
    text-align: center;
}

.tp-team-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tp-team-position {
    font-size: 16px;
    color: var(--tp-text-grey-1);
}

.tp-value-item {
    background: var(--tp-bg-grey);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.tp-value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.tp-value-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 238, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tp-value-icon i {
    font-size: 28px;
    color: var(--tp-theme-primary);
}

.tp-value-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tp-value-text {
    color: var(--tp-text-grey-1);
    line-height: 1.6;
}

.tp-stat-item {
    text-align: center;
    padding: 20px;
}

.tp-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--tp-theme-primary);
    margin-bottom: 10px;
}

.tp-stat-text {
    font-size: 18px;
    color: var(--tp-text-grey-1);
}

/*------------------------------------------
About Page Styles
------------------------------------------*/

/* Page Header */
.tp-page-header {
    padding: 180px 0 100px;
    background-color: var(--tp-bg-grey);
    position: relative;
    overflow: hidden;
}

.tp-page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.tp-page-header .breadcrumb a {
    font-size: 14px;
    font-weight: 500;
    color: var(--tp-text-grey-1);
    transition: var(--tp-transition);
}

.tp-page-header .breadcrumb a:hover {
    color: var(--tp-theme-primary);
}

.tp-page-header .separator-dot {
    width: 6px;
    height: 6px;
    background: var(--tp-text-grey-2);
    border-radius: 50%;
    display: inline-block;
}

.tp-page-header .breadcrumb span {
    font-size: 14px;
    color: var(--tp-text-grey-2);
}

.tp-page-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.tp-page-title span {
    color: var(--tp-theme-primary);
}

.tp-page-description {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    max-width: 600px;
    line-height: 1.6;
}

/* Team Section */
.tp-team-area {
    padding: 120px 0;
}

.tp-team-item {
    margin-bottom: 40px;
    transition: var(--tp-transition);
}

.tp-team-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.tp-team-thumb img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.tp-team-item:hover .tp-team-thumb img {
    transform: scale(1.05);
}

.tp-team-content {
    text-align: center;
}

.tp-team-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tp-common-black);
}

.tp-team-position {
    font-size: 16px;
    color: var(--tp-text-grey-1);
}

/* Values Section */
.tp-values-area {
    padding: 120px 0;
    background-color: var(--tp-bg-grey);
}

.tp-value-item {
    background: var(--tp-common-white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--tp-transition);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.tp-value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tp-value-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 238, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.tp-value-icon i {
    font-size: 32px;
    color: var(--tp-theme-primary);
}

.tp-value-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tp-common-black);
}

.tp-value-text {
    color: var(--tp-text-grey-1);
    line-height: 1.6;
}

/* Stats Section */
.tp-stats-area {
    padding: 100px 0;
    background-color: var(--tp-common-black);
}

.tp-stat-item {
    text-align: center;
    padding: 20px;
}

.tp-stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--tp-theme-primary);
    margin-bottom: 15px;
    line-height: 1;
}

.tp-stat-text {
    font-size: 18px;
    color: var(--tp-text-grey-2);
}

/* Careers Section */
.tp-careers-area {
    padding: 120px 0;
}

.tp-careers-text {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    line-height: 1.6;
    margin-bottom: 30px;
}

.tp-careers-image {
    border-radius: 20px;
    overflow: hidden;
}

.tp-careers-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.tp-careers-image:hover img {
    transform: scale(1.05);
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .tp-page-title {
        font-size: 55px;
    }

    .tp-stat-number {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .tp-page-header {
        padding: 150px 0 80px;
    }

    .tp-page-title {
        font-size: 45px;
    }

    .tp-team-area,
    .tp-values-area,
    .tp-careers-area {
        padding: 80px 0;
    }

    .tp-stats-area {
        padding: 70px 0;
    }

    .tp-stat-number {
        font-size: 45px;
    }

    .tp-careers-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .tp-page-title {
        font-size: 36px;
    }

    .tp-page-description {
        font-size: 16px;
    }

    .tp-team-name {
        font-size: 20px;
    }

    .tp-value-title {
        font-size: 20px;
    }

    .tp-stat-number {
        font-size: 40px;
    }

    .tp-stat-text {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .tp-page-title {
        font-size: 28px;
    }

    .tp-team-area,
    .tp-values-area,
    .tp-careers-area {
        padding: 60px 0;
    }

    .tp-stats-area {
        padding: 50px 0;
    }

    .tp-stat-number {
        font-size: 35px;
    }
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--tp-text-grey-1);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--tp-theme-primary);
}

.breadcrumb span {
    color: var(--tp-text-grey-2);
}

.separator-dot {
    width: 6px;
    height: 6px;
    background: var(--tp-text-grey-2);
    border-radius: 50%;
    display: inline-block;
}
/*------------------------------------------
Grid System
------------------------------------------*/

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Extra small devices (portrait phones, less than 576px) */
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Utility Classes */
.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.ml-20 {
    margin-left: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.p-relative {
    position: relative;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

/* Responsive visibility */
@media (min-width: 1200px) {
    .d-xl-block {
        display: block;
    }
    .d-xl-none {
        display: none;
    }
}

@media (max-width: 1199px) {
    .d-xl-block {
        display: none;
    }
}

@media (max-width: 991px) {
    .d-none {
        display: none;
    }
}
/* Contact Page Styles */
.tp-contact-header {
    padding: 180px 0 80px;
    background-color: var(--tp-bg-grey);
}

.tp-contact-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.tp-contact-title span {
    color: var(--tp-theme-primary);
}

.tp-contact-description {
    font-size: 18px;
    color: var(--tp-text-grey-1);
    max-width: 600px;
}

/* Contact Info Section */
.tp-contact-info-area {
    padding: 80px 0;
}

.tp-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--tp-common-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--tp-transition);
    margin-bottom: 30px;
}

.tp-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tp-contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 238, 24, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tp-contact-icon i {
    font-size: 24px;
    color: var(--tp-theme-primary);
}

.tp-contact-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--tp-text-grey-1);
    margin-bottom: 8px;
}

.tp-contact-info p,
.tp-contact-info a {
    font-size: 20px;
    font-weight: 600;
    color: var(--tp-common-black);
    transition: var(--tp-transition);
}

.tp-contact-info a:hover {
    color: var(--tp-theme-primary);
}

/* Contact Form Section */
.tp-contact-form-area {
    padding: 80px 0;
    background-color: var(--tp-bg-grey);
}

.tp-contact-form {
    background: var(--tp-common-white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tp-form-group {
    margin-bottom: 25px;
}

.tp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--tp-text-grey-1);
}

.tp-form-group input,
.tp-form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--tp-border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--tp-transition);
    background: var(--tp-common-white);
}

.tp-form-group input:focus,
.tp-form-group textarea:focus {
    outline: none;
    border-color: var(--tp-theme-primary);
    box-shadow: 0 0 0 3px rgba(196, 238, 24, 0.1);
}

.tp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.tp-submit-btn {
    background: var(--tp-common-black);
    color: var(--tp-common-white);
    border: none;
    padding: 15px 40px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--tp-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tp-submit-btn:hover {
    background: var(--tp-theme-primary);
    color: var(--tp-common-black);
}

/* Map Section */
.tp-map-area {
    height: 450px;
    overflow: hidden;
}

.tp-map-area iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .tp-contact-title {
        font-size: 45px;
    }

    .tp-contact-header {
        padding: 150px 0 60px;
    }

    .tp-contact-info-area,
    .tp-contact-form-area {
        padding: 60px 0;
    }

    .tp-contact-form {
        padding: 30px;
        margin-top: 40px;
    }

    .tp-contact-card {
        padding: 20px;
    }

    .tp-contact-info p,
    .tp-contact-info a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .tp-contact-title {
        font-size: 36px;
    }

    .tp-contact-description {
        font-size: 16px;
    }

    .tp-contact-icon {
        width: 50px;
        height: 50px;
    }

    .tp-contact-icon i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .tp-contact-title {
        font-size: 28px;
    }

    .tp-contact-card {
        flex-direction: column;
        text-align: center;
    }
}
/* Form validation styles */
.tp-form-group {
    position: relative;
}

.tp-form-group .error-message {
    display: none;
    font-size: 12px;
    color: #ff4444;
    margin-top: 5px;
}

.tp-form-group.error input,
.tp-form-group.error textarea {
    border-color: #ff4444;
}

.tp-form-group.success input,
.tp-form-group.success textarea {
    border-color: var(--tp-theme-primary);
}

.tp-submit-btn {
    position: relative;
    transition: all 0.3s ease;
}

.tp-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.tp-submit-btn.loading .btn-text {
    visibility: hidden;
}

.tp-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid var(--tp-common-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

.form-success-message {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}