/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


html {
    scroll-behavior: smooth;
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.menu-top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header {
    position: relative;
    width: 100%;
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav {
    float: right;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.second {
    width: 100%;
    display: flex
;
    padding: 20px 65px;
}

/* Canvas'ın tam ortada sabit kalmasını sağlar */
.second-bx {
    max-width: 1366px;
    margin: 0 auto;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    -webkit-box-shadow: 10px 10px 148px 7px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 10px 10px 148px 7px rgba(0, 0, 0, 0.19);
    box-shadow: 10px 10px 148px 7px rgba(0, 0, 0, 0.19);
    overflow: hidden;
}

canvas {
    position: relative;
    width:100%;
    margin: 0 auto;
    height: 100%;
    display: block;
    overflow: hidden;
    object-fit: contain;
}

/* Sayfanın kaymasını kontrol eden kısım */
.scroll-container {
    height: 600vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.third {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: #fff;
    height: 1000px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.third h2 {
    margin-bottom: 30px;
    color: #333;
}

.third p {
    color: #666;
    line-height: 1.6;
}

.first {
    width: 100%;
    height: 600px;
    align-items: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;

}

.first .title-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first .title {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;

}

.first .title h1 {
    font-size: 120px;
    font-weight: 800;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;

}




.first .subtitle p {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}



.card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    width: 420px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
}

/* Başlık */
h1 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

/* Giriş Paragrafı */
.intro {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

/* Paragraf Stili */
p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 12px 0;
}

/* Şık Ayırıcı Çizgi */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #aaa, transparent);
    margin: 15px 0;
}


.svg-call-out{

    font-size: 48px;
    color: white;
    position: absolute;
    bottom: 25%;
    right: 50%;
    opacity: 1;
    display: none;
}


.svg-line-dash{


    font-size: 48px;
    color: white;
    position: absolute;
    bottom: 25%;
    right: 50%;
    opacity: 1;
    display: none;
}

.animated-line {
    stroke-dasharray: 180; /* Çizginin toplam uzunluğu kadar */
    stroke-dashoffset: 180; /* Başlangıçta görünmez */
    animation: drawLine 1s linear forwards; /* 2 saniyede çiz */
}

@keyframes drawLine {
    from {
        stroke-dashoffset: 180;
    }
    to {
        stroke-dashoffset: 0;
    }
}