/* Mavi Arka Plan Bölümü */

.elementor-section {
    position: relative;
    padding: 120px 0px;
}

.elementor-section:before {
    border: unset;
    border-radius: inherit;
    background: var(--text-primary, #008aff) !important;
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0 !important;
    transform: translateZ(0px);
}

.elementor-element {
    --widgets-spacing: 20px 20px;
    --widgets-spacing-row: 20px;
    --widgets-spacing-column: 20px;
    --flex-direction: initial;
    --flex-wrap: initial;
    --justify-content: initial;
    --align-items: initial;
    --align-content: initial;
    --gap: initial;
    --flex-basis: initial;
    --flex-grow: initial;
    --flex-shrink: initial;
    --order: initial;
    --align-self: initial;
    position: relative;
    z-index: 1;
}

:root {
    --text-primary: #008aff;
}


/* Hero Section */

.hero-section {
    position: relative;
    padding: 120px 0;
    background: var(--text-primary);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}


/* Particles.js Container */

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}


/* Hero Content - Particles üzerinde görünmesi için */

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    position: relative;
}

.hero-buttons {
    margin-top: 2rem;
    position: relative;
}

.hero-buttons .btn {
    margin-right: 1rem;
    padding: 0.8rem 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}


/* Swiper Styles */

.swiper {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


/* Responsive */

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 150px;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1rem;
        margin: 0 auto 2rem auto;
    }

    .swiper {
        height: 300px;
        margin-top: 2rem;
    }
}


/* Navbar Styles */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.img {
    width: 100px;
    /* Logo boyutu */
    margin-bottom: 20px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}


/* Dropdown Menu Styles */

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 98, 204, 0.1);
    color: var(--text-primary);
}


/* Mobile Menu Styles */

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
    }

    .navbar-nav {
        padding: 10px 0;
    }

    .nav-item {
        margin: 5px 0;
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 0;
    }

    .dropdown-item {
        padding: 8px 15px;
    }

    .contact-info {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
}


/* Contact Info Styles */

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--text-primary);
}

.contact-info i {
    margin-right: 8px;
    color: var(--text-primary);
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-value {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* Features Section */

.features-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8f9fa;
    transform: skewY(-2deg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 138, 255, 0.1);
    color: var(--text-primary);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}


/* Swiper Navigation */

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-primary) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--text-primary) !important;
    transform: scale(1.2);
}


/* SEO Section */

.seo-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8f9fa;
    transform: skewY(-2deg);
}

.section-icon {
    font-size: 2.5rem;
    color: var(--text-primary);
    animation: pulse 2s infinite;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
    background: rgba(0, 138, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
}

.section-subtitle i {
    color: #FFD700;
    margin-right: 8px;
}

.section-title {
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
}

.title-accent {
    font-size: 2.5rem;
    position: absolute;
    margin-left: 10px;
    animation: float 3s ease-in-out infinite;
}

.highlight {
    position: relative;
    color: var(--text-primary);
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(0, 138, 255, 0.2), rgba(0, 138, 255, 0.4));
    z-index: -1;
    transform: skewX(-15deg);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.text-primary {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.seo-stats {
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-text {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.seo-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: rgba(0, 138, 255, 0.1);
    border-radius: 30px;
}

.seo-link:hover {
    transform: translateX(10px);
    color: var(--text-primary);
    background: rgba(0, 138, 255, 0.15);
}

.seo-link i {
    transition: all 0.3s ease;
}

.seo-link:hover i {
    transform: translateX(5px);
}

.seo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.seo-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.seo-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 138, 255, 0.1);
    border-radius: 15px;
    font-size: 1.8rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.seo-feature-item:hover .feature-icon {
    transform: rotate(360deg);
    background: var(--text-primary);
    color: white;
}

.seo-feature-item .feature-content {
    flex: 1;
}

.seo-feature-item .feature-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.seo-feature-item .feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
}

.progress {
    height: 6px;
    background-color: rgba(0, 138, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: width 1.5s ease;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.floating-badge span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }

    .seo-image {
        margin-top: 3rem;
    }

    .seo-feature-item {
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .seo-feature-item .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .seo-feature-item .feature-content h4 {
        font-size: 1.1rem;
    }

    .floating-badge {
        padding: 8px 16px;
    }
}


/* Service Sections Common Styles */

.wordpress-section,
.digital-marketing-section,
.apps-section,
.erp-section,
.ecommerce-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.wordpress-section::before,
.digital-marketing-section::before,
.apps-section::before,
.erp-section::before,
.ecommerce-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: skewY(-2deg);
}


/* WordPress Section Specific */

.wordpress-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wordpress-section .section-icon i {
    color: #21759b;
}


/* Digital Marketing Section Specific */

.digital-marketing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.digital-marketing-section .section-icon i {
    color: #ff6b6b;
}


/* Apps Section Specific */

.apps-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.apps-section .section-icon i {
    color: #4c6ef5;
}


/* ERP Section Specific */

.erp-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.erp-section .section-icon i {
    color: #6c5ce7;
}

.erp-section .service-feature-item .feature-icon {
    background: rgba(108, 92, 231, 0.1);
    color: #6c5ce7;
}

.erp-section .service-feature-item:hover .feature-icon {
    background: #6c5ce7;
    color: white;
}

.erp-section .progress-bar {
    background-color: #6c5ce7;
}

.erp-section .floating-badge {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f50e3 100%);
}


