
:root {
    --primary-color: #2268b6;
    --accent-color: #FF6500;
    --text-color: #4d4d4d;
    --dark-grey: #333333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
@keyframes soldanGelis {
    from {
        opacity: 0; /* Başlangıçta görünmez */
        transform: translateX(-50px); /* 50px soldan başlar */
    }
    to {
        opacity: 1; /* Tam görünür */
        transform: translateX(0); /* Orijinal yerine gelir */
    }
}

/* Animasyonun Uygulanacağı Temel Sınıf */
.efektli-yazi {
    opacity: 0; /* Sayfa yüklenirken ilk başta gizli olsun */
    animation: soldanGelis 1s ease-out forwards; /* 1 saniye sürsün ve bitince orada kalsın */
}

/* İkinci yazının biraz geç gelmesi için gecikme sınıfı */
.gecikme-1 {
    animation-delay: 0.3s; /* 0.3 saniye bekleyip başlasın */
}

.gecikme-2 {
    animation-delay: 0.6s; /* Buton için gerekirse 0.6 saniye beklesin */
}
/* Top Bar */
.top-bar {
    background-color: var(--dark-grey);
    color: #bbb;
    font-size: 0.85rem;
    font-family: 'Roboto', sans-serif;
}
.top-bar i { margin-right: 5px; }
.social-link {
    color: #bbb;
    margin-left: 15px;
    transition: 0.3s;
}
.social-link:hover { color: var(--accent-color); }

/* Navbar */
.navbar-brand .brand-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.navbar-brand .brand-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 3px;
}
.nav-link {
    color: var(--dark-grey) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    font-size: 15px;
    transition: 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 0;
    transition: 0.3s;
}
.btn-primary:hover {
    background-color: #e05a00;
    border-color: #e05a00;
    transform: translateY(-2px);
}
.btn-outline-light {
    border-radius: 0;
    border-width: 2px;
    padding: 10px 30px;
}
.btn-dark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 0;
    padding: 12px 30px;
}
.btn-dark:hover {
    background-color: #1a5291;
}

/* Colors */
.text-accent { color: var(--accent-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }

/* Hero Section */
.hero-section {
    height: 85vh;
    background: url('https://images.unsplash.com/photo-1541976544-2f67263ace34?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    margin-top: -1px;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url(../images/header_bg.jpg);
    filter: blur(2px);
   
}
.hero-text { font-weight: 300; font-size: 1.25rem; max-width: 600px; }

/* bizitanıyın */
.floating-video-btn {
            position: fixed;
            bottom: 40px;      
            right: 30px;       
            z-index: 1050;     
            border-radius: 50px; 
            padding: 12px 24px;
            display: flex;
            align-items: center;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: pulse-animation 2s infinite; 
        }
        @keyframes pulse-animation {
            0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(13, 110, 253, 0); }
            100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
        }

/* Page Header */
.page-header { height: 40vh; margin-top: -1px; }

/* General Components */
.divider {
    width: 80px; height: 4px; background-color: var(--accent-color);
    margin-top: 15px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background-color: var(--accent-color);
    color: white;
    padding: 20px 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cerceve {
    border: 3px solid #2268b6;
    padding: 25px;
    border-radius: 12px;
}
.kenarlik{
     border: 3px solid #2268b6;
    padding: 25px;
    border-radius: 12px;
}
.kenarlar{
     border: 3px solid #2268b6;
    padding: 25px;
    border-radius: 12px;
}

/* Service Cards */
.service-card { transition: 0.3s; border: 1px solid #eee; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; border-color: transparent; }
.icon-box {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.service-card:hover .icon-box { background-color: var(--accent-color) !important; }

/* Project Items */
.project-item { height: 350px; cursor: pointer; }
.project-item img { height: 100%; object-fit: cover; transition: 0.5s; }
.project-item:hover img { transform: scale(1.1); }
.project-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(34, 104, 182, 0.9), transparent);
    opacity: 0; transition: 0.3s;
}
.project-item:hover .project-overlay { opacity: 1; }

/* Footer */
.footer { background-color: #222; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #999; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--accent-color); padding-left: 5px; }
.copyright { background-color: #111; border-top: 1px solid #333; }

/* Form Control */
.form-control { padding: 12px; border-radius: 0; border: 1px solid #ddd; }
.form-control:focus { box-shadow: none; border-color: var(--accent-color); }

