/* Theme by ramazanalkan.com */

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    backdrop-filter: blur(10px);
}

header .navbar-nav .nav-link {
    color: #64748b !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link.active {
    color: #004061 !important;
    background-color: rgba(0, 64, 97, 0.1);
    border-radius: 12px;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.4) 40%, rgba(0, 0, 0, 0.9) 100%);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

#urunler .card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#urunler .card img {
    object-fit: cover;
}

#urunler .card a {
   transition: 0.5s;
}

#urunler .card:hover {
    border-color: #22c55e;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

#urunler .card:hover a {
    color: #22c55e!important;
}

#hizmetler .card {
    box-shadow: 0px 0px 30px 3px #00000005;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

#hizmetler .card:hover {
    box-shadow: 0px 10px 40px 5px rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
    border-color: #22c55e;
}

.gradient-card .card-body .centered-items {
    position: relative;
}

.gradient-card .card-body {
    color: #fff;
    align-items:center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.gradient-card .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)) #fff3e0;
    transition: background 1s;
}

.gradient-card:hover .card-body::before {
    background: linear-gradient(to top, rgba(34, 197, 94, 0.7), rgba(34, 197, 94, 0.3));
}

.gradient-card {
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gradient-card:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

/* Footer Styles */
.social-link:hover {
    background: rgba(34, 197, 94, 0.2) !important;
    transform: translateY(-2px);
}

.footer-link:hover {
    opacity: 1 !important;
    color: #22c55e !important;
    transform: translateX(5px);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-info:hover .contact-icon {
    transform: scale(1.1);
}

/* Hero Section Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Hero Button Hover Effects */
#hero .btn:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 223, 45, 0.5) !important;
}

#hero .btn-outline-light:hover {
    background: rgba(251, 223, 45, 0.1);
    border-color: #fbdf2d !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 223, 45, 0.2);
}

/* Hero Image Hover Effect */
.main-image-wrapper:hover {
    transform: perspective(1000px) rotateY(-2deg) scale(1.02);
    transition: all 0.5s ease;
}

/* Floating Elements */
.floating-element {
    z-index: 10;
}

.floating-element > div {
    transition: all 0.3s ease;
}

.floating-element:hover > div {
    transform: scale(1.1);
}

