/* Wedstudios - Constrc Style */
:root {
    --primary-color: #ffb400; /* Temanın ikonik sarısı */
    --secondary-color: #1a1a1a; /* Koyu gri/siyah alanlar */
    --text-color: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --font-main: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.btn-primary-wed {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border-radius: 0;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

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

/* Hero Slider Styles */
#home-slider {
    width: 100%;
    height: calc(100vh - 50px); /* Header payı düşüldü */
    position: relative;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Görsel üzerine koyu katman */
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
}

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

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* responsive ayar */
@media (max-width: 768px) {
    #home-slider { height: 70vh; }
    .display-3 { font-size: 2.5rem; }
}

/* Service Card Styles */
.service-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary-color);
}

.service-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card a:hover {
    color: var(--primary-color) !important;
}

/* About Section Styles */
.about-img-wrap {
    padding-right: 50px;
    padding-bottom: 50px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 150px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.experience-badge h2 {
    font-size: 3rem;
    line-height: 1;
}

.about-content .list-unstyled i {
    font-size: 20px;
}

/* Projects Section Styles */
.project-item {
    cursor: pointer;
}

.project-item img {
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

/* Counter Section Styles */
.counter-section {
    background-color: var(--secondary-color) !important;
}

.counter-item .counter-value {
    font-family: 'Poppins', sans-serif;
}

/* Contact Section Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.map-wrapper iframe {
    filter: grayscale(100%) contrast(1.2) opacity(0.8);
    transition: all 0.5s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.contact-section .btn-primary-wed {
    letter-spacing: 1px;
}

/* Partners Section Styles */
.partner-logo {
    max-height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.product-thumb-slider .swiper-slide {
    opacity: 0.4;
}
.product-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary-color) !important;
}
.product-info-card {
    border: 1px solid #eee;
    border-radius: 8px;
}