/* Reset ve temel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: linear-gradient(135deg, #e8edff 0%, #fff1f8 100%);
    color: #111;
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
}

/* Navigasyon */
.header {
    padding: 15px 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo img {
    height: 30px;
    margin-right: 8px;
}

.navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.7rem 1.5rem;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
    display: inline-block;
}

.nav-item-separator {
    color: #bbb;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.get-in-touch {
	background: #121857;
	background: radial-gradient(circle, rgba(18, 24, 87, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(18, 24, 87, 1) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.detaybutton {
	background: #FFFFF;
    color: black;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1.2rem;
	margin: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
	
}


/* Hero bölümü */
.hero-container {
    padding-top: 4rem;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-bottom: 2rem;
    position: relative;
}

/* Hero başlığı için yeni stil (eskiden about başlığı stili) */
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content:before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    right: 30%;
    z-index: 1;
    border-radius: 50%;
}

.team-image {
    display: inline-block;
    width: 140px;
    height: 50px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.stats {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.customer-avatars {
    display: flex;
    margin-right: 1rem;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ff9d5c;
    border: 2px solid white;
    margin-right: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 10px;
}

.stats-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.stats-subtext {
    font-size: 0.7rem;
    color: #777;
    display: block;
}

/* About bölümü */
.about {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.about-content {
    max-width: 800px;
}

/* About başlığı için yeni stil (eskiden hero başlığı stili) */
.about-content h2 {
	
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
    text-align: center;
}

/* Hizmetler bölümü */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.cta-card {
    background-color: #6c7cff;
    border-radius: 15px;
    color: white;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cta-content {
    padding: 1rem 0;
}

.cta-tag {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-image {
    display: flex;
    align-items: bottom;
    justify-content: center;
	
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
	margin-bottom: -2rem;
	margin-right: 2rem;
	
}

.talk-button {
    background-color: #444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer bölümü */
.footer {
	background: #121857;
	background: radial-gradient(circle, rgba(18, 24, 87, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(18, 24, 87, 1) 100%);
    padding: 5rem 2rem 2rem;
    margin: 5rem 30px 30px;
    border-radius: 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-links-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 1rem;
}

.footer-links-list a {
    color: white;
    text-decoration: none;
    position: relative;
}

.footer-links-list a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-links-list a:hover:after {
    width: 100%;
}

.footer-address p {
	color: white;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-address a {
    color: #5271ff;
    text-decoration: none;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    align-items: center;
}

.footer-social-text {
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Responsive stiller */
@media (max-width: 1200px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content h2 {
        font-size: 4rem;
    }
    
    .navbar-container {
        flex-wrap: wrap;
    }
    
    .navbar {
        position: relative;
        left: auto;
        transform: none;
        margin: 1rem 0;
        width: 100%;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .get-in-touch {
        order: 2;
    }
    
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-column:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content h2 {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .about-content p {
        text-align: center;
    }
    
    .about {
        grid-template-columns: 1fr;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0.3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-column:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem;
    }
    
    .nav-links {
        gap: 0;
    }
    
    .nav-links a {
        padding: 0.3rem;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .about-content h2 {
        font-size: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-column:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}