@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Roboto.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Teko';
    src: url('../fonts/Teko/Teko-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Teko';
    src: url('../fonts/Teko/Teko-Medium.ttf') format('ttf');
    font-weight: 500;
    font-display: swap;
}


:root {
    --primary-color: #FF6600;
    --secondary-color: #2c3e50;
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --text-color: #333;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color);
}

.bg-dark-custom {
    background-color: var(--dark-color);
}

.section-padding {
    padding: 100px 0;
}

.btn-custom {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    height: fit-content;
    margin: auto 0;
    font-family: 'Teko', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.navbar-custom {
    transition: background-color 0.5s ease-in-out, padding 0.5s ease;
    padding: 20px 0;
}

.navbar-custom.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    color: #fff !important;
}

.navbar-custom.scrolled .navbar-brand {
    color: var(--primary-color) !important;
}

.navbar-custom .nav-link {
    color: #fff;
    font-weight: 700;
    margin: 0 15px;
    transition: color 0.3s;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 102, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas-header {
    background-color: var(--dark-color);
}

.offcanvas-body {
    background-color: var(--dark-color);
    text-align: center;
}

.offcanvas .nav-link {
    font-size: 1.5rem;
    margin: 10px 0;
}

.footer-unusual {
    background-color: var(--dark-color);
    color: #a9a9a9;
}

.footer-top-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta.webp') no-repeat center center/cover;
    padding: 80px 0;
    color: white;
}

.footer-main {
    padding: 60px 0;
}

.footer-main h5 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-main a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-main a:hover {
    color: var(--primary-color);
}

.footer-social-icons .nav-link {
    font-size: 1.5rem;
    padding: 0 10px;
    color: #a9a9a9;
}

.footer-social-icons .nav-link:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    font-size: 0.9rem;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero.webp') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 6rem;
    color: white;
}

.hero .lead {
    font-size: 1.5rem;
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card img {
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
}

.philosophy-block .image-container {
    position: relative;
    padding: 15px;
    background: var(--primary-color);
    border-radius: 10px;
}

.philosophy-block img {
    border-radius: 5px;
}

.testimonial-card {
    background: var(--light-color);
    border-left: 5px solid var(--primary-color);
    padding: 30px;
}

.testimonial-card footer {
    font-weight: 700;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.page-header {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 5rem;
}

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline>li {
    margin-bottom: 20px;
    position: relative;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    padding: 20px;
    position: relative;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li .timeline-badge {
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: var(--primary-color);
    z-index: 100;
    border-radius: 50%;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-container {
    padding: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 10px;
}

.contact-info-container h3,
.contact-info-container h4 {
    color: white;
}

.contact-info-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-container .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.font-3 {
    font-size: 3rem;
}

.thanks {
    min-height: 100vh;
    background: var(--light-color);
}

.pt {
    padding-top: 150px;
}

.white {
    color: white;
}

.gray {
    color: #a9a9a9;
}

.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-hero.webp');
}

.contact {
    padding-top: 150px;
    background: #f4f4f4;
}

.services-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/services-hero.webp');
}

iframe {
    border: 0;
}