/* Seven Blue Wave Elegance - BuildPro Theme CSS */

:root {
    --primary-color: #022179;
    --primary-dark: #011755;
    --secondary-color: #dbbe6d;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    font-weight: 400;
    overflow-x: hidden;
    width: 100%;
}

/* Add padding to body when header is sticky to prevent content jump */
body.has-transparent-header {
    padding-top: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-12, .col-md-8, .col-md-4, .col-md-3, .col-md-9, .col-md-6, .col-sm-6 {
    padding: 0 15px;
}

.col-md-12 { width: 100%; }
.col-md-8 { width: 66.666667%; }
.col-md-9 { width: 75%; }
.col-md-6 { width: 50%; }
.col-md-4 { width: 33.333333%; }
.col-md-3 { width: 25%; }
.col-sm-6 { width: 50%; }

.col-md-offset-2 {
    margin-left: 16.666667%;
}

/* Hero Swiper içindeki col-md-8 col-md-offset-2 düzeltmesi */
.hero-swiper .col-md-8 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-swiper .col-md-offset-2 {
    margin-left: 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-light { color: #ffffff; }

/* Header & Navigation */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-header.sticky {
    position: fixed;
    background: linear-gradient(to bottom, #d4b665 0%, rgba(2, 33, 121, 0.03) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.navbar {
    padding: 20px 0;
    transition: padding 0.3s ease;
}

.main-header.sticky .navbar {
    padding: 13px 0;
}

.navbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.navbar-brand {
    margin-right: 0 !important;
}

.navbar-collapse {
    flex-grow: 0 !important;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0 !important;
    gap: 12px;
}

.navbar-logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand-text {
    display: block;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 60px;
        max-width: 200px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

.main-header.sticky .navbar-brand {
    color: var(--primary-color);
}

.main-header:not(.sticky) .navbar-brand {
    color: #ffffff;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-nav .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0 !important;
}

.main-header.sticky .navbar-nav .nav-link {
    color: var(--text-dark) !important;
}

.navbar-nav > li {
    position: relative;
}

.navbar-nav > li > a:not(.nav-link) {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

/* Navbar brand and nav text - default white for transparent header */
.main-header .navbar-brand,
.main-header .navbar-nav .nav-link,
.main-header .navbar-nav > li > a:not(.nav-link) {
    color: #ffffff;
}

/* Navbar text color when sticky - primary color for contrast */
.main-header.sticky .navbar-brand,
.main-header.sticky .navbar-nav .nav-link,
.main-header.sticky .navbar-nav > li > a:not(.nav-link) {
    color: #ffffff !important;
}

.navbar-nav .nav-link::after,
.navbar-nav > li > a:not(.nav-link)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

/* Hover and active states */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav > li > a:not(.nav-link):hover,
.navbar-nav > li > a:not(.nav-link).active {
    color: var(--secondary-color);
}

/* Override for sticky state hover */
.main-header.sticky .navbar-nav .nav-link:hover,
.main-header.sticky .navbar-nav .nav-link.active,
.main-header.sticky .navbar-nav > li > a:not(.nav-link):hover,
.main-header.sticky .navbar-nav > li > a:not(.nav-link).active {
    color: var(--primary-dark) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav > li > a:not(.nav-link):hover::after,
.navbar-nav > li > a:not(.nav-link).active::after {
    width: 100%;
}

/* Dropdown Menu */
.navbar-nav .has-dropdown {
    position: relative;
    z-index: 1001;
}

.has-dropdown > a,
.has-dropdown > .nav-link {
    position: relative;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    color: inherit;
}

.main-header.sticky .dropdown-arrow {
    color: var(--primary-color);
}

.has-dropdown:hover > a .dropdown-arrow,
.has-dropdown:hover > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown menu container - Desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    list-style: none;
    padding: 15px 0 8px 0;
    margin: 0;
    min-width: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1002;
    border-top: 3px solid var(--secondary-color);
    pointer-events: none;
    display: block;
}

/* Show dropdown on parent hover - Desktop */
.has-dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: all;
}

/* Keep dropdown open when hovering over it - Desktop */
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
    pointer-events: all;
}

/* Prevent underline on dropdown parent link when menu is open */
.has-dropdown:hover > a::after,
.has-dropdown:hover > .nav-link::after {
    width: 0;
}

/* Dropdown menu text color when header is transparent */
.main-header:not(.sticky) .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
}

.main-header:not(.sticky) .dropdown-menu a {
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: white;
    padding-left: 28px;
}

.main-header.sticky .dropdown-menu {
    border-top-color: var(--primary-color);
}

/* Desktop Dropdown - Ensure it works on larger screens */
@media (min-width: 992px) {
    .has-dropdown {
        position: relative;
    }
    
    .has-dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translateY(0);
        pointer-events: all;
    }
    
    .dropdown-menu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        transform: translateY(0);
        pointer-events: all;
    }
    
    /* Ensure dropdown stays connected to parent on hover */
    .has-dropdown:hover .dropdown-menu {
        transform: translateY(0);
    }
}

/* Primary Color Classes */
.id-color {
    color: var(--secondary-color) !important;
}

.bg-color {
    background-color: var(--primary-color) !important;
}

/* Tiny Border */
.tiny-border {
    position: relative;
    display: inline-block;
}

.tiny-border::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.btn-custom,
.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-custom:hover,
.btn-primary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-line-black {
    background: transparent;
    color: white;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-line-black:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-fx {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-fx::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-fx:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Section */
.hero-section-full {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Hero Swiper Styles */
.hero-swiper-section {
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    position: relative;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-swiper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 33, 121, 0.75) 0%, rgba(1, 23, 85, 0.65) 100%);
    z-index: 1;
}

.hero-swiper .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .text-light {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 80px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 33, 121, 0.75) 0%, rgba(1, 23, 85, 0.65) 100%);
    z-index: 1;
}

