﻿html {
    scroll-behavior: smooth;
}
:root {
    --aydogan-gold: #FFCC33;
    --aydogan-navy: #14274E;
    --aydogan-dark-gray: #343A40;
    --aydogan-light-bg: #F8F9FA;
    --aydogan-dark-bg: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--aydogan-dark-gray);
    background-color: var(--aydogan-light-bg); 
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--aydogan-navy); 
}

.text-primary {
    color: var(--aydogan-gold) !important;
}

.btn-primary,
.btn-outline-primary {
    border-radius: 50px; 
    padding: 10px 25px; 
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase; 
    letter-spacing: 0.5px;

    position: relative; 
    overflow: hidden; 
    z-index: 1; 
    transition: color 0.4s ease-in-out; 
}

.btn-primary::before,
.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0; 
    height: 100%;
    z-index: -1; 
    transition: width 0.4s ease-in-out; 
}
.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-outline-primary:hover::before,
.btn-outline-primary:focus::before {
    width: 100%; 
}

.btn-primary {
    background-color: var(--aydogan-gold) !important;
    border-color: var(--aydogan-gold) !important;
    color: var(--aydogan-navy);
}

.btn-primary::before {
    background-color: var(--aydogan-navy); 
}

.btn-primary:hover,
.btn-primary:focus {
    color: var(--aydogan-gold); 
}


.btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--aydogan-gold) !important;
    color: var(--aydogan-gold);
}

.btn-outline-primary::before {
    background-color: var(--aydogan-gold);
}


.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: var(--aydogan-navy); 
}

.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: background-color 0.4s ease-out, padding 0.4s ease-out, border-color 0.4s ease-out;
    border-bottom: 1px solid transparent;
}

.navbar-scrolled {
    background-color: rgba(20, 39, 78, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-color: rgba(255, 204, 51, 0.2);
}

.navbar-brand .logo-img {
    max-height: 50px; 
    width: auto;
    transition: max-height 0.4s ease-out;
}

.navbar-scrolled .navbar-brand .logo-img {
    max-height: 40px;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85); 
    position: relative;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active { 
    color: #fff;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--aydogan-gold);
    transition: width 0.3s ease-in-out;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar-collapse {
    background-color: transparent;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--aydogan-navy);
        border-radius: 0.5rem;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 204, 51, 0.2);
        color: white !important;
    }
}
.navbar-toggler.custom-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler.custom-toggler:focus {
    box-shadow: none;
}

.custom-toggler .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


.offcanvas {
    background: linear-gradient(180deg, var(--aydogan-navy) 0%, #101d35 100%);
    border-left: 1px solid rgba(255, 204, 51, 0.2);
}

.offcanvas-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-header .logo-img {
    max-height: 40px;
}


.offcanvas-body {
    padding: 1rem 0; 
}

.offcanvas-body .nav-item {
    margin: 0.25rem 1.5rem; 
}

.offcanvas-body .nav-link {
    font-size: 1.25rem; 
    font-weight: 400;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    border-left: 3px solid transparent; 
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}


.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link.active {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-left-color: var(--aydogan-gold); 
    transform: translateX(5px);
}

.offcanvas-social-icons {
    padding: 1rem 1.5rem;
}

.offcanvas-social-icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin: 0 0.75rem;
    transition: all 0.3s ease;
}

.offcanvas-social-icons a:hover {
    color: var(--aydogan-gold);
    transform: translateY(-3px);
}

.offcanvas-footer-text {
    padding-bottom: 1rem;
}


@media (max-width: 991.98px) {
    .navbar-brand .logo-img {
        max-height: 35px;
    }
}
.navbar-scrolled {
    background-color: rgba(20, 39, 78, 0.95); 
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tagline {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-title {
    color: var(--aydogan-navy);
    font-weight: 700;
}

.feature-list li {
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--aydogan-dark-gray);
}


@media (max-width: 991.98px) {
    .about-image-container {
        padding: 0;
        text-align: center;
    }

    .about-image-container .decorative-shape {
        display: none;
    }

    .about-text-content {
        text-align: center; 
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

.projects-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.project-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project-card-link:hover {
    color: inherit;
}

.project-card {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    z-index: 2;
}

.project-status {
    align-self: flex-start;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

    .project-status.completed {
        background-color: rgba(40, 167, 69, 0.5);
    }

    .project-status.soon {
        background-color: rgba(23, 162, 184, 0.5);
    }

.project-card-content {
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.project-card:hover .project-card-content {
    transform: translateY(0);
}

.project-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--aydogan-gold);
}

.project-location {
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.project-details-link {
    display: inline-block;
    position: relative; 
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s; 
    padding-right: 25px; 
}

.project-card:hover .project-details-link {
    opacity: 1;
    transform: translateY(0);
}

.project-details-link::after {
    content: ''; 
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 12px; 
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='12' viewBox='0 0 18 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.01 0.319997L10.59 1.74L14.17 5.32H0V7.32H14.17L10.59 10.9L12.01 12.32L18 6.32L12.01 0.319997Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-details-link:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.cta-section {
    position: relative;
    padding: 6rem 0;
    background-image: url('../images/cta-background.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    z-index: 1;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--aydogan-navy);
    opacity: 0.85; 
    z-index: -1;
}

.cta-section h2, .cta-section .lead {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}


.page-hero {
    position: relative;
    padding: 7rem 0;
    color: #fff;
    background-color: var(--aydogan-navy);
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center 30%; 
    background-blend-mode: multiply;
    box-shadow: inset 0 -10px 20px -10px rgba(0,0,0,0.4);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px var(--aydogan-gold);
    color: transparent;
}

.page-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--aydogan-gold);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--aydogan-gold); 
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/*----------------------------------------------------------------------------FOOTER START*/

.marquee-container {
    background-color: var(--aydogan-gold);
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
    border-bottom: 2px solid var(--aydogan-navy);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
}

.marquee-item {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--aydogan-navy);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 2rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.site-footer {
    background-color: var(--aydogan-dark-bg);
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.widget-title {
    color: var(--aydogan-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-widget a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
    border-left: 2px solid var(--aydogan-gold);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--aydogan-gold);
    color: var(--aydogan-navy);
    transform: translateY(-3px);
}


.copyright-area {
    background-color: #1a1a1a;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-bottom-link:hover {
    color: #fff;
    text-decoration: underline;
}


#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 85px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--aydogan-gold);
    color: var(--aydogan-navy);
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.4);
}
/*----------------------------------------------------------------------------FOOTER END*/

.whatsapp-button {
    position: fixed;
    bottom: 20px; 
    right: 20px;
    z-index: 1030; 

    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25D366; 
    color: #fff;
    border-radius: 50%; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 2rem; 
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        animation: none; 
    }

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}