/* E-commerce Section Specific */

.ecommerce-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ecommerce-section .section-icon i {
    color: #00b894;
}

.ecommerce-section .service-feature-item .feature-icon {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.ecommerce-section .service-feature-item:hover .feature-icon {
    background: #00b894;
    color: white;
}

.ecommerce-section .progress-bar {
    background-color: #00b894;
}

.ecommerce-section .floating-badge {
    background: linear-gradient(135deg, #00b894 0%, #00a885 100%);
}


/* Service Feature Items */

.service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.wordpress-section .service-feature-item .feature-icon {
    background: rgba(33, 117, 155, 0.1);
    color: #21759b;
}

.digital-marketing-section .service-feature-item .feature-icon {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.apps-section .service-feature-item .feature-icon {
    background: rgba(76, 110, 245, 0.1);
    color: #4c6ef5;
}

.service-feature-item:hover .feature-icon {
    transform: rotate(360deg);
    color: white;
}

.wordpress-section .service-feature-item:hover .feature-icon {
    background: #21759b;
}

.digital-marketing-section .service-feature-item:hover .feature-icon {
    background: #ff6b6b;
}

.apps-section .service-feature-item:hover .feature-icon {
    background: #4c6ef5;
}

.service-feature-item .feature-content {
    flex: 1;
}

.service-feature-item .feature-content h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-feature-item .feature-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
}


/* Progress Bars */

.wordpress-section .progress-bar {
    background-color: #21759b;
}

.digital-marketing-section .progress-bar {
    background-color: #ff6b6b;
}

.apps-section .progress-bar {
    background-color: #4c6ef5;
}


/* Service Images */

.service-image {
    position: relative;
}

.service-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.service-image .image-wrapper:hover img {
    transform: scale(1.02);
}


/* Floating Badges */

.wordpress-section .floating-badge {
    background: linear-gradient(135deg, #21759b 0%, #1e6887 100%);
    color: white;
}

.digital-marketing-section .floating-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
}

.apps-section .floating-badge {
    background: linear-gradient(135deg, #4c6ef5 0%, #4263eb 100%);
    color: white;
}

.floating-badge i,
.floating-badge span {
    color: white;
}


/* Responsive Adjustments */

@media (max-width: 992px) {

    .wordpress-section,
    .digital-marketing-section,
    .apps-section,
    .erp-section,
    .ecommerce-section {
        padding: 80px 0;
    }

    .service-image {
        margin-top: 3rem;
    }

    .service-feature-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .service-feature-item .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-feature-item .feature-content h4 {
        font-size: 1.1rem;
    }

    .floating-badge {
        padding: 8px 16px;
    }
}


/* Meeting Section Styles */

.meeting-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.meeting-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: skewY(-2deg);
}

.meeting-content .section-icon {
    color: var(--text-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.meeting-content .section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.meeting-content .section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.meeting-features {
    margin: 2rem 0;
}

.meeting-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.meeting-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.meeting-feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.meeting-feature-item span {
    color: #333;
    font-weight: 500;
}

.meeting-btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: var(--text-primary);
    border: none;
}

.meeting-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 138, 255, 0.3);
}

.meeting-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.meeting-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.meeting-image .image-wrapper:hover img {
    transform: scale(1.02);
}

.meeting-image .floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.meeting-image .floating-badge i {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.meeting-image .floating-badge span {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .meeting-section {
        padding: 80px 0;
    }

    .meeting-content .section-title {
        font-size: 2.5rem;
    }

    .meeting-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .meeting-content .section-title {
        font-size: 2rem;
    }

    .meeting-feature-item {
        padding: 0.8rem;
    }

    .meeting-btn {
        width: 100%;
    }
}


/* Footer Section */

.footer-section {
    background: #f8f9fa;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8f9fa;
    transform: skewY(-2deg);
}

.footer-content {
    margin-bottom: 30px;
}

.footer-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-buttons .btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-buttons .btn i {
    font-size: 1.2rem;
}

.btn-meeting {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-meeting:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 138, 255, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-products {
    background: #17a2b8;
    color: white;
    border: none;
}

.btn-products:hover {
    background: #138496;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.2);
}

.social-links {
    margin-top: 30px;
}

.social-links span {
    display: block;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons .instagram {
    background: #E1306C;
}

.social-icons .linkedin {
    background: #0077B5;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .footer-section {
        padding: 60px 0 30px;
    }

    .footer-buttons {
        flex-direction: column;
    }

    .footer-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-links {
        text-align: center;
    }

    .footer-links ul li a {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .social-links span {
        text-align: center;
    }
}

/* About Section Styles */

.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: skewY(-2deg);
}

.about-features {
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-feature-item i {
    color: var(--text-primary);
    font-size: 1.2rem;
}

.about-feature-item span {
    color: #333;
    font-weight: 500;
}


/* References Section Styles */

.references-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.reference-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}


/* Team Section Styles */

.team-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 0;
    position: relative;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
}

.member-info .position {
    color: var(--text-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.member-info .social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.member-info .social-links .linkedin {
    background: #0077B5;
}

.member-info .social-links .instagram {
    background: #E1306C;
}

.member-info .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {

    .about-section,
    .references-section,
    .team-section {
        padding: 80px 0;
    }

    .reference-item {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .about-feature-item {
        padding: 0.8rem;
    }

    .reference-item {
        height: 100px;
    }

    .member-image img {
        height: 250px;
    }
}


/* Blog Page Styles */

.blog-header {
    background: linear-gradient(135deg, #0062cc 0%, #004999 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.blog-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding: 30px 15px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background: #f8f9fa;
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    z-index: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.blog-meta i {
    color: var(--text-primary);
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--text-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    padding: 10px 0;
    margin-top: auto;
    transition: color 0.3s ease;
}

.blog-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}


/* Blog Page Responsive Styles */

@media (max-width: 992px) {
    .blog-header {
        padding: 100px 0 50px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 80px 0 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 15px;
    }

    .blog-card {
        max-width: 100%;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1.2rem;
    }
}


/* Contact Page Styles */

.contact-header {
    background: linear-gradient(135deg, #0062cc 0%, #004999 100%);
    padding: 120px 0 80px;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
    transform: translateZ(0);
}

.contact-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='rgba(255,255,255,0.1)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    animation: animateBackground 20s linear infinite;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.contact-header .lead {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    margin-bottom: 30px;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 98, 204, 0.05), rgba(0, 73, 153, 0.05));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: 0;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 98, 204, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0062cc 0%, #004999 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.contact-info-card .icon i {
    font-size: 35px;
    color: #fff;
    transition: all 0.4s ease;
}

.contact-info-card:hover .icon i {
    transform: rotate(-5deg);
}

.contact-detail {
    background: rgba(0, 98, 204, 0.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 98, 204, 0.1);
}

.contact-detail:hover {
    background: rgba(0, 98, 204, 0.1);
    transform: translateX(5px);
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.contact-value a {
    color: #0062cc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-value a:hover {
    color: #004999;
    transform: translateX(5px);
}

@keyframes animateBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .contact-header {
        padding: 100px 0 60px;
    }

    .contact-header h1 {
        font-size: 2.8rem;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 80px 0 40px;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }

    .contact-info-card .icon {
        width: 60px;
        height: 60px;
    }

    .contact-info-card .icon i {
        font-size: 28px;
    }
}

/* --- Home Page Styles --- */

/* Particles.js Styles */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(45deg, #0062cc, #0095ff);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-buttons .btn {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-buttons .btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: #0062cc;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn i {
    font-size: 1.2em;
    vertical-align: middle;
    margin-top: -2px;
}

/* Modal Styles */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
}

.modal-header {
    padding: 20px 30px;
}

.modal-title {
    font-weight: 600;
    color: #0062cc;
}

.btn-close {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 50%;
}

/* Hero Stats Styles */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.stat-card:hover::before {
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Hero Features Styles */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 12px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-tag:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-tag i {
    color: #4CAF50;
    font-size: 16px;
}

.feature-tag span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .feature-tag {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary), #0062cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 10px 20px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0062cc;
}

@media (max-width: 991px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
    }

    .dropdown-item {
        padding: 10px 30px;
        color: #333;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #333;
    }
}


/* --- About Page Styles --- */

.references-section {
    background: #f8f9fa;
}

.reference-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reference-image {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
}

.reference-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 98, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-content {
    padding: 20px;
    position: relative;
}

.project-status {
    margin-bottom: 15px;
}

.status-badge {
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.status-badge.active {
    background: #e1f5fe;
    color: #0288d1;
}

.status-badge.completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-badge.progress {
    background: #fff3e0;
    color: #ef6c00;
}

.reference-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.reference-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.reference-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.project-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.project-cta h3 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.project-cta .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.project-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

@media (max-width: 768px) {
    .reference-content h4 {
        font-size: 1.1rem;
    }

    .reference-content p {
        font-size: 0.85rem;
    }

    .project-cta {
        padding: 30px;
    }

    .project-cta h3 {
        font-size: 1.5rem;
    }

    .project-cta p {
        font-size: 1rem;
    }
}


.reference-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reference-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.reference-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 98, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.reference-item:hover .reference-overlay {
    opacity: 1;
}

.reference-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.reference-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.reference-info p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .reference-content img {
        height: 150px;
    }

    .reference-info h4 {
        font-size: 1rem;
    }

    .reference-info p {
        font-size: 0.8rem;
    }
}

.mission-vision-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-icon i {
    font-size: 24px;
    color: white;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.mv-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.mv-list li i {
    color: var(--text-primary);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .mv-card {
        padding: 20px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
    }

    .mv-icon i {
        font-size: 20px;
    }

    .mv-card h3 {
        font-size: 1.3rem;
    }

    .mv-card p {
        font-size: 0.9rem;
    }
}

.about-content {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
}

.about-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    color: white;
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    border-left: 4px solid var(--text-primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 18px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}

/* Yeni Ekip Kartı Stilleri */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    color: white;
    border-radius: 20px;
    font-weight: 500;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-card-header {
    position: relative;
}

.member-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.member-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-card-body {
    padding: 20px;
    text-align: center;
}

.team-card-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.team-card-body .position {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    color: white;
}

@media (max-width: 768px) {
    .member-image {
        height: 180px;
    }

    .team-card-body {
        padding: 15px;
    }

    .team-card-body h3 {
        font-size: 1.1rem;
    }

    .team-card-body .position {
        font-size: 0.85rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary), #0062cc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* --- Blog Page Styles --- */

.featured-blog {
    background-color: #f8f9fa;
}

.featured-post {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-badge i {
    color: #ffd700;
}

.featured-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
}

.blog-meta i {
    color: var(--text-primary);
}

.blog-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 992px) {
    .featured-image {
        min-height: 300px;
    }

    .featured-title {
        font-size: 1.75rem;
    }
}

.blog-categories {
    background: linear-gradient(to right, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9));
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-categories::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
}

.category-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: #fff;
    color: #666;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.category-btn span {
    position: relative;
    z-index: 2;
}

.category-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.category-btn:hover::before {
    opacity: 1;
}

.category-btn.active {
    background: linear-gradient(45deg, var(--text-primary), #0062cc);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

@media (max-width: 768px) {
    .categories-wrapper {
        gap: 8px;
    }

    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.blog-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 60px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%230066cc' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 98, 204, 0.1);
    color: var(--text-primary);
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.header-badge i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.blog-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary), #0062cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-description {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-item i {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 5px 0;
}

.stat-text {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .blog-header {
        padding: 80px 0 40px;
    }

    .blog-header h1 {
        font-size: 3rem;
    }

    .header-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .header-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        min-width: 120px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }

    .header-badge {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}


/* --- Contact Page Styles --- */

/* Hero Section Styles */
.contact-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(45deg, rgba(0, 98, 204, 0.9), rgba(0, 98, 204, 0.7)), url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-badge i {
    margin-right: 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.feature-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Contact Info Cards Styles */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 30px;
    color: white;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-detail {
    margin-bottom: 15px;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.whatsapp-link {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-link:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-control,
.form-select {
    border: 2px solid #eee;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 98, 204, 0.25);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 98, 204, 0.3);
}

/* Map Styles */
.map-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.map-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.map-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.map-header p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        padding: 20px;
    }
}

:root {
    --primary-color: #0062cc;
    --secondary-color: #0095ff;
    --text-dark: #333;
    --text-muted: #666;
}



/* --- Project Card Styles (Dynamic Portfolio) --- */

/* Hover Dropdown Logic for Desktop */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Ensure the toggle arrow is close to the text */
.nav-item.dropdown .dropdown-toggle {
    margin-left: -5px;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    /* Fixed height for consistency */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 98, 204, 0.9);
    /* Primary color overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay .btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 30px;
}

.project-card:hover .project-overlay .btn {
    transform: translateY(0);
}

.project-content {
    padding: 25px;
    text-align: left;
}

.project-category {
    font-size: 0.85rem;
    color: #0062cc;
    /* Primary color */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.project-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.project-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    /* Limit description to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}