.hero-section-full .container {
    position: relative;
    z-index: 2;
}

.hero-section-full .text-light {
    position: relative;
    z-index: 3;
}

.center-y {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    width: 100%;
}

.hero-swiper .center-y {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.very-big {
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.h2_title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: #ffffff;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.text-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
    text-align: center;
}

.text-item {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    width: 100%;
    text-align: center;
}

.text-item.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.text-item.hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
}

.font13 {
    font-size: 1.3rem;
}

.spacer-double {
    height: 60px;
}

/* Mouse Scroll Indicator */
.scroll-to {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll {
    display: block;
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Projects Carousel */
.projects-carousel-section {
    padding: 0;
    background: linear-gradient(to bottom, #d4b665 0%, rgba(2, 33, 121, 0.03) 100%);
    position: relative;
    display: block;
    visibility: visible;
}

.owl-custom-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.owl-custom-nav .btn-next,
.owl-custom-nav .btn-prev {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-dark);
    font-size: 18px;
}

.owl-custom-nav .btn-next:hover,
.owl-custom-nav .btn-prev:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.owl-custom-nav .btn-next {
    right: 20px;
}

.owl-custom-nav .btn-prev {
    left: 20px;
}

.projects-grid.carousel-style-2,
.owl-slide.carousel-style-2 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0;
    width: 100%;
    padding: 80px 0;
    visibility: visible !important;
}

@media (max-width: 1200px) {
    .projects-grid.carousel-style-2,
    .owl-slide.carousel-style-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .projects-grid.carousel-style-2,
    .owl-slide.carousel-style-2 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 0;
    }
}

/* Modern Project Card */
.project-card-modern {
    background: var(--bg-white) !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 33, 121, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column;
    height: 100%;
    visibility: visible !important;
    opacity: 1 !important;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(2, 33, 121, 0.2);
}

.project-card-image {
    position: relative;
    width: 100% !important;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: block !important;
}

.project-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
}

.project-card-modern:hover .project-card-image img {
    transform: scale(1.15);
}

.project-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 33, 121, 0.85) 0%, rgba(219, 190, 109, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-card-modern:hover .project-overlay-modern {
    opacity: 1;
}

.project-overlay-modern::after {
    content: 'Detayları Gör';
    font-size: 1rem;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 2px solid white;
    transform: scale(0.9);
    transition: all 0.3s ease;
    display: inline-block;
}

.project-card-modern:hover .project-overlay-modern::after {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.2);
}

.project-card-content {
    padding: 30px !important;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    background: var(--bg-white);
    min-height: 150px;
}

.project-card-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.project-card-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.project-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-card-title a:hover {
    color: var(--secondary-color);
}

.project-card-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    font-size: 0.95rem;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.project-card-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.project-card-link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.project-card-link:hover::after {
    transform: translateX(5px);
}

/* Legacy support - eski stiller */
.carousel-item {
    padding: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.picframe {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%;
    background: #f0f0f0;
}

.picframe img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.picframe > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
}

