html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f9fa;
    color: #222;
    overflow-x: hidden;
}

.navbar {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.1rem 0 !important;
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 56px;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1a6d9b;
}
.logo img {
    height: 56px;
    max-height: 64px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    text-decoration: none;
    color: #39e09b !important;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #2bbf7a !important;
}
.hero {
    background: linear-gradient(90deg, #e3f2fd 0%, #f7f9fa 100%);
    padding: 3rem 0 2rem 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.2rem;
    color: #1a6d9b;
    margin: 0;
}
.about-section, .blog-section, .contact-section {
    max-width: 1100px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2rem;
}
.about-section h2, .blog-section h2, .contact-section h2 {
    color: #1a6d9b;
    margin-top: 0;
}
.solutions-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}
.card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(183, 148, 244, 0.1);
    box-shadow: 0 4px 24px rgba(183, 148, 244, 0.07);
}
.card:hover {
    box-shadow: 0 8px 32px 0 rgba(56,226,156,0.13);
    transform: scale(1.035);
}
.card h3 {
    color: #1a6d9b;
    margin-top: 0;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.card ul {
    padding-left: 1.2rem;
}
.card li {
    margin-bottom: 0.5rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem 0 0 0;
}
.contact-form input, .contact-form textarea {
    padding: 0.7rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f7f9fa;
    resize: none;
}
.contact-form button {
    background: #39e09b !important;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2.1rem;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #2bbf7a !important;
}
.footer {
    background: url('photos/footer.jpg') center center/cover no-repeat, #232323;
    color: #fff;
    padding: 0;
    margin: 0;
    border-radius: 0;
    width: 100vw;
    min-height: 340px;
    position: relative;
    box-sizing: border-box;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3.5rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.footer-columns {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    margin-bottom: 2.5rem;
}
.footer-col h4 {
    color: #39e09b !important;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: #39e09b;
}
.footer-contact {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.footer-contact-item {
    color: #e0e0e0 !important;
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.footer-social img {
    width: 32px;
    height: 32px;
    background: #e0e0e0;
    border-radius: 50%;
    padding: 4px;
    filter: none;
    transition: filter 0.2s, background 0.2s;
}
.footer-social img:hover {
    filter: brightness(0.7);
    background: #bdbdbd;
}
.footer-copyright {
    text-align: right;
    color: #d1c4e9;
    font-size: 1rem;
    padding: 0 2rem 1.2rem 2rem;
}
@media (max-width: 900px) {
    .footer-content {
        padding: 2rem 1rem 1rem 1rem;
        gap: 1.2rem;
    }
    .footer-columns {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .footer-copyright {
        text-align: center;
        padding: 0 1rem 1rem 1rem;
    }
    .solutions-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .card {
        padding: 2rem 1.2rem 1.2rem 1.2rem;
        font-size: 1rem;
    }
    .card h3 {
        font-size: 1.1rem;
    }
}
@media (max-width: 700px) {
    .navbar .container, .about-section, .blog-section, .contact-section {
        padding: 1rem;
    }
    .solutions-cards {
        grid-template-columns: 1fr;
    }
}

/* Hero ve navbar için yeni stiller */
.navbar-hero-bg {
    background: rgba(20, 30, 40, 0.85);
    box-shadow: none;
}
.hero-section {
    height: 85vh;
    background: #f7f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #222;
    position: relative;
    padding: 0 2rem;
}
.hero-frame {
    width: 97vw;
    height: 80vh;
    border: 5px solid #39e09b;
    border-radius: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: transparent;
    margin-top: 1.5vh;
    overflow: hidden;
}
.hero-section::before {
    display: none !important;
}
.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-content .highlight {
    color: #39e09b;
}
.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btn {
    display: inline-block;
    background: #39e09b;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 3rem;
}
.hero-btn:hover {
    background: #2bbf7a;
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #39e09b;
    margin-bottom: 0.5rem;
}
.stat-item span {
    font-size: 1.1rem;
    color: #fff;
}
@media (max-width: 700px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }
    .hero-section {
        min-height: 60vh;
    }
}

.about-section, .about-bg-section {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('photos/Background.png') center center/cover no-repeat !important;
}
.about-bg-section {
    min-height: 80vh;
    padding: 4vw 0;
}
.about-bg-section h2 {
    font-size: 3.2rem;
    color: #444;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: none;
    box-shadow: none;
}
.about-bg-section p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    margin: 0 auto 1.5rem auto;
    max-width: 1100px;
    text-align: center;
    background: none;
    box-shadow: none;
}
@media (max-width: 900px) {
    .about-bg-section h2 {
        font-size: 2.1rem;
    }
    .about-bg-section p {
        font-size: 0.95rem;
    }
}

.about-content, .about-bg-overlay {
    display: none !important;
}

.partners-section {
    background: #fff;
    padding: 4rem 0 4rem 0;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}
.partners-section h2 {
    font-size: 2.3rem;
    color: #444;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 2.5rem;
    padding-top: 2.5rem;
}
.partners-slider {
    overflow: hidden;
    width: 100vw;
    margin: 0 auto;
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-bottom: 2.5rem;
}
.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5 80%, rgba(245,245,245,0));
}
.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5 80%, rgba(245,245,245,0));
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: slide-logos 18s linear infinite;
}
.partners-slider img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.2s;
    background: transparent;
}
.partners-slider img:hover {
    filter: none;
}
@keyframes slide-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 700px) {
    .partners-section h2 {
        font-size: 1.3rem;
    }
    .partners-slider {
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .partners-slider::before,
    .partners-slider::after {
        width: 40px;
    }
    .partners-slider img {
        height: 40px;
        vertical-align: middle;
    }
    .partners-track {
        gap: 2rem;
        align-items: center;
        display: flex;
    }
}

.solutions-section {
    padding: 3rem 0 6rem 0;
    background: linear-gradient(135deg, #f7faff 60%, #e6f0ff 100%);
}
.solutions-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.solutions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 3rem;
    font-weight: 700;
}
.card-icon {
    margin-bottom: 1rem;
    display: inline-block;
}
.card-icon img {
    width: 40px;
    height: 40px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(190deg) brightness(118%) contrast(119%);
    transition: transform 0.3s ease;
}
.card:hover .card-icon img {
    transform: scale(1.1);
}
.card h3 {
    font-size: 1.1rem;
    color: #1a6d9b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.card-link {
    color: #39e09b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.card-link:hover {
    color: #2bbf7a;
}
@media (max-width: 1200px) {
    .solutions-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .solutions-cards {
        grid-template-columns: 1fr;
    }
    
    .solutions-section {
        padding: 4rem 0;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.contact-section {
    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
    width: 100vw !important;
    margin: 0 auto !important;
    padding: 4rem 0 6rem 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-section h2 {
    color: #444 !important;
    font-size: 1.7rem !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.contact-section p {
    color: #888 !important;
    font-size: 1.1rem !important;
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 400;
}
.contact-form {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem 1.1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1.08rem;
    background: #fafbfc;
    color: #222;
    box-sizing: border-box;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border: 1.5px solid #a78bfa;
    outline: none;
}
.contact-form button {
    background: #39e09b !important;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2.1rem;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #2bbf7a !important;
}
@media (max-width: 900px) {
    .contact-section h2 {
        font-size: 2rem !important;
    }
    .contact-section p {
        font-size: 1.1rem !important;
    }
    .contact-form {
        max-width: 98vw;
        gap: 1.2rem;
    }
    .contact-form button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Aşağıdaki promo ve apollo ile ilgili tüm CSS kodları silindi */

.feature-section {
    max-width: 950px;
    margin: 3.5rem auto 4.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 10rem;
    align-items: center;
}

.feature-header {
    display: block;
    margin-bottom: 0.7rem;
}

.feature-logo {
    width: 90px;
    height: auto;
    display: block;
    border-radius: 12px;
    background: none;
    box-shadow: none;
    margin: 0 0 1.1rem 0;
}

.feature-header h3 {
    font-size: 2.1rem;
    color: #111;
    font-weight: 700;
    margin: 0 0 1.1rem 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.18;
}

.feature-row {
    display: flex;
    align-items: stretch;
    background: #fafdff;
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(183,148,244,0.07);
    padding: 0;
    gap: 0;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 260px;
    height: 260px;
    overflow: hidden;
}

.feature-row:hover {
    box-shadow: 0 8px 32px 0 rgba(56,226,156,0.13);
    transform: scale(1.025);
}

.feature-img {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaeaff;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    min-height: unset;
}

.feature-content {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 3rem 3rem 2.5rem;
    background: transparent;
}

.feature-content h3 {
    font-size: 1.7rem;
    color: #111;
    margin: 0 0 0.7rem 0;
    font-weight: 700;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

.feature-content p {
    font-size: 1.02rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.feature-link {
    color: #39e09b;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.feature-link:hover {
    color: #2bbf7a;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 900px) {
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        min-height: unset;
        height: auto;
        max-width: 98vw;
    }
    .feature-img, .feature-content {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .feature-img {
        height: auto;
        min-height: unset;
    }
    .feature-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
        min-height: unset;
        max-height: 340px;
        display: block;
    }
    .feature-content {
        padding: 1.5rem 1rem;
    }
    .feature-header {
        margin-bottom: 0.5rem;
    }
    .feature-logo {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }
    .feature-header h3 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .feature-content p {
        font-size: 0.95rem;
    }
}

.angled-image-box {
    width: 100%;
    max-width: 900px;
    margin: 3.5rem auto 3.5rem auto;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 48px 0 rgba(40,40,80,0.13);
    transform: rotate(-5deg);
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.angled-image-box img {
    width: 60%;
    min-width: 0;
    display: block;
    object-fit: cover;
    min-height: 320px;
    max-height: 480px;
    filter: none;
    mask-image: linear-gradient(to bottom, #fff 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #fff 80%, transparent 100%);
}
.angled-image-text {
    width: 40%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 2.5rem 2.5rem 2.5rem 2rem;
    background: none;
    text-align: right;
}
.angled-image-title {
    font-size: 2.2rem;
    color: #111;
    font-weight: 700;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    margin-bottom: 1.1rem;
    line-height: 1.15;
}
.angled-image-detail {
    font-size: 1.05rem;
    color: #888;
    font-weight: 400;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .angled-image-box {
        transform: rotate(-5deg);
    }
    .angled-image-box.mirrored {
        transform: rotate(5deg);
    }
    .angled-image-box img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center;
        min-height: unset;
        max-height: 340px;
        display: block;
    }
    .angled-image-text {
        width: 100%;
        align-items: flex-start;
        text-align: left;
        padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    }
    .angled-image-title {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .angled-image-detail {
        font-size: 0.95rem;
    }
    .angled-image-box.mirrored img {
        object-position: 30% center;
    }
}

.angled-image-box.mirrored {
    transform: rotate(5deg);
    margin-bottom: 20rem;
}

.integration-section {
    background: linear-gradient(135deg, #fafdff 60%, #e6f0ff 100%);
    border-radius: 32px;
    box-shadow: 0 4px 24px 0 rgba(183,148,244,0.07);
    max-width: 1100px;
    margin: 4rem auto;
    padding: 3rem 2rem 2.5rem 2rem;
    text-align: center;
}
.integration-section h2 {
    color: #5ac8fa;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
.integration-section p {
    color: #666;
    font-size: 1.08rem;
    margin-bottom: 2.2rem;
}
.integration-icons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.integration-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    min-width: 120px;
}
.integration-icons img {
    width: 54px;
    height: 54px;
    margin-bottom: 0.3rem;
}
.integration-icons span {
    font-size: 1rem;
    color: #23242b;
    font-weight: 600;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    text-align: center;
}
@media (max-width: 900px) {
    .integration-section {
        max-width: 98vw;
        padding: 2rem 0.5rem 1.5rem 0.5rem;
    }
    .integration-section h2 {
        font-size: 1.2rem;
    }
    .integration-section p {
        font-size: 0.95rem;
    }
    .integration-icons {
        gap: 1.2rem;
    }
    .integration-icons img {
        width: 38px;
        height: 38px;
    }
    .integration-icons span {
        font-size: 0.95rem;
    }
}

.integration-line {
    height: 2px;
    width: 120px;
    border-radius: 2px;
    background: linear-gradient(90deg, #bbb 0%, #e0e0e0 50%, #bbb 100%);
    background-size: 200% 100%;
    animation: line-move 2s linear infinite;
}

@keyframes line-move {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

/* Hamburger menü stilleri */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: auto;
}
.hamburger span {
    height: 4px;
    width: 100%;
    background: #222;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Mobil navbar */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 16px;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border-radius: 10px;
        flex-direction: column;
        min-width: 160px;
        z-index: 1000;
        padding: 16px 0;
        padding-left: 18px;
        padding-right: 18px;
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .navbar .container {
        position: relative;
    }
}
