/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Merraki
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]

1. Body
2. Header
3. Banner Section
4. Services Section
5. About us  Section
6. Our percess Section
7. Success Section
8. What's new Section
9. Testimonials Section
10. Work with us Section
11. Blog Section
12. Footer Section
*/


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700&family=Knul:wght@400;500;600;700&display=swap');


:root {
    --e-global-color-primary: #ffffff;
    --e-global-color-secondary: #fb8427;
    --e-global-color-text: #a7a7a7;
    --e-global-color-accent: #fb8427;
    --e-global-color-very-dark-mostly-black-blue: #222224;
    --e-global-color-very-dark-grayish-blue: #5c5c5e;
    --e-global-color-very-dark-gray: #464646;
    --e-global-color-white: #ffffff;
    --e-global-color-black: #000000;
}

body {
    font-family: 'Knul', 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Page loaded state */
body.page-loaded {
    overflow-x: hidden;
}

/* Preloader active state */
body.preloader-active {
    overflow: hidden;
}

/* ================================
   MODERN PRELOADER DESIGN
   ================================ */

.modern-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(34, 34, 36, 0.98) 0%,
            rgba(34, 34, 36, 0.95) 50%,
            rgba(34, 34, 36, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Preloader Logo */
.preloader-logo {
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.preloader-logo-img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Modern Spinner */
.preloader-spinner {
    position: relative;
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spinnerRotate 2s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--e-global-color-accent);
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    border-right-color: rgba(225, 178, 97, 0.6);
    animation-delay: -0.5s;
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: rgba(225, 178, 97, 0.3);
    animation-delay: -1s;
    animation-duration: 3s;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Loading Text */
.preloader-text {
    margin-bottom: 30px;
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--e-global-color-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Loading Dots Animation */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots .dot {
    width: 8px;
    height: 8px;
    background: var(--e-global-color-accent);
    border-radius: 50%;
    animation: dotBounce 1.4s infinite ease-in-out;
}

.loading-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots .dot:nth-child(3) {
    animation-delay: 0s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Progress Bar */
.preloader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg,
            var(--e-global-color-accent) 0%,
            rgba(225, 178, 97, 0.8) 50%,
            var(--e-global-color-accent) 100%);
    border-radius: 2px;
    width: 0%;
    animation: progressLoad 3s cubic-bezier(0.25, 0.8, 0.25, 1) infinite;
    box-shadow: 0 0 10px rgba(225, 178, 97, 0.5);
}

@keyframes progressLoad {
    0% {
        width: 0%;
        transform: translateX(-100%);
    }

    50% {
        width: 100%;
        transform: translateX(0%);
    }

    100% {
        width: 100%;
        transform: translateX(100%);
    }
}

/* Background Animation Shapes */
.preloader-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg,
            rgba(225, 178, 97, 0.1) 0%,
            rgba(225, 178, 97, 0.05) 100%);
    animation: shapeFloat 6s ease-in-out infinite;
}

.bg-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shape.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.bg-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }

    33% {
        transform: translateY(-20px) rotate(120deg) scale(1.1);
        opacity: 0.6;
    }

    66% {
        transform: translateY(10px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Preloader Exit Animation */
.modern-preloader.exit-animation {
    animation: preloaderExit 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes preloaderExit {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    70% {
        opacity: 0.3;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
        visibility: hidden;
    }
}

/* Preloader Responsive */
@media screen and (max-width: 768px) {
    .preloader-logo-img {
        max-width: 100px;
    }

    .preloader-spinner {
        width: 60px;
        height: 60px;
        margin-bottom: 25px;
    }

    .loading-text {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .preloader-progress {
        width: 150px;
        height: 3px;
    }

    .bg-shape {
        opacity: 0.5;
    }

    .bg-shape.shape-1 {
        width: 120px;
        height: 120px;
    }

    .bg-shape.shape-2 {
        width: 100px;
        height: 100px;
    }

    .bg-shape.shape-3 {
        width: 80px;
        height: 80px;
    }
}

.h1,
h1 {
    font-size: 76px;
    line-height: 80px;
    font-weight: 600;
    color: var(--e-global-color-primary);
}

.h2,
h2 {
    font-size: 46px;
    line-height: 58px;
    font-weight: 600;
    color: var(--e-global-color-primary);
}

.h3,
h3 {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}

.h4,
h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.h5,
h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.h6,
h6 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    letter-spacing: 2.0px;
    word-spacing: 1.2px;
    color: var(--e-global-color-secondary);
}

p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.text-size-18 {
    font-size: 18px;
    line-height: 26px;
}

.text-size-16 {
    font-size: 16px;
    line-height: 24px;
}

.text-size-14 {
    font-size: 14px;
    line-height: 26px;
}

/* Home Page Style */

.banner_outer {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner_outer .light-image {
    position: absolute;
    top: 0;
    left: 28px;
}

/* Modern Header Design */
.banner_outer .header {
    padding: 0 216px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(34, 34, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(0);
}

/* Header gizlenme animasyonu */
.banner_outer .header.hidden {
    transform: translateY(-100%);
}

.banner_outer .header.scrolled {
    background: rgba(20, 20, 22, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border-bottom: 3px solid rgba(225, 178, 97, 0.6);
    z-index: 999999999999999999!important;
}

.banner_outer .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(225, 178, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.banner_outer .header.scrolled::before {
    opacity: 1;
}

/* Modern Header Loading Animation */
@keyframes headerSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner_outer .header {
    animation: headerSlideDown 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Modern Navigation Item Stagger Animation */
@keyframes navItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .nav-item {
    animation: navItemFadeIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.navbar-nav .nav-item:nth-child(1) {
    animation-delay: 0.1s;
}

.navbar-nav .nav-item:nth-child(2) {
    animation-delay: 0.2s;
}

.navbar-nav .nav-item:nth-child(3) {
    animation-delay: 0.3s;
}

.navbar-nav .nav-item:nth-child(4) {
    animation-delay: 0.4s;
}

.navbar-nav .nav-item:nth-child(5) {
    animation-delay: 0.5s;
}

.navbar-nav .nav-item:nth-child(6) {
    animation-delay: 0.6s;
}

.navbar-collapse ul {
    align-items: center;
    display: inherit;
}

/* Modern Navigation Links */
.navbar-nav .nav-item a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    position: relative;
    color: var(--e-global-color-white) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 12px 16px !important;
    border-radius: 8px;
    margin: 0 4px;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.navbar-nav .nav-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* Modern Hover Effects */
.navbar-nav .nav-item a:hover {
    color: var(--e-global-color-accent) !important;
    background: rgba(225, 178, 97, 0.15);
    border-color: rgba(225, 178, 97, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 178, 97, 0.2);
}

.navbar-nav .nav-item a:hover::before {
    opacity: 1;
}

.navbar-nav .dropdown li:hover>a:before {
    display: none;
}

.navbar-nav li:last-child:hover>a:before {
    display: none;
}

/* Modern Active State */
.navbar-nav .active>a {
    color: var(--e-global-color-accent) !important;
    background: rgba(225, 178, 97, 0.2);
    border-color: rgba(225, 178, 97, 0.4);
    box-shadow: 0 4px 12px rgba(225, 178, 97, 0.3);
}

.navbar-nav .active>a::before {
    opacity: 1;
}

.navbar-nav li:last-child.active>a:before {
    display: none;
}

.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Modern Navbar Design */
.navbar {
    position: relative;
    padding: 20px 0;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar.scrolled {
    padding: 15px 0;
}

/* Modern Logo Design */
.navbar-brand {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: all 0.3s ease;
    z-index: 10001;
    position: relative;
}

.navbar-brand .banner-logo {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.navbar-brand .banner-logo img {
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    width: 200px;
}

.navbar-nav li {
    margin: 0 24px;
}

.navbar-nav {
    padding-left: 215px;
    margin-top: -6px;
}

.navbar-nav li:first-child {
    margin-left: 0;
}

.navbar-nav li:last-child {
    margin-right: 0px;
    padding-right: 0;
}

/* Modern Contact Button */
.navbar-nav .contact_us {
    margin-left: 85px;
    margin-top: 0;
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 600 !important;
    margin-right: 16px;
    color: var(--e-global-color-white) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-nav .contact-button:hover .contact_us {
    color: var(--e-global-color-accent) !important;
}

.navbar-nav .contact-button .image-button {
    display: inline-block;
}

/* Modern Contact Arrow Button */
.navbar-nav .contact-button .arrow {
    position: relative;
    background: linear-gradient(135deg, var(--e-global-color-accent) 0%, rgba(225, 178, 97, 0.8) 100%);
    width: 55px;
    height: 55px;
    line-height: 51px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    top: -2px;
    right: 0;
    left: 0;
    margin: auto;
    box-shadow: 0 4px 15px rgba(225, 178, 97, 0.4);
    backdrop-filter: blur(10px);
}

.navbar-nav .contact-button .arrow img {
    filter: brightness(0) invert(1);
    transition: all 0.3s ease-in-out;
}

.navbar-nav .contact-button:hover .arrow {
    background: rgba(225, 178, 97, 0.1);
    border-color: var(--e-global-color-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 178, 97, 0.6);
}

.navbar-nav .contact-button:hover .arrow img {
    filter: none;
}

.navbar-nav .active>.contact-button .contact_us {
    color: var(--e-global-color-accent) !important;
}

.navbar-nav .active>.contact-button .arrow {
    background: transparent;
    border: 1px solid var(--e-global-color-accent);
}

.navbar-nav .active>.contact-button .arrow img {
    filter: none;
}

.navbar-nav .dropdown {
    margin: 0 8px 0 30px;
}

.navbar-nav .nav-item .dropdown-item {
    color: var(--e-global-color-black) !important;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-item .dropdown-item:hover {
    color: var(--e-global-color-white) !important;
    background: linear-gradient(135deg, var(--e-global-color-accent) 0%, #fb8427 100%) !important;
    border-color: rgba(225, 178, 97, 0.3);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(225, 178, 97, 0.3);
}

.navbar-nav .drop-down-pages .active>a {
    color: var(--e-global-color-white) !important;
    background-color: var(--e-global-color-accent) !important;
}

.navbar-collapse .drop-down-pages {
    text-align: left;
    margin-left: 0;
}

/* Modern Dropdown Menu */
.navbar-nav .dropdown-menu {
    background: rgba(34, 34, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: absolute;
    left: -20px;
    top: 55px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Desktop dropdown click functionality - hover removed */
.navbar-nav .dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-nav .drop-down-pages li {
    margin: 0;
}

/* Modern Dropdown Items */
.navbar-nav .drop-down-pages .nav-item a {
    font-size: 15px;
    line-height: 22px;
    font-weight: 500;
    padding: 12px 24px;
    margin: 2px 8px;
    border-radius: 8px;
    margin-top: 0;
    color: white!important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}

.navbar-expand-lg .drop-down-pages .nav-link {
    padding-left: 0;
}

.navbar-nav .drop-down-pages li:last-child {
    margin-left: 0;
}

.banner_outer .social-icons {
    margin-left: 232px;
    top: 135px;
    z-index: 1;
}

.banner_outer .social-icons .line {
    position: absolute;
    left: -182px;
    top: 115px;
}

.banner_outer .social-icons ul {
    left: -192px;
    top: 215px;
}

.banner_outer .social-icons ul li {
    margin-top: 16px;
}

.banner_outer .social-icons ul li .social-networks {
    font-size: 18px;
    color: var(--e-global-color-white);
    transition: all 0.3s ease-in-out;
}

.banner_outer .social-icons ul li .social-networks:hover {
    color: var(--e-global-color-accent);
    transform: translateY(-5px);
}

.banner-section {
    position: relative;
    padding: 0;
    padding-top: 100px;
    /* Fixed header için space bırak */
}

/* Yeni slider yapısı için stiller */
.banner-section .main-slider .item {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.banner-section .slider-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.banner-section .slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.banner-section .slider-bg-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-section .slider-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section .banner_content {
    position: relative;
    color: white;
    text-align: center;
    z-index: 3;
}

.banner-section .banner_content h1 {
    margin-bottom: 26px;
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-section .banner_content p {
    font-size: 22px;
    line-height: 34px;
    font-weight: 400;
    word-spacing: 0.6px;
    margin-bottom: 44px;
    color: white;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 44px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Yeni Modern Butonlar */
.banner-section .slider-buttons {
    margin-top: 40px;
    gap: 20px !important;
}

.banner-section .btn-primary-custom,
.banner-section .btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    height: 55px;
    border: 2px solid transparent;
}

.banner-section .btn-primary-custom span,
.banner-section .btn-secondary-custom span {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.banner-section .btn-primary-custom i,
.banner-section .btn-secondary-custom i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Primary Button (İNCELE) */
.banner-section .btn-primary-custom {
    background: white;
    color: #333;
    border-color: white;
}

.banner-section .btn-primary-custom:hover {
    background: var(--e-global-color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.banner-section .btn-primary-custom:hover span {
    transform: translateX(-3px);
}

.banner-section .btn-primary-custom:hover i {
    transform: translateX(3px);
}

/* Secondary Button (RANDEVU OLUŞTUR) */
.banner-section .btn-secondary-custom {
    background: transparent;
    color: white;
    border-color: white;
}

.banner-section .btn-secondary-custom:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.banner-section .btn-secondary-custom:hover span {
    transform: translateX(-3px);
}

.banner-section .btn-secondary-custom:hover i {
    transform: translateX(3px);
}

/* Button animasyonları */
.banner-section .btn-primary-custom::before,
.banner-section .btn-secondary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.banner-section .btn-primary-custom:hover::before,
.banner-section .btn-secondary-custom:hover::before {
    left: 100%;
}

.banner-section .main-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 !important;
    z-index: 4;
}

.banner-section .main-slider .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.banner-section .main-slider .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-accent);
}

.banner-section .main-slider .owl-dots .owl-dot.active span {
    background: var(--e-global-color-accent);
    width: 20px;
    height: 20px;
}

.banner-section .main-slider .owl-dots .owl-dot:focus {
    outline: none;
}

/* Navigasyon okları */
.banner-section .main-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
}

.banner-section .main-slider .owl-nav .owl-prev,
.banner-section .main-slider .owl-nav .owl-next {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.banner-section .main-slider .owl-nav .owl-prev:hover,
.banner-section .main-slider .owl-nav .owl-next:hover {
    background: var(--e-global-color-accent);
}

.banner-section .main-slider .owl-nav .owl-prev {
    left: 30px;
}

.banner-section .main-slider .owl-nav .owl-next {
    right: 30px;
}

/* Slider Content Animasyonları */
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.banner-section .banner_content h1,
.banner-section .banner_content p,
.banner-section .slider-buttons {
    opacity: 1;
    transform: none;
    transition: none;
}

/* Slider geçiş efektleri - Kapatıldı */
.banner-section .owl-item {
    transition: none;
}

.banner-section .slider-bg-image {
    transition: none;
    transform: none;
}

.banner-section .owl-item.active .slider-bg-image {
    transform: none;
}

/* Parallax efekti */
.banner-section .slider-content-overlay {
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

/* Mobil için özel animasyon optimizasyonları */
@media screen and (max-width: 768px) {

    .banner-section .banner_content h1,
    .banner-section .banner_content p,
    .banner-section .slider-buttons {
        transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .banner-section .animate-slide-up {
        animation: slideUpFadeIn 0.6s ease-out forwards;
    }

    .banner-section .animate-fade-in {
        animation: fadeInScale 0.4s ease-out forwards;
    }

    /* Mobilde daha yumuşak Ken Burns efekti */
    .banner-section .slider-bg-image {
        transition: transform 6s ease-out;
    }

    .banner-section .owl-item.active .slider-bg-image {
        transform: scale(1.03);
    }

    /* Mobil buton hover efektlerini azalt */
    .banner-section .btn-primary-custom:hover,
    .banner-section .btn-secondary-custom:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
}

/* Services */

.service-section {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: round;
    background-size: cover;
    position: relative;
    padding: 145px 0;
}

.service-section .service_content {
    text-align: center;
}

.service-section .service_content h6 {
    margin-bottom: 18px;
}

.service-section .service_content h2 {
    margin-bottom: 46px;
    padding: 0 170px;
}

.service-section .top-space {
    padding-top: 30px;
}

.service-section .box-content {
    width: 100%;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    transition: all 0.3s ease-in-out;
    margin-bottom: 50px;
}

.service-section .box-content:hover {
    transform: translateY(-5px);
}

.service-section .service-card-link {
    cursor: pointer;
    text-decoration: none !important;
}

.service-section .service-card-link:hover {
    text-decoration: none !important;
}

.service-section .box-content .upper_portion {
    position: relative;
}

.service-section .box-content .upper_portion .image {
    overflow: hidden;
}

.service-section .box-content .upper_portion .image img {
    transition: all 0.3s ease-in-out;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-section .box-content .upper_portion .image:hover img {
    transform: scale(1.1);
}

.service-section .box-content .upper_portion .image_content {
    background: var(--e-global-color-accent);
    box-shadow: 8px 2px 20px rgb(0 0 0 / 38%);
    border-radius: 100px;
    height: 82px;
    width: 82px;
    line-height: 78px;
    text-align: center;
    left: 30px;
    bottom: -40px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.service-section .box-content .upper_portion .image_content:hover {
    transform: translateY(-5px);
}

.service-section .box-content .lower_portion_wrapper {
    padding: 58px 29px 28px;
}

.service-section .box-content .lower_portion_wrapper h5 {
    font-weight: 600;
    margin-bottom: 6px;
    transition: all 0.3s ease-in-out;
}

.service-section .box-content .lower_portion_wrapper p {
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.service-section .box-content .lower_portion_wrapper .read_more {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}

.service-section .box-content .lower_portion_wrapper .read_more:hover {
    color: var(--e-global-color-white);
}

.service-section .box-content .lower_portion_wrapper .read_more i {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
}

.service-section .box-content .lower_portion_wrapper .read_more:hover i {
    color: var(--e-global-color-white);
}

.service-section .explore-button {
    margin: auto;
    text-align: center;
}

.service-section .explore {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 16px;
}

.service-section .explore-button:hover .explore {
    color: var(--e-global-color-accent);
}

.service-section .explore-button .image-button {
    display: inline-block;
}

.service-section .explore-button .arrow {
    position: relative;
    border: 1px solid var(--e-global-color-accent);
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    top: -4px;
    right: 0;
    left: 0;
    margin: auto;
}

.service-section .explore-button:hover .arrow {
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}

.service-section .explore-button:hover .arrow img {
    filter: brightness(0) invert(1);
}

/* About us */

.about-section {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 158px;
    position: relative;
}

.about-section .light-image {
    position: absolute;
    top: 0;
    right: 50px;
}

.about-section .about_wrapper {
    position: relative;
}

.about-section .about_wrapper .about-image1 {
    position: absolute;
    top: -4px;
    left: -140px;
}

.about-section .about_wrapper .badge .about-logoimage {
    position: absolute;
    background: var(--e-global-color-accent);
    border-radius: 100px;
    width: 70px;
    height: 70px;
    line-height: 65px;
}

.about-section .badge {
    position: relative;
    top: -46px;
    left: -188px;
    --badge-size: 122px;
    --badge-color: var(--black);

    display: flex;
    justify-content: center;
    align-items: center;

    width: var(--badge-size);
    height: var(--badge-size);

    background: var(--black);
    border-radius: 100%;
    box-shadow: inset 0 0 0 0.9rem var(--badge-color);
    animation: identifier 20s linear infinite;
}

.about-section .badge__emoji {
    display: block;
    margin: 0;
    animation: identifier 20s linear infinite;
    animation-direction: reverse;
    transition: all 0.3s;
}

.about-section .badge__char {
    --char-font-weight: 500;
    --char-font-size: 14px;
    --char-width: 22px;

    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - var(--char-width) / 2);
    height: calc(var(--badge-size) / 2);
    width: var(--char-width);
    background-repeat: round;
    text-align: center;
    text-transform: uppercase;
    line-height: 1rem;

    font-weight: var(--char-font-weight);
    font-size: var(--char-font-size);
    color: var(--white);
    font-family: var(--char-font-family);
    transform-origin: bottom center;
    transform: rotate(var(--char-rotate));
}

.about-section .badge__char1 {
    --char-font-weight: 700;
    --char-font-size: 20px;
    --char-width: 26px;
    top: -5px;
}

@-webkit-keyframes identifier {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

@keyframes identifier {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}

.about-section .about_wrapper .about-image2 {
    position: absolute;
    top: -46px;
    right: -136px;
}

.about-section .about_content {
    margin: 0;
}

.about-section .about_content h6 {
    margin-bottom: 16px;
}

.about-section .about_content h2 {
    margin-bottom: 12px;
}

.about-section .about_content h5 {
    border-left: 1px solid var(--e-global-color-accent);
    padding-left: 17px;
    margin-bottom: 18px;
}

.about-section .about_content p {
    margin-bottom: 32px;
}

.about-section .read_more {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: inline-block;
}

.about-section .read_more::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--e-global-color-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-section .about-button:hover .read_more {
    color: var(--e-global-color-accent);
    transform: translateX(-5px);
}

.about-section .about-button:hover .read_more::before {
    width: 100%;
}

.about-section .about-button .image-button {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-section .about-button:hover .image-button {
    transform: translateX(10px) scale(1.1);
}

.about-section .about-button .arrow {
    position: relative;
    border: 1px solid var(--e-global-color-accent);
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    top: -4px;
    right: 0;
    left: 0;
    margin: auto;
    overflow: hidden;
}

.about-section .about-button .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--e-global-color-accent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.about-section .about-button:hover .arrow {
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
    box-shadow: 0 8px 25px rgba(225, 178, 97, 0.5);
    transform: rotate(90deg) scale(1.05);
}

.about-section .about-button:hover .arrow::before {
    width: 100%;
    height: 100%;
}

.about-section .about-button:hover .arrow img {
    filter: brightness(0) invert(1);
    transform: rotate(-90deg);
}

.about-section .about-button .arrow img {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Process */

.process-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 150px;
}

.process-section .process_content {
    text-align: center;
}

.process-section .process_content h6 {
    margin-bottom: 18px;
}

.process-section .process_content h2 {
    margin-bottom: 46px;
}

.process-section .box-content {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 50px 30px 68px;
    border-bottom: 2px solid var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
}

.process-section .box-content:hover {
    transform: translateY(-5px);
}

.process-section .box-content .icon {
    position: relative;
    float: right;
    top: -20px;
    transition: all 0.3s ease-in-out;
}

.process-section .box-content .icon:hover {
    transform: translateY(-5px);
}

.process-section .box-content span {
    font-size: 80px;
    line-height: 90px;
    font-weight: 600;
    color: var(--e-global-color-secondary);
    display: block;
    margin-bottom: 18px;
}

.process-section .box-content h5 {
    font-weight: 600;
}

/* Work */

.work-section {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 94px 0 174px;
    position: relative;
}

.work-section .light-image {
    position: absolute;
    top: 0;
    left: 50px;
}

.work-section .work_content .year {
    position: relative;
}

.work-section .work_content .year::before {
    content: "";
    position: absolute;
    background: url(../images/blog-image1.jpg);
    height: 100%;
    width: 67%;
    right: 178px;
    opacity: 40%;
    z-index: -1;
}

.work-section .work_content .year span {
    font-size: 150px;
    line-height: 256px;
    font-weight: 700;
    color: var(--e-global-color-white);
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.work-section .work_content .year span.counter-animating {
    transform: scale(0.95);
    animation: counterPulse 2s ease-out forwards;
}

@keyframes counterPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.work-section .work_content .year span:hover {
    transform: scale(1.02);
    text-shadow: 2px 2px 10px rgba(251, 132, 39, 0.3);
}

.work-section .work_content .year sup {
    font-size: 150px;
    line-height: 156px;
    font-weight: 700;
    color: var(--e-global-color-accent);
    position: relative;
    top: -78px;
    left: -4px;
}

.work-section .work_content h2 {
    margin-bottom: 48px;
}

.work-section .discover_more {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 16px;
}

.work-section .discover-button:hover .discover_more {
    color: var(--e-global-color-accent);
}

.work-section .discover-button .image-button {
    display: inline-block;
}

.work-section .discover-button .arrow {
    position: relative;
    border: 1px solid var(--e-global-color-accent);
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    top: -4px;
    right: 0;
    left: 0;
    margin: auto;
}

.work-section .discover-button:hover .arrow {
    background: var(--e-global-color-accent);
    border: 1px solid var(--e-global-color-accent);
}

.work-section .discover-button:hover .arrow img {
    filter: brightness(0) invert(1);
}

.work-section .work_wrapper {
    position: relative;
}

.work-section .work_wrapper .work-image {
    position: relative;
    top: 58px;
    right: 0;
    z-index: 1;
}

.work-section .work_wrapper .work-imagebackground {
    background: var(--e-global-color-black);
    position: absolute;
    top: 26px;
    right: -30px;
}

.work-section .work_wrapper .work-imagebackground img {
    opacity: 70%;
    transition: all 0.3s ease-in-out;
}

/* Recent work - Modern Design */

.recentwork-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 142px 0 140px;
}

.recentwork-section .container-fluid {
    padding: 0;
}

.recentwork-section .recentwork_content {
    text-align: center;
}

.recentwork-section .recentwork_content h6 {
    margin-bottom: 18px;
}

.recentwork-section .recentwork_content h2 {
    margin-bottom: 46px;
}

.recentwork-section .image {
    position: relative;
    transition: none;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.recentwork-section .image:hover {
    transform: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.recentwork-section .image figure {
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.recentwork-section .image figure img {
    transition: transform 0.8s ease-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recentwork-section .image:hover figure img {
    transform: scale(1.02);
}

/* Modern Overlay Design */
.recentwork-section .image .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    backdrop-filter: blur(2px);
    border-radius: 0 0 12px 12px;
    opacity: 1;
    transition: background 0.8s ease-out, backdrop-filter 0.8s ease-out;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    transform: translateY(0);
    padding: 20px;
}

.recentwork-section .image:hover .box-content {
    background: linear-gradient(to top,
            rgba(225, 178, 97, 0.85) 0%,
            rgba(225, 178, 97, 0.65) 50%,
            rgba(0, 0, 0, 0.15) 100%);
    backdrop-filter: blur(1.5px);
}

.recentwork-section .image .box-content .content {
    position: relative;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.recentwork-section .image .box-content .content span {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recentwork-section .image .box-content .content h4 {
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

/* Modern Arrow Button */
.recentwork-section .arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 10px;
}

.recentwork-section .arrow:hover {
    background: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 20px rgba(225, 178, 97, 0.4);
}

.recentwork-section .arrow:hover img {
    filter: brightness(0) invert(1) !important;
}

.recentwork-section .arrow img {
    width: 15px !important;
    height: 16px !important;
    filter: brightness(0);
    transition: all 0.3s ease;
}

/* Owl Carousel Updates */
.recentwork-section .item .recentwork-image {
    background: var(--e-global-color-black);
    border-radius: 12px;
    overflow: hidden;
}

.recentwork-section .item .recentwork-image img {
    opacity: 80%;
}

.recentwork-section .owl-carousel .item {
    transform: scale(.85);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.recentwork-section .owl-carousel .active .item {
    opacity: 1;
    transform: scale(1);
}

.recentwork-section .owl-carousel .owl-item img {
    display: inline-block !important;
}

.recentwork-section .owl-carousel .owl-nav {
    margin-top: 0;
}

.recentwork-section .owl-carousel .item .image .box-content {
    display: flex;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.recentwork-section .owl-carousel .active .item .image .box-content {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Dots */
.recentwork-section .owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    margin-top: 50px !important;
}

.recentwork-section .owl-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    display: block;
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.recentwork-section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-accent);
    transform: scale(1.2);
}

.recentwork-section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-accent);
    width: 30px;
    border-radius: 20px;
    transform: scale(1.1);
}

.recentwork-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Testimonial */

.testimonial-section {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 140px;
}

.testimonial-section .light-image {
    position: absolute;
    top: 0;
    right: 46px;
}

.testimonial-section .testimonial_content {
    text-align: center;
}

.testimonial-section .testimonial_content h6 {
    margin-bottom: 18px;
}

.testimonial-section .testimonial_content h2 {
    margin-bottom: 46px;
    padding: 0 40px;
}

.testimonial-section .box {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 36px 30px 18px 40px;
    border-right: 2px solid var(--e-global-color-accent);
    width: 98%;
}

.testimonial-section .box .image {
    width: 27%;
    float: left;
}

.testimonial-section .box .image .testimonial-image img {
    border-radius: 100px;
}

.testimonial-section .box .image .quote-icon {
    position: relative;
    background: var(--e-global-color-accent);
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    left: 36px;
    top: -18px;
}

.testimonial-section .box .image .quote-icon img {
    width: 17px;
}

.testimonial-section .box .box-content {
    width: 73%;
    display: inline-block;
    border-left: 1px solid var(--e-global-color-very-dark-grayish-blue);
    padding-left: 30px;
}

.testimonial-section .box .box-content p {
    margin: 0 20px 6px 0;
}

.testimonial-section .box .box-content ul li {
    display: inline-block;
}

.testimonial-section .box .box-content ul li a {
    color: var(--e-global-color-accent);
}

.testimonial-section .box .box-content ul li i {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 18px;
}

.testimonial-section .box .box-content .text-size-16 {
    font-weight: 600;
    display: block;
    margin-bottom: -3px;
}

.testimonial-section .box .box-content .text-size-14 {
    color: var(--e-global-color-text);
}

.testimonial-section .box .box-content .lower-portion .quote-image {
    position: relative;
    float: right;
    top: -12px;
    right: 0;
}

.testimonial-section .box .box-content .lower-portion .quote-image img {
    width: 49px;
}

.testimonial-section .owl-carousel .owl-dots {
    position: relative;
    margin-top: 50px !important;
}

.testimonial-section .owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-very-dark-grayish-blue);
}

.testimonial-section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-accent);
}

.testimonial-section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-accent);
    width: 20px;
    height: 20px;
}

.testimonial-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

.testimonial-section .owl-carousel .owl-item img {
    display: inline-block;
    width: 102px;
}

/* Journey */

.journey-section {
    background-color: var(--e-global-color-black);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 185px 0 145px;
}

.journey-section::before {
    content: "";
    position: absolute;
    background: url(../images/journey-backgroundimage.jpg);
    opacity: 30%;
    width: 100%;
    height: 700px;
    top: 0;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.journey-section .journey_content {
    text-align: center;
}

.journey-section .journey_content h6 {
    margin-bottom: 18px;
}

.journey-section .journey_content h2 {
    font-size: 66px;
    line-height: 80px;
    margin-bottom: 30px;
}

.journey-section .journey-button {
    margin: auto;
    text-align: center;
}

.journey-section .get_started {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 16px;
}

.journey-section .journey-button:hover .get_started {
    color: var(--e-global-color-accent);
}

.journey-section .journey-button .image-button {
    display: inline-block;
}

.journey-section .journey-button .arrow {
    position: relative;
    border: 1px solid var(--e-global-color-accent);
    background: var(--e-global-color-accent);
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    top: -4px;
    right: 0;
    left: 0;
    margin: auto;
}

.journey-section .journey-button .arrow img {
    filter: brightness(0) invert(1);
}

.journey-section .journey-button:hover .arrow {
    background: transparent;
    border: 1px solid var(--e-global-color-accent);
}

.journey-section .journey-button:hover .arrow img {
    filter: none;
}

/* Modern Blog Section */

.modern-blog-section {
    background: linear-gradient(135deg,
            rgba(34, 34, 36, 0.95) 0%,
            rgba(34, 34, 36, 0.98) 50%,
            rgba(34, 34, 36, 0.95) 100%),
        url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.blog-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(225, 178, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(225, 178, 97, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.modern-blog-section .light-image {
    position: absolute;
    top: 0;
    left: 50px;
    z-index: 2;
    opacity: 0.8;
}

/* Modern Blog Header */
.modern-blog-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.blog-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--e-global-color-accent);
    background: rgba(225, 178, 97, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid rgba(225, 178, 97, 0.3);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--e-global-color-white);
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, rgba(225, 178, 97, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--e-global-color-accent) 0%, rgba(225, 178, 97, 0.3) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

/* Modern Blog Grid */
.modern-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 3;
}

/* Modern Blog Card */
.modern-blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
}

.modern-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(225, 178, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
    z-index: 1;
}

.modern-blog-card:hover::before {
    opacity: 1;
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(225, 178, 97, 0.3);
}

.featured-post {
    grid-column: span 2;
}

.featured-post .blog-image-container {
    height: 300px;
}

.blog-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Blog Image Container */
.blog-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modern-blog-card:hover .blog-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(225, 178, 97, 0.2) 0%,
            transparent 50%,
            rgba(225, 178, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.post-category {
    background: rgba(225, 178, 97, 0.9);
    color: var(--e-global-color-white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Blog Content */
.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.post-date,
.read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.post-date i,
.read-time i {
    color: var(--e-global-color-accent);
    font-size: 11px;
}

.blog-post-title {
    margin-bottom: 15px;
    flex: 1;
}

.blog-post-title a {
    color: var(--e-global-color-white);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.blog-post-title a:hover {
    color: var(--e-global-color-accent);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Blog Footer */
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(225, 178, 97, 0.3);
}

.author-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--e-global-color-accent);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.read-more-btn:hover {
    color: var(--e-global-color-white);
    transform: translateX(5px);
}

.read-more-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

/* Blog Navigation */
.blog-navigation {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--e-global-color-accent) 0%, rgba(225, 178, 97, 0.8) 100%);
    color: var(--e-global-color-white);
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
}

.view-all-btn:hover {
    background: transparent;
    color: var(--e-global-color-accent);
    border-color: var(--e-global-color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225, 178, 97, 0.3);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Footer */

.footer-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 110px;
}

.footer-section .footer-logo {
    position: relative;
    top: 3px;
    margin-bottom: 50px;
}

.footer-section .footer-image {
    position: absolute;
    bottom: 55px;
    right: 0;
}

.footer-section .middle-portion {
    padding-bottom: 66px;
}

.footer-section .middle-portion h3 {
    margin-bottom: 24px;
}

.footer-section .get_started {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-right: 16px;
}

.footer-section .footer-button:hover .get_started {
    color: var(--e-global-color-accent);
}

.footer-section .footer-button .image-button {
    display: inline-block;
}

.footer-section .footer-button .arrow {
    position: relative;
    border: 1px solid var(--e-global-color-accent);
    background: var(--e-global-color-accent);
    width: 65px;
    height: 65px;
    line-height: 60px;
    text-align: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    top: -4px;
    right: 0;
    left: 0;
    margin: auto;
}

.footer-section .footer-button .arrow img {
    filter: brightness(0) invert(1);
}

.footer-section .footer-button:hover .arrow {
    background: transparent;
    border: 1px solid var(--e-global-color-accent);
}

.footer-section .footer-button:hover .arrow img {
    filter: none;
}

.footer-section .middle-portion .links {
    padding: 0 25px;
}

.footer-section .middle-portion .links h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section .middle-portion .links .lower-content {
    margin-bottom: 24px;
}

.footer-section .middle-portion .links .lower-content .icon {
    float: left;
    width: 15%;
    padding-top: 7px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.footer-section .middle-portion .links .lower-content .icon:hover {
    transform: translateY(-5px);
}

.footer-section .middle-portion .links .lower-content .content {
    display: inline-block;
    width: 85%;
}

.footer-section .middle-portion .links .lower-content span {
    color: var(--e-global-color-text);
    display: block;
}

.footer-section .middle-portion .links .lower-content a {
    font-weight: 500;
}

.footer-section .middle-portion .links .lower-content .text {
    font-weight: 500;
    margin: 0 30px 0 0;
    color: var(--e-global-color-white);
}

.footer-section .middle-portion .links .lower-content a:hover {
    color: var(--e-global-color-accent);
}

.footer-section .middle-portion .info h4 {
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-section .middle-portion .info .form-group {
    border-bottom: 1px solid var(--e-global-color-white);
    margin-bottom: 26px;
}

.footer-section .middle-portion .info input {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    color: var(--e-global-color-text);
    background: transparent;
    border: none;
    margin-bottom: 10px;
    overflow: visible;
    outline: none;
}

.footer-section .middle-portion .info button {
    font-size: 16px;
    color: var(--e-global-color-accent);
    background: transparent;
    border: none;
    float: right;
    position: relative;
    top: 4px;
    overflow: visible;
    outline: none;
}

.footer-section .middle-portion .info ul {
    padding-left: 37px;
}

.footer-section .middle-portion .info .text {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--e-global-color-text);
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

.footer-section .middle-portion .info .text:hover {
    color: var(--e-global-color-secondary);
}

.footer-section .middle-portion .info ul li .circle {
    background: var(--e-global-color-very-dark-gray);
    border-radius: 100px;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 10px;
    left: -35px;
    font-size: 12px;
    font-family: 'FontAwesome';
    color: var(--e-global-color-white);
}

.footer-section .middle-portion .info .text:hover .circle {
    color: var(--e-global-color-white);
    background: var(--e-global-color-accent);
}

.footer-section .middle-portion .info .social-icons ul li {
    margin: 0 6px;
    display: inline-block;
}

.footer-section .middle-portion .info .social-icons ul li:first-child {
    margin-left: 0;
}

.footer-section .middle-portion .info .social-icons ul li:last-child {
    margin-right: 0;
}

.footer-section .middle-portion .info .social-icons ul li a {
    color: var(--e-global-color-white);
}

.footer-section .middle-portion .info .social-icons ul li .social-networks {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-section .middle-portion .info .social-icons ul li .social-networks:hover {
    color: var(--e-global-color-accent);
    transform: translateY(-5px);
}

.footer-section .copyright {
    text-align: center;
    padding: 15px 0px;
    background-color: var(--e-global-color-very-dark-mostly-black-blue);
}

.footer-section .copyright .text-size-14 {
    color: var(--e-global-color-text);
    margin: 0px;
}

/* Sub-banner */

.sub-banner {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.sub-banner .light-image {
    position: absolute;
    top: 0;
    left: 28px;
}

.sub-banner .header {
    padding: 0 216px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999999 !important;
    background: rgba(34, 34, 36, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}


.sub-banner .banner-section .banner_content {
    position: relative;
    margin-right: 0;
}

.sub-banner .banner-section .banner_content h1 {
    margin-bottom: 16px;
}



.sub-banner .banner-section .banner_content .box {
    padding: 12px 22px;
    text-align: center;
    background: var(--e-global-color-very-dark-mostly-black-blue);
    color: var(--e-global-color-white);
    display: inline-block;
}

.sub-banner .banner-section .banner_content .box span {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    display: inline-block;
}

.sub-banner .banner-section .banner_content .box .box_span {
    color: var(--e-global-color-accent);
}

.sub-banner .banner-section .banner_content .box .dash {
    margin: 0 12px;
}

.sub-banner .banner-section .banner_wrapper {
    margin-top: -80px;
    margin-left: -30px;
}

/* Faq Page */

.faq-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 120px;
}

.faq-section .subheading {
    text-align: center;
}

.faq-section .subheading h6 {
    margin-bottom: 18px;
}

.faq-section .subheading h2 {
    margin-bottom: 46px;
}

.faq-section .accordian-inner .accordion-card .btn-link h5 {
    position: relative;
    color: var(--e-global-color-white);
    top: 9px;
    margin-bottom: 0;
    letter-spacing: 0.8px;
}

.faq-section .accordion-card {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    width: 100%;
    margin-bottom: 30px;
    padding: 0 19px;
}

.faq-section .accordion-card a.btn.btn-link {
    position: relative;
    display: flex;
}

.faq-section .accordian-inner .accordion-card .btn {
    padding: 15px 0px;
    text-decoration: none;
    text-align: left;
    display: block;
}

.faq-section .accordion-card i {
    font-size: 22px;
    color: var(--e-global-color-accent);
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: transparent;
    text-align: center;
    border: 3px solid var(--e-global-color-accent);
    border-radius: 100px;
    margin-right: 22px;
}

.faq-section .accordian-inner .card-header {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}

.faq-section .accordian-inner .card-body {
    padding: 15px 0;
}

.faq-section .accordion-card a.btn.btn-link:focus {
    outline: none;
    box-shadow: none;
}

.faq-section .accordion-card .btn-link:before {
    content: "\f063";
    position: absolute;
    right: 3px;
    top: 30%;
    font-family: 'FontAwesome';
    display: inline-block;
    vertical-align: middle;
    color: var(--e-global-color-white);
    font-size: 28px;
    line-height: 28px;
}

.faq-section .accordion-card .collapsed:before {
    content: "\f061";
    color: var(--e-global-color-white);
}

/* Team Page */

.team-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 120px;
}

.team-section .subheading {
    text-align: center;
}

.team-section .subheading h6 {
    margin-bottom: 18px;
}

.team-section .subheading h2 {
    margin-bottom: 46px;
}

.team-section .team-box {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 20px 35px;
    background-color: var(--e-global-color-very-dark-mostly-black-blue);
    transition: all 0.3s ease-in-out;
    border-bottom: 2px solid var(--e-global-color-accent);
}

.team-section .team-box:hover {
    transform: translateY(-5px);
}

.team-section .team-box figure {
    overflow: hidden;
    margin-bottom: 30px;
}

.team-section .team-box figure img {
    transition: all 0.3s ease-in-out;
}

.team-section .team-box figure:hover img {
    transform: scale(1.1);
}

.team-section .team-box h5 {
    font-weight: 600;
    color: var(--e-global-color-white);
    margin-bottom: 2px;
}

.team-section .team-box span {
    display: block;
    margin-bottom: 20px;
    color: var(--e-global-color-text);
}

.team-section .team-box li {
    margin: 0 6px;
    display: inline-block;
}

.team-section .team-box li:first-child {
    margin-left: 0;
}

.team-section .team-box li:last-child {
    margin-right: 0;
}

.team-section .team-box li a {
    color: var(--e-global-color-white);
}

.team-section .team-box i {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.team-section .team-box i:hover {
    color: var(--e-global-color-accent);
    transform: translateY(-5px);
}

/* Service Page */

.servicepage-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 150px 0 120px;
}

.servicepage-section .service-box {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    margin-bottom: 30px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.servicepage-section .service-box .box-image {
    position: relative;
    float: left;
    width: 47%;
}

.servicepage-section .service-box .box-image .servicepage-image {
    overflow: hidden;
}

.servicepage-section .service-box .box-image .servicepage-image img {
    transition: all 0.3s ease-in-out;
}

.servicepage-section .service-box .box-image .servicepage-image:hover img {
    transform: scale(1.1);
}

.servicepage-section .service-box .image_content {
    background: var(--e-global-color-accent);
    box-shadow: 8px 2px 20px rgb(0 0 0 / 38%);
    border-radius: 100px;
    height: 82px;
    width: 82px;
    line-height: 78px;
    text-align: center;
    left: 20px;
    top: 20px;
    position: absolute;
    transition: all 0.3s ease-in-out;
}

.servicepage-section .service-box .image_content:hover {
    transform: translateY(-5px);
}

.servicepage-section .service-box .image_content .service-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.servicepage-section .service-box .box-content {
    position: relative;
    display: inline-block;
    width: 53%;
    padding: 53px 20px 52px 42px;
}

.servicepage-section .service-box .box-content h5 {
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.servicepage-section .service-box .box-content p {
    margin-bottom: 15px;
}

.servicepage-section .service-box .box-content .read_more {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}

.servicepage-section .service-box .box-content .read_more i {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
}

.servicepage-section .service-box .box-content .read_more:hover {
    color: var(--e-global-color-white);
}

.servicepage-section .service-box .box-content .read_more:hover i {
    color: var(--e-global-color-white);
}

/* Contact Page */

.contactinfo-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 150px;
}

.contactinfo-section .contactinfo_content {
    text-align: center;
}

.contactinfo-section .contactinfo_content h6 {
    margin-bottom: 18px;
}

.contactinfo-section .contactinfo_content h2 {
    margin-bottom: 46px;
}

.contactinfo-section .box-content {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 50px 30px 40px;
    border-bottom: 2px solid var(--e-global-color-accent);
    transition: all 0.3s ease-in-out;
    height: 250px;
}

.contactinfo-section .box-content:hover {
    transform: translateY(-5px);
}

.contactinfo-section .box-content .icon {
    position: relative;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
}

.contactinfo-section .box-content .icon2 {
    margin-bottom: 30px;
}

.contactinfo-section .box-content .icon:hover {
    transform: translateY(-5px);
}

.contactinfo-section .box-content h5 {
    font-weight: 600;
    color: var(--e-global-color-white);
}

.contactinfo-section .box-content a {
    color: var(--e-global-color-text);
    display: block;
}

.contactinfo-section .box-content a:hover {
    color: var(--e-global-color-accent);
}

/* Modern Minimal Contact Section */
.modern-contact-section {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    position: relative;
    min-height: 600px;
}

.modern-contact-section .row {
    min-height: 600px;
}

.modern-contact-section .container-fluid {
    padding: 0 !important;
}

.modern-contact-section .row.g-0 {
    margin: 0 !important;
}

/* Contact Form Side */
.contact-form-wrapper {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(225, 178, 97, 0.05) 0%,
            transparent 50%,
            rgba(225, 178, 97, 0.03) 100%);
    z-index: 1;
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center,
            rgba(225, 178, 97, 0.08) 0%,
            rgba(225, 178, 97, 0.03) 40%,
            transparent 70%);
    z-index: 1;
    transform: rotate(-15deg);
}

.form-content {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.3s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-header {
    margin-bottom: 40px;
}

.contact-tag {
    display: inline-block;
    background: rgba(var(--e-global-color-accent-rgb), 0.1);
    color: var(--e-global-color-accent);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(var(--e-global-color-accent-rgb), 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.5s forwards;
}

.contact-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    animation: shimmer 2s ease-in-out infinite 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.contact-header h2 {
    color: var(--e-global-color-white);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.contact-header p {
    color: var(--e-global-color-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* Map Side */
.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    filter: grayscale(30%) contrast(1.1) brightness(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.map-wrapper:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
    transform: scale(1.02);
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            var(--e-global-color-very-dark-mostly-black-blue) 0%,
            transparent 5%);
    z-index: 2;
    pointer-events: none;
}

/* About Page - Modern & Interactive */

.aboutpage-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 160px 0 166px;
    overflow: hidden;
}

/* Animated background overlay */
.aboutpage-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(225, 178, 97, 0.05) 0%, 
        transparent 50%, 
        rgba(225, 178, 97, 0.05) 100%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.aboutpage-section .container {
    position: relative;
    z-index: 1;
}

.aboutpage-section .aboutpage_wrapper {
    position: relative;
    left: -72px;
    top: -10px;
}

/* Modern image with advanced hover effects */
.aboutpage-section .aboutpage_wrapper .aboutpage-image1 {
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Gradient overlay */
.aboutpage-section .aboutpage_wrapper .aboutpage-image1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(225, 178, 97, 0.3) 0%, 
        transparent 50%,
        rgba(225, 178, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

/* Animated border effect */
.aboutpage-section .aboutpage_wrapper .aboutpage-image1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--e-global-color-accent);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
    border-radius: 12px;
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image1:hover::before {
    opacity: 1;
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image1:hover::after {
    opacity: 1;
    transform: scale(0.98);
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image1:hover {
    transform: translateY(-12px) scale(1.03) rotate(-1deg);
    box-shadow: 0 25px 70px rgba(225, 178, 97, 0.5);
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image1 img {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image1:hover img {
    transform: scale(1.12) rotate(1deg);
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image2 {
    position: absolute;
    bottom: -60px;
    right: -10px;
}

/* Rotating badge with pulse effect */
.aboutpage-section .aboutpage_wrapper .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    --badge-size: 122px;
    --badge-color: var(--black);

    display: flex;
    justify-content: center;
    align-items: center;

    width: var(--badge-size);
    height: var(--badge-size);

    background: var(--black);
    border-radius: 100%;
    box-shadow: 
        inset 0 0 0 0.9rem var(--badge-color),
        0 8px 30px rgba(225, 178, 97, 0.4);
    animation: identifier 20s linear infinite, badgePulse 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 
            inset 0 0 0 0.9rem var(--badge-color),
            0 8px 30px rgba(225, 178, 97, 0.4);
    }
    50% { 
        box-shadow: 
            inset 0 0 0 0.9rem var(--badge-color),
            0 12px 40px rgba(225, 178, 97, 0.6);
    }
}

.aboutpage-section .aboutpage_wrapper .aboutpage-image1:hover + .badge {
    transform: scale(1.1) rotate(15deg);
    animation: identifier 10s linear infinite, badgePulse 3s ease-in-out infinite;
}

.aboutpage-section .aboutpage_wrapper .badge .about-logoimage {
    position: absolute;
    background: var(--e-global-color-accent);
    border-radius: 100px;
    width: 70px;
    height: 70px;
    line-height: 65px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(225, 178, 97, 0.5);
}

.aboutpage-section .aboutpage_wrapper .badge:hover .about-logoimage {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(225, 178, 97, 0.7);
}

/* Content animations */
.aboutpage-section .aboutpage_content h6 {
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.aboutpage-section .aboutpage_content h6:hover {
    color: var(--e-global-color-accent);
    transform: translateX(10px);
}

.aboutpage-section .aboutpage_content h2 {
    margin-bottom: 18px;
    margin-right: -3px;
    transition: all 0.3s ease;
    position: relative;
}

.aboutpage-section .aboutpage_content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--e-global-color-accent);
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aboutpage-section .aboutpage_content h2:hover::after {
    width: 100px;
}

.aboutpage-section .aboutpage_content .text2 {
    margin-bottom: 56px;
}

/* Masaüstünde paragraf hover efektleri */
.aboutpage-section .aboutpage_content p {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.aboutpage-section .aboutpage_content p::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--e-global-color-accent);
    transition: width 0.3s ease;
}

.aboutpage-section .aboutpage_content p:hover {
    transform: translateX(8px);
    color: rgba(255, 255, 255, 0.95);
}

.aboutpage-section .aboutpage_content p:hover::before {
    width: 6px;
}

/* Modern buton styling - about-button */
.aboutpage-section .about-button {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 3rem !important;
    position: relative;
    margin-top: 20px;
}

.aboutpage-section .about-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--e-global-color-accent), transparent);
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aboutpage-section .about-button:hover::before {
    width: 250px;
}

.aboutpage-section .about-button .read_more {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    margin-right: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: inline-block;
    color: var(--e-global-color-white);
}

.aboutpage-section .about-button .read_more::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--e-global-color-accent);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aboutpage-section .about-button:hover .read_more {
    color: var(--e-global-color-accent);
    transform: translateX(-5px);
    letter-spacing: 0.5px;
}

.aboutpage-section .about-button:hover .read_more::before {
    width: 100%;
}

.aboutpage-section .about-button .image-button {
    display: inline-flex;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aboutpage-section .about-button:hover .image-button {
    transform: translateX(8px) scale(1.05);
}

.aboutpage-section .about-button .arrow {
    position: relative;
    border: 2px solid var(--e-global-color-accent);
    width: 70px;
    height: 70px;
    line-height: 66px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin: 0;
    overflow: hidden;
    background: transparent;
}

.aboutpage-section .about-button .arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--e-global-color-accent);
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.aboutpage-section .about-button:hover .arrow {
    border-color: var(--e-global-color-accent);
    box-shadow: 0 8px 25px rgba(225, 178, 97, 0.5);
    transform: scale(1.05);
}

.aboutpage-section .about-button:hover .arrow::before {
    width: 140%;
    height: 140%;
}

.aboutpage-section .about-button:hover .arrow img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

.aboutpage-section .about-button .arrow img {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

.aboutpage-section .aboutpage_content .progress-outer {
    display: flex;
    justify-content: center;
    position: relative;
    left: -30px;
}

.aboutpage-section .aboutpage_content .progress-inner {
    display: grid;
    grid-template-columns: repeat(3, 190px);
    grid-gap: 0;
    margin: 0;
}

.aboutpage-section .aboutpage_content .progress-inner .box {
    width: 100%;
}

.aboutpage-section .aboutpage_content .progress-inner .box .chart {
    position: relative;
    width: 256px;
    height: 146px;
    line-height: 110px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--e-global-color-white);
    margin-bottom: 0;
}

.aboutpage-section .aboutpage_content .progress-inner .box canvas {
    position: absolute;
    top: -4px;
    left: 61px;
    width: 50%;
}

.aboutpage-section .aboutpage_content .progress-inner .box h6 {
    font-weight: 600;
    letter-spacing: 0;
    word-spacing: 0;
    margin-bottom: 0;
    color: var(--e-global-color-white);
    position: relative;
    right: -60px;
}

.partner-section {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 140px;
}

.partner-section .light-image {
    position: absolute;
    top: 0;
    right: 46px;
}

.partner-section .partner_content {
    text-align: center;
}

.partner-section .partner_content h6 {
    margin-bottom: 18px;
}

.partner-section .partner_content h2 {
    margin-bottom: 50px;
}

.partner-section .box {
    background: var(--e-global-color-very-dark-mostly-black-blue);
    padding: 30px 76px;
    border-bottom: 2px solid var(--e-global-color-accent);
    display: flex;
    align-items: center;
    height: 160px;
}

.partner-section .box:hover figure img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.5);
}

.partner-section .owl-carousel .owl-item img {
    display: block;
    width: 110px;
    filter: brightness(0) invert(1);
    mix-blend-mode: lighten;
}

.partner-section .owl-carousel .owl-dots {
    margin-top: 50px !important;
}

.partner-section .owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 0 6px;
    transition: all 0.3s ease-in-out;
    color: var(--e-global-color-very-dark-grayish-blue);
}

.partner-section .owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--e-global-color-accent);
}

.partner-section .owl-carousel .owl-dots .owl-dot.active span {
    background: var(--e-global-color-accent);
    width: 20px;
    height: 20px;
}

.partner-section .owl-carousel .owl-dots .owl-dot:focus {
    outline: none;
}

/* Portfolio Page */

.portfolio-section {
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 142px 0 120px;
}

.portfolio-section .subheading {
    text-align: center;
}

.portfolio-section .subheading h6 {
    margin-bottom: 18px;
}

.portfolio-section .subheading h2 {
    margin-bottom: 50px;
}

.portfolio-section .tabs-box .nav-tabs li a {
    display: inline-block;
    color: var(--e-global-color-white);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-decoration: none;
    border-top: 1px solid transparent;
    padding-top: 6px;
}

.portfolio-section .tabs-box .nav-tabs li a:hover {
    color: var(--e-global-color-white);
    border-top: 1px solid var(--e-global-color-accent);
    text-decoration: none;
}

.portfolio-section .tabs-box .nav-tabs>li>a.active {
    color: var(--e-global-color-white);
    border-top: 1px solid var(--e-global-color-accent);
    text-decoration: none;
}

.portfolio-section .nav-tabs {
    border-bottom: none;
    margin-bottom: 55px;
    justify-content: center;
}

.portfolio-section .nav-tabs li {
    margin: 0 32px;
}

.portfolio-section .nav-tabs li:first-child {
    margin-left: 0;
}

.portfolio-section .nav-tabs li:last-child {
    margin-right: 0;
}

/* Modern Projects Portfolio Design - Compact Version */
.portfolio-section .image {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-section .image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-section .image figure {
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-section .image figure img {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.portfolio-section .image:hover figure img {
    transform: scale(1.05);
}

/* Compact Overlay Design */
.portfolio-section .image .box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 70%,
            transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 0 0 12px 12px;
    padding: 20px;
    text-align: left;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-section .image:hover .box-content {
    background: linear-gradient(to top,
            rgba(225, 178, 97, 0.9) 0%,
            rgba(225, 178, 97, 0.6) 70%,
            transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.portfolio-section .image .box-content .content {
    position: relative;
    top: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.portfolio-section .image .box-content .content .text-content {
    flex: 1;
}

.portfolio-section .image .box-content .content .text-content a,
.portfolio-section .image .box-content .content .text-content span,
.portfolio-section .image .box-content .content .text-content h4 {
    text-decoration: none;
}

.portfolio-section .image .box-content .content .text-content a:hover {
    text-decoration: none;
}

.portfolio-section .image .box-content .content span {
    font-weight: 600;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portfolio-section .image:hover .box-content .content span {
    color: rgba(34, 34, 36, 0.7);
}

.portfolio-section .image a:hover {
    text-decoration: none;
}

.portfolio-section .image .box-content .content h4 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--e-global-color-white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.portfolio-section .image:hover .box-content .content h4 {
    color: var(--e-global-color-very-dark-mostly-black-blue);
}

/* Modern Clean Arrow Button */
.portfolio-section .arrow {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.7) 100%);
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.portfolio-section .arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(225, 178, 97, 0.2) 0%,
            rgba(225, 178, 97, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.portfolio-section .arrow:hover::before {
    opacity: 1;
}

.portfolio-section .arrow:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.95) 100%);
}

.portfolio-section .arrow img {
    filter: brightness(0) opacity(0.7);
    transition: all 0.3s ease;
    width: 16px !important;
    height: 16px !important;
    position: relative;
    z-index: 2;
}

.portfolio-section .arrow:hover img {
    filter: brightness(0) opacity(1);
    transform: translateX(1px);
}

.portfolio-section .image:hover .arrow {
    background: linear-gradient(135deg,
            rgba(34, 34, 36, 0.9) 0%,
            rgba(34, 34, 36, 0.8) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-section .image:hover .arrow::before {
    background: linear-gradient(135deg,
            rgba(225, 178, 97, 0.3) 0%,
            rgba(225, 178, 97, 0.2) 100%);
}

.portfolio-section .image:hover .arrow:hover {
    background: linear-gradient(135deg,
            var(--e-global-color-accent) 0%,
            rgba(225, 178, 97, 0.9) 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 178, 97, 0.4);
}

.portfolio-section .image:hover .arrow img {
    filter: brightness(0) invert(1) opacity(0.9);
}

.portfolio-section .image:hover .arrow:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: translateX(1px);
}

/* Modern Gravity Forms Styling */

.gform_wrapper {
    background: transparent !important;
    max-width: 100% !important;
    margin: 30px 0 0 0 !important;
    padding: 0 !important;
    border: none !important;
}

.gform_wrapper .gform_heading {
    display: none !important;
}

.gform_wrapper .gform_body {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Modern Contact Form Layout */
.modern-contact-section .gform_wrapper {
    margin: 0 !important;
}

.modern-contact-section .gform_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Full width fields */
.modern-contact-section .gform_wrapper .gfield--width-full {
    grid-column: 1 / -1 !important;
}

/* Form fields animations */
.modern-contact-section .gform_wrapper .gfield {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Side by side fields arrangement with staggered animations */
.modern-contact-section .gform_wrapper .gfield:nth-child(1) {
    /* İsim */
    grid-column: 1;
    animation-delay: 1.1s;
}

.modern-contact-section .gform_wrapper .gfield:nth-child(2) {
    /* Soyisim */
    grid-column: 2;
    animation-delay: 1.2s;
}

.modern-contact-section .gform_wrapper .gfield:nth-child(3) {
    /* Telefon */
    grid-column: 1;
    animation-delay: 1.3s;
}

.modern-contact-section .gform_wrapper .gfield:nth-child(4) {
    /* Email */
    grid-column: 2;
    animation-delay: 1.4s;
}

.modern-contact-section .gform_wrapper .gfield:nth-child(5) {
    /* Mesaj */
    grid-column: 1 / -1;
    animation-delay: 1.5s;
}

.gform_wrapper .gform_fields {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.gform_wrapper .gfield--width-full {
    grid-column: 1 / -1 !important;
}

.gform_wrapper .gfield {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    list-style: none !important;
}

.gform_wrapper .gfield_label {
    display: none !important;
}

.gform_wrapper .ginput_container {
    margin: 0 !important;
    padding: 0 !important;
}

/* Modern Contact Form Input Styling */
.modern-contact-section .gform_wrapper .ginput_container input,
.modern-contact-section .gform_wrapper .ginput_container textarea {
    width: 100% !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
    color: var(--e-global-color-text) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 18px 0 12px 0 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:focus,
.modern-contact-section .gform_wrapper .ginput_container textarea:focus {
    border-bottom-color: var(--e-global-color-accent) !important;
    color: var(--e-global-color-white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(225, 178, 97, 0.1) !important;
}

.modern-contact-section .gform_wrapper .ginput_container input,
.modern-contact-section .gform_wrapper .ginput_container textarea {
    position: relative !important;
}

.modern-contact-section .gform_wrapper .ginput_container input::after,
.modern-contact-section .gform_wrapper .ginput_container textarea::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--e-global-color-accent) !important;
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:focus::after,
.modern-contact-section .gform_wrapper .ginput_container textarea:focus::after {
    width: 100% !important;
}

.modern-contact-section .gform_wrapper .ginput_container input::placeholder,
.modern-contact-section .gform_wrapper .ginput_container textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    font-weight: 400 !important;
}

.modern-contact-section .gform_wrapper .ginput_container textarea {
    height: 120px !important;
    resize: none !important;
    overflow: auto !important;
    min-height: 120px !important;
    max-height: 180px !important;
    margin-top: 10px !important;
}

/*/ Autofill styles for modern contact form */
.modern-contact-section .gform_wrapper .ginput_container input:-webkit-autofill,
.modern-contact-section .gform_wrapper .ginput_container textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #222224 inset !important;
    box-shadow: 0 0 0 1000px #222224 inset !important;
    -webkit-text-fill-color: var(--e-global-color-white) !important;
    color: var(--e-global-color-white) !important;
    border-bottom-color: var(--e-global-color-accent) !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: var(--e-global-color-accent) !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:-webkit-autofill:focus,
.modern-contact-section .gform_wrapper .ginput_container textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #222224 inset !important;
    box-shadow: 0 0 0 1000px #222224 inset !important;
    border-bottom-color: var(--e-global-color-accent) !important;
    color: var(--e-global-color-white) !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:-webkit-autofill::first-line,
.modern-contact-section .gform_wrapper .ginput_container textarea:-webkit-autofill::first-line {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:-internal-autofill-selected,
.modern-contact-section .gform_wrapper .ginput_container textarea:-internal-autofill-selected {
    background-color: #222224 !important;
    color: var(--e-global-color-white) !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:-moz-autofill,
.modern-contact-section .gform_wrapper .ginput_container textarea:-moz-autofill {
    box-shadow: 0 0 0 1000px #222224 inset !important;
    -moz-box-shadow: 0 0 0 1000px #222224 inset !important;
    color: var(--e-global-color-white) !important;
    border-bottom-color: var(--e-global-color-accent) !important;
    caret-color: var(--e-global-color-accent) !important;
}

.modern-contact-section .gform_wrapper .ginput_container input:-ms-input-autofill,
.modern-contact-section .gform_wrapper .ginput_container textarea:-ms-input-autofill {
    background: #222224 !important;
    color: var(--e-global-color-white) !important;
    border-bottom-color: var(--e-global-color-accent) !important;
    caret-color: var(--e-global-color-accent) !important;
}


.gform_wrapper .ginput_container input,
.gform_wrapper .ginput_container textarea {
    width: 100% !important;
    font-size: 16px !important;
    line-height: 22px !important;
    font-weight: 500 !important;
    color: var(--e-global-color-text) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--e-global-color-very-dark-grayish-blue) !important;
    margin: 0 0 15px 0 !important;
    padding: 15px 0 10px 0 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease-in-out !important;
    display: block !important;
}

.gform_wrapper .ginput_container input:focus,
.gform_wrapper .ginput_container textarea:focus {
    border-bottom-color: var(--e-global-color-accent) !important;
    color: var(--e-global-color-white) !important;
}

.gform_wrapper .ginput_container input::placeholder,
.gform_wrapper .ginput_container textarea::placeholder {
    color: var(--e-global-color-text) !important;
    opacity: 1 !important;
}

.gform_wrapper .ginput_container textarea {
    height: 120px !important;
    resize: none !important;
    overflow: auto !important;
    min-height: 120px !important;
    max-height: 200px !important;
    margin-top: 10px !important;
}

.gform_wrapper .gform_footer {
    background: transparent !important;
    padding: 30px 0 0 0 !important;
    margin: 0 !important;
    border: none !important;
    text-align: left !important;
}

.gform_wrapper .gform_button {
    font-size: 20px !important;
    line-height: 26px !important;
    font-weight: 500 !important;
    background: transparent !important;
    color: var(--e-global-color-white) !important;
    position: relative !important;
    display: inline-block !important;
    overflow: visible !important;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
}

.gform_wrapper .gform_button::after {
    content: '';
    font-size: 24px !important;
    position: absolute !important;
    border: 1px solid var(--e-global-color-accent) !important;
    background: var(--e-global-color-accent) !important;
    width: 65px !important;
    height: 65px !important;
    line-height: 65px !important;
    font-family: 'FontAwesome' !important;
    text-align: center !important;
    border-radius: 100px !important;
    transition: all 0.3s ease-in-out !important;
    right: -18px !important;
    top: 4px !important;
    transform: rotate(326deg) !important;
}

.gform_wrapper .gform_button::after {
    content: '\f061' !important;
}

.gform_wrapper .gform_button:hover {
    color: var(--e-global-color-accent) !important;
}

/* Modern Contact Form Button */
.modern-contact-section .gform_wrapper .gform_footer {
    background: transparent !important;
    padding: 30px 0 0 0 !important;
    margin: 0 !important;
    border: none !important;
    text-align: left !important;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.7s forwards;
}

.modern-contact-section .gform_wrapper .gform_button {
    font-size: 15px !important;
    line-height: 20px !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg,
            rgba(225, 178, 97, 0.1) 0%,
            rgba(225, 178, 97, 0.05) 100%) !important;
    color: var(--e-global-color-white) !important;
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 25px 12px 18px !important;
    border: 1px solid rgba(225, 178, 97, 0.3) !important;
    border-radius: 35px !important;
    overflow: hidden !important;
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-transform: uppercase !important;
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    margin: 0 !important;
}

.modern-contact-section .gform_wrapper .gform_button::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%) !important;
    transition: left 0.6s ease !important;
    z-index: 1 !important;
}

.modern-contact-section .gform_wrapper .gform_button::after {
    content: '\f061' !important;
    font-size: 12px !important;
    font-family: 'FontAwesome' !important;
    color: var(--e-global-color-accent) !important;
    background: rgba(225, 178, 97, 0.15) !important;
    border: 1px solid rgba(225, 178, 97, 0.4) !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    z-index: 2 !important;
    position: relative !important;
}

.modern-contact-section .gform_wrapper .gform_button:hover {
    color: var(--e-global-color-accent) !important;
    border-color: var(--e-global-color-accent) !important;
    background: linear-gradient(135deg,
            rgba(225, 178, 97, 0.2) 0%,
            rgba(225, 178, 97, 0.1) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow:
        0 8px 20px rgba(225, 178, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.modern-contact-section .gform_wrapper .gform_button:hover::before {
    left: 100% !important;
}

.modern-contact-section .gform_wrapper .gform_button:hover::after {
    background: var(--e-global-color-accent) !important;
    color: var(--e-global-color-very-dark-mostly-black-blue) !important;
    border-color: var(--e-global-color-accent) !important;
    transform: rotate(360deg) scale(1.1) !important;
}

.modern-contact-section .gform_wrapper .gform_button:active {
    transform: translateY(-1px) !important;
    box-shadow:
        0 8px 20px rgba(225, 178, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Subtle pulsing effect */
.modern-contact-section .gform_wrapper .gform_button {
    animation: subtlePulse 3s ease-in-out infinite 2s !important;
}

/* ===============================
   CONTACT VISIBILITY FIX
   =============================== */

/* Override opacity animations for contact form and map */
.modern-contact-section .form-content {
    opacity: 1 !important;
    animation: none !important;
}

.modern-contact-section .contact-tag {
    opacity: 1 !important;
    animation: none !important;
}

.modern-contact-section .contact-header h2 {
    opacity: 1 !important;
    animation: none !important;
}

.modern-contact-section .contact-header p {
    opacity: 1 !important;
    animation: none !important;
}

.modern-contact-section .map-wrapper {
    opacity: 1 !important;
    animation: none !important;
}

.modern-contact-section .gform_wrapper .gfield {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.modern-contact-section .gform_wrapper .gform_footer {
    opacity: 1 !important;
    animation: none !important;
}

.modern-contact-section .gform_wrapper .gform_button {
    animation: none !important;
}

/* Ensure iframe is always visible */
.map-wrapper iframe {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Additional safety measures */
.modern-contact-section {
    visibility: visible !important;
}

.modern-contact-section .contact-form-wrapper,
.modern-contact-section .map-wrapper {
    visibility: visible !important;
    display: block !important;
}

@keyframes subtlePulse {

    0%,
    100% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 0 rgba(225, 178, 97, 0.3);
    }

    50% {
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 4px rgba(225, 178, 97, 0.1);
    }
}

/* Loading state for form submission */
.modern-contact-section .gform_wrapper .gform_button.submitting {
    pointer-events: none !important;
    opacity: 0.8 !important;
}

.modern-contact-section .gform_wrapper .gform_button.submitting::after {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid rgba(225, 178, 97, 0.3) !important;
    border-top: 2px solid var(--e-global-color-accent) !important;
    border-radius: 50% !important;
    animation: spin 1s linear infinite !important;
    background: transparent !important;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Success state */
.modern-contact-section .gform_wrapper .gform_button.success {
    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.2) 0%,
            rgba(34, 197, 94, 0.1) 100%) !important;
    border-color: #22c55e !important;
    color: #22c55e !important;
}

.modern-contact-section .gform_wrapper .gform_button.success::after {
    content: '\f00c' !important;
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.2) !important;
    border-color: #22c55e !important;
    animation: successBounce 0.6s ease-out !important;
}

@keyframes successBounce {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.gform_wrapper .gform_button:hover::after {
    background: transparent !important;
    border: 1px solid var(--e-global-color-accent) !important;
}

/* Form Validation Styling */
.gform_wrapper .gfield_error {
    background: transparent !important;
}

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
    border-bottom-color: #ff4444 !important;
}

.gform_wrapper .validation_error {
    display: none !important;
}

.gform_wrapper .gfield_error .validation_message {
    color: #ff4444 !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block !important;
}

/* Additional form spacing fixes */
.gform_wrapper .gfield--width-half {
    width: 100% !important;
    max-width: 100% !important;
}

.gform_wrapper .gfield--input-type-text,
.gform_wrapper .gfield--input-type-phone,
.gform_wrapper .gfield--input-type-email,
.gform_wrapper .gfield--input-type-textarea {
    position: relative !important;
    display: block !important;
}

/* Clear any floats */
.gform_wrapper .gform_fields::after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

/* Remove default GF styling */
.gform_wrapper .gform-theme--foundation {
    --gf-color-primary: var(--e-global-color-accent) !important;
    --gf-color-primary-rgb: 225, 178, 97 !important;
    --gf-color-primary-contrast: var(--e-global-color-white) !important;
    --gf-color-secondary: var(--e-global-color-very-dark-mostly-black-blue) !important;
    --gf-ctrl-border-color: var(--e-global-color-very-dark-grayish-blue) !important;
    --gf-ctrl-label-color-primary: var(--e-global-color-white) !important;
    --gf-ctrl-label-color-secondary: var(--e-global-color-text) !important;
}

/* Success Message Styling */
.gform_confirmation_wrapper {
    background: rgba(var(--e-global-color-accent-rgb), 0.1) !important;
    border: 1px solid var(--e-global-color-accent) !important;
    border-radius: 8px !important;
    padding: 20px !important;
    color: var(--e-global-color-white) !important;
    text-align: center !important;
}

.gform_confirmation_message {
    color: var(--e-global-color-white) !important;
    font-size: 18px !important;
    line-height: 26px !important;
    margin: 0 !important;
}

/* Loading Spinner */
.gform_wrapper .gform_ajax_spinner {
    position: absolute !important;
    right: -80px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
}

/* Service Detail */

.service_detail {
    padding: 130px 0 120px;
    background: url(../images/service-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.service_detail .main-box {
    position: relative;
}

.service_detail .main-box .image {
    margin-bottom: 30px;
}

.service_detail .main-box .image img {
    width: 100%;
}

.service_detail .main-box h3 {
    font-size: 24px;
    line-height: 30px;
    color: var(--e-global-color-white);
}

.service_detail .main-box p {
    margin-bottom: 10px;
}

.service_detail .main-box .text2 {
    margin-bottom: 20px;
}

.service_detail .main-box .list {
    margin-bottom: 20px;
}

.service_detail .main-box .list li {
    margin-bottom: 6px;
    padding-left: 28px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
    color: var(--e-global-color-text);
}

.service_detail .main-box .list li i {
    font-size: 9px;
    height: 16px;
    width: 16px;
    line-height: 17px;
    top: 2PX;
    left: 0;
    border-radius: 100px;
    position: absolute;
    text-align: center;
    display: inline-block;
    background-color: var(--e-global-color-accent);
    color: var(--e-global-color-black);
}

.servicedetail-page {
    background: url(../images/banner-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}