.overlay-v {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(219, 190, 109, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.picframe:hover .overlay-v {
    opacity: 1;
}

.picframe:hover img {
    transform: scale(1.1);
}

.pf_text {
    display: block;
    padding: 20px 0;
    text-align: center;
}

.project-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    margin: 0;
}

.about-section .hstack {
    align-items: flex-start;
}

.tiny-border {
    color: var(--secondary-color);
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.de_count {
    text-align: center;
    padding: 30px 0;
}

.de_count h3.timer {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.de_count span {
    font-size: 0.95rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(219, 190, 109, 0.95) 100%) !important;
    background-color: var(--secondary-color) !important;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.feature-box-small-icon {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.feature-box-small-icon .icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-box-small-icon .text {
    flex: 1;
}

.feature-box-small-icon .text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-box-small-icon .text p {
    font-size: 0.9rem;
    color: var(--primary-dark);
    line-height: 1.7;
    margin: 0;
}

.icon_check {
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.call-to-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-to-action h3 {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.mt10 {
    margin-top: 10px;
}

/* Footer */
.main-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
}

.page-header-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Category Filter */
.category-filter {
    padding: 40px 0;
    background: linear-gradient(to bottom, rgba(2, 33, 121, 0.05) 0%, var(--bg-white) 100%);
    border-bottom: 2px solid var(--secondary-color);
}

.filter-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 15px 30px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
}

.filter-tab:hover,
.filter-tab.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

/* Projects List */
.projects-list {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-white) 0%, rgba(2, 33, 121, 0.02) 100%);
}

.projects-list .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .projects-list .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-list .projects-grid {
        grid-template-columns: 1fr;
    }
}

.projects-list .project-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(2, 33, 121, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.projects-list .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(2, 33, 121, 0.2);
}

.projects-list .project-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.projects-list .project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.projects-list .project-card:hover .project-image img {
    transform: scale(1.15);
}

.projects-list .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 33, 121, 0.85) 0%, rgba(219, 190, 109, 0.85) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-list .project-card:hover .project-overlay {
    opacity: 1;
}

.projects-list .project-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
}

.projects-list .project-category {
    display: inline-block;
    padding: 6px 14px;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.projects-list .project-title {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

.projects-list .project-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px 0;
    flex: 1;
    font-size: 0.95rem;
}

.projects-list .project-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.projects-list .project-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.no-projects {
    text-align: center;
    padding: 100px 0;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Project Detail */
.project-detail-page {
    overflow-x: hidden;
    width: 100%;
}

.project-detail-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #022179 0%, #011755 50%, #011040 100%);
    position: relative;
    overflow: hidden;
}

.project-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 33, 121, 0.85) 0%, rgba(1, 23, 85, 0.8) 50%, rgba(1, 16, 64, 0.85) 100%);
    z-index: 1;
}

.project-detail-header .container {
    position: relative;
    z-index: 2;
}

.project-detail-header .project-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    display: block;
}

.project-detail-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
}

