/* Main Styles for IW Tech */

:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #6c757d;
    --accent-color: #fd7e14;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;
}

/* Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background-color: var(--light-bg);
    padding: 4rem 0;
}

/* Card Animations */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px);
}

/* Navbar Customization */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo Size Customization - GÜNCELLEME: Logo 3 tık büyütüldü */
.navbar-brand img {
    max-height: 60px !important; /* Önceki değer: 40px */
    width: auto;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Product Cards */
.card {
    border-radius: 8px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
}

footer a {
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline !important;
}

/* Icon Wrapper */
.icon-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    margin-bottom: 1rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

section h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Brands */
.brands img {
    max-height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.brands img:hover {
    opacity: 1;
}

/* CTA Section */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }
    
    .hero-section img {
        margin-top: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Badge Styles */
.badge {
    padding: 0.5rem 0.8rem;
    font-weight: 500;
} 