.project-excerpt {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.project-image-section {
    padding: 80px 0;
}

.project-main-image {
    border-radius: 0;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.project-main-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.project-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.project-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Project PDF Section */
.project-pdf-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.project-pdf-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pdf-viewer-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pdf-viewer-wrapper {
    position: relative;
    background: #2c2c2c;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-viewer-modern {
    flex: 1;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    min-height: 700px;
}

.pdf-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.pdf-page canvas {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background: white;
    display: block;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.pdf-page:hover canvas {
    transform: scale(1.01);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pdf-toolbar-floating {
    position: sticky;
    top: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pdf-controls-group {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(64, 64, 64, 0.6);
    padding: 6px 12px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.pdf-btn-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 36px;
    height: 36px;
}

.pdf-btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.pdf-btn-icon:active {
    transform: translateY(0);
}

.pdf-btn-icon.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.pdf-btn-icon svg {
    width: 18px;
    height: 18px;
}

.pdf-page-info,
.pdf-zoom-info {
    color: white;
    font-size: 13px;
    padding: 0 8px;
    min-width: 70px;
    text-align: center;
    font-weight: 500;
}

.pdf-viewer {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

.pdf-actions {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.pdf-actions .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.pdf-actions .btn-primary {
    background: var(--primary-color);
    color: white;
}

.pdf-actions .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 33, 121, 0.3);
}

.pdf-actions .btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.pdf-actions .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .pdf-viewer-wrapper {
        min-height: 600px;
    }
    
    .pdf-viewer-modern {
        min-height: 500px;
        padding: 10px;
    }
    
    .pdf-toolbar-floating {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .pdf-controls-group {
        padding: 4px 8px;
        gap: 6px;
    }
    
    .pdf-btn-icon {
        padding: 6px 10px;
        min-width: 32px;
        height: 32px;
    }
    
    .pdf-btn-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .pdf-page-info,
    .pdf-zoom-info {
        font-size: 11px;
        padding: 0 5px;
        min-width: 55px;
    }
    
    .pdf-actions {
        flex-direction: column;
    }
    
    .pdf-actions .btn {
        width: 100%;
    }
    
    .project-pdf-section h2 {
        font-size: 2rem;
    }
}

.related-projects {
    padding: 80px 0;
    background: var(--bg-light);
}

.related-projects h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
    font-weight: 700;
}

.related-projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .related-projects .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-projects .projects-grid {
        grid-template-columns: 1fr;
    }
}

.related-projects .project-card {
    background: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.related-projects .project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-projects .project-image {
    position: relative;
    overflow: hidden;
    padding-bottom: 75%;
    background: #f0f0f0;
    width: 100%;
}

.related-projects .project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    max-width: 100%;
}

.related-projects .project-card:hover .project-image img {
    transform: scale(1.1);
}

.related-projects .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(219, 190, 109, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.related-projects .project-overlay .btn {
    position: relative;
    z-index: 3;
}

.related-projects .project-card:hover .project-overlay {
    opacity: 1;
}

.related-projects .project-info {
    padding: 25px;
}

.related-projects .project-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.project-cta {
    padding: 80px 0;
    text-align: center;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    flex-shrink: 0;
    color: var(--secondary-color);
}

.info-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.info-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1rem;
}

.info-content a:hover {
    text-decoration: underline;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 25px;
    background: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 0;
    transition: background 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.alert {
    padding: 20px;
    border-radius: 0;
    margin-bottom: 30px;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

/* Error Page */
.error-page {
    min-height: 60vh;
}

.error-section {
    padding: 120px 0;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.error-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .very-big {
        font-size: 3.5rem;
    }
    
    .h2_title {
        font-size: 2rem;
    }
    
    .col-md-8 { width: 100%; }
    .col-md-9 { width: 100%; }
    .col-md-6 { width: 100%; }
    .col-md-4 { width: 100%; }
    .col-md-3 { width: 100%; }
    .col-md-offset-2 { margin-left: 0; }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .call-to-action {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Hamburger Menu Button */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 8px 12px;
    cursor: pointer;
    display: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -10px;
}

.navbar-toggler-icon::after {
    bottom: -10px;
}

.main-header.sticky .navbar-toggler-icon,
.main-header.sticky .navbar-toggler-icon::before,
.main-header.sticky .navbar-toggler-icon::after {
    background-color: var(--primary-color);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        padding: 20px;
        margin-top: 10px;
        border-radius: 8px;
        z-index: 1000;
    }
    
    .main-header:not(.sticky) .navbar-collapse {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .main-header:not(.sticky) .navbar-nav .nav-item {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        display: block;
        padding: 15px 0 !important;
        color: var(--text-dark);
        width: 100%;
    }
    
    .main-header:not(.sticky) .navbar-nav .nav-link {
        color: #ffffff;
    }
    
    /* Mobile Dropdown */
    .has-dropdown {
        position: relative;
    }
    
    .has-dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: transparent;
        display: none !important;
        min-width: auto;
        border-top: none;
        pointer-events: all;
        top: auto !important;
        left: auto !important;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block !important;
        margin-top: 0;
        padding-left: 20px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .main-header:not(.sticky) .dropdown-menu li {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu a {
        padding: 12px 0;
       
        font-size: 0.9rem;
    }
    
    .main-header:not(.sticky) .dropdown-menu a {
        color: rgba(255, 255, 255);
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        padding-left: 10px;
        color: var(--primary-color);
    }
    
    .main-header:not(.sticky) .dropdown-menu a:hover {
        color: var(--secondary-color);
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 0;
        font-size: 0.9rem;
    }
    
    .very-big {
        font-size: 2.5rem;
    }
    
    .h2_title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .error-content h1 {
        font-size: 5rem;
    }
    
    .error-content h2 {
        font-size: 2rem;
    }
}

