/* OT Defend Ana CSS Dosyası */

:root {
    --primary-color: #a81c34;
    --primary-dark: #8a1729;
    --primary-light: #c8324c;
    --secondary-color: #0c1c44;
    --secondary-dark: #081431;
    --secondary-light: #172f6d;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --section-bg: #f9fafb;
    --gray-bg: #f5f5f5;
}

/* Genel Stiller */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f5f7fa;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Butonlar */
.btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

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

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.outline-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 15px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

/* Header Alanı */
.header-area {
    padding: 10px 0;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo img {
    max-height: 45px;
}

.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}

.main-menu ul li {
    display: inline-block;
    position: relative;
    margin-left: 25px;
}

.main-menu ul li a {
    display: block;
    padding: 8px 0;
    color: #333;
    font-weight: 600;
    position: relative;
}

.main-menu ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-menu ul li a:hover:after {
    transform: scaleX(1);
}

.main-menu ul li.active a {
    color: var(--primary-color);
    position: relative;
}

.main-menu ul li.active a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(1);
}

.main-menu ul li .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--white);
    width: 220px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    text-align: left;
}

.main-menu ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu ul li .submenu li {
    display: block;
    margin: 0;
}

.main-menu ul li .submenu li a {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Sayfa Başlık Alanı */
.page-title-area {
    padding: 60px 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-title-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 28, 68, 0.7), rgba(168, 28, 52, 0.7));
}

.page-title-content {
    position: relative;
    z-index: 1;
    padding: 5px 0;
}

.page-title-content h2 {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 5px 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Bölüm Başlığı */
.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary-color);
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

/* Form Stilleri */
.form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(168, 28, 52, 0.25);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.form-group .required {
    color: #dc3545;
}

/* Footer Alanı */
.footer-area {
    background-color: var(--secondary-color);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.copyright-text a {
    color: rgba(255, 255, 255, 0.7);
}

.copyright-text a:hover {
    color: #fff;
}

/* Demo Talep Sayfası Özellikleri */
.demo-intro-content {
    padding-right: 30px;
}

.demo-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.demo-features ul li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.demo-features ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.demo-form-wrapper {
    background-color: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group .form-check {
    margin-bottom: 10px;
}

.process-item {
    text-align: center;
    margin-bottom: 30px;
}

.process-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #f5f7fa;
    color: var(--primary-color);
    font-size: 36px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.process-number {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    top: 0;
    right: 0;
}

/* Accordion Stilleri */
.accordion .card {
    margin-bottom: 10px;
    border: none;
    border-radius: 6px;
    overflow: hidden;
}

.accordion .card-header {
    padding: 0;
    background-color: #fff;
    border: none;
}

.accordion .card-header h5 button {
    display: block;
    width: 100%;
    padding: 20px;
    text-align: left;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.accordion .card-header h5 button:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion .card-header h5 button.collapsed:after {
    content: '\f105';
}

.accordion .card-body {
    padding: 20px;
    background-color: #f8f9fa;
}

/* İletişim CTA */
.contact-cta {
    background-color: #f5f7fa;
}

.contact-cta-inner {
    background-color: #fff;
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contact-cta-inner h3 {
    margin-bottom: 15px;
}

.contact-cta-inner p {
    margin-bottom: 25px;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .page-title-area {
        padding: 80px 0;
    }
    
    .page-title-content h2 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .page-title-area {
        padding: 60px 0;
    }
    
    .page-title-content h2 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .demo-intro-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

/* Hero Bölümü */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    background-color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.hero-content h6 {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.feature-item {
    background-color: var(--white);
    border: 1px solid rgba(12, 28, 68, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.shape1 {
    position: absolute;
    top: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    opacity: 0.4;
    animation: rotate 60s linear infinite;
}

.shape2 {
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 700px;
    height: 700px;
    opacity: 0.3;
    animation: rotate 80s linear infinite reverse;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Özellikler Bölümü */
.features-area {
    position: relative;
    overflow: hidden;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(12, 28, 68, 0.06);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(12, 28, 68, 0.03) 0%, rgba(168, 28, 52, 0.03) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(168, 28, 52, 0.1);
}

.feature-card:hover:before {
    height: 100%;
}

.feature-content {
    padding: 15px 5px 5px;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--white);
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper:before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background-color: rgba(255, 255, 255, 0.1);
    top: -25%;
    left: -25%;
    transform: rotate(45deg) translateX(-180%);
    transition: all 0.6s ease;
}

.feature-card:hover .feature-icon-wrapper:before {
    transform: rotate(45deg) translateX(80%);
}

.feature-content h4 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* Neden Biz Bölümü */
.why-choose-us {
    position: relative;
    overflow: hidden;
}

.why-choose-image {
    position: relative;
    padding: 20px;
}

.why-choose-image:before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(168, 28, 52, 0.1), rgba(168, 28, 52, 0.05));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.why-choose-image img {
    max-width: 100%;
    height: auto;
    animation: pulse 4s infinite;
    position: relative;
    z-index: 1;
}

.why-choose-content {
    padding-left: 20px;
}

.single-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.single-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 3px solid var(--primary-color);
}

.single-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.single-item h4 i {
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.single-item:hover h4 i {
    transform: scale(1.2);
}

.single-item p {
    color: #666;
    margin-bottom: 0;
}

/* Müşteri Referansları Bölümü */
.testimonials-area {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
}

.testimonial-item:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: rgba(168, 28, 52, 0.1);
    z-index: -1;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 16px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.testimonial-author .author-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.testimonial-author .author-info span {
    font-size: 14px;
    color: var(--primary-color);
}

/* İletişim Bölümü */
.contact-form-area {
    position: relative;
}

.contact-info {
    padding: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: rgba(168, 28, 52, 0.1);
    color: var(--primary-color);
    font-size: 24px;
    border-radius: 10px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-info-item .content h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.contact-info-item .content p {
    color: #666;
    margin-bottom: 0;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    height: 55px;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: none;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(168, 28, 52, 0.1);
}

.contact-form textarea.form-control {
    height: 160px;
    resize: none;
}

.contact-form .btn {
    height: 55px;
    font-size: 16px;
}

/* Sektör Sayfası Stilleri */
.sector-image {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.sector-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(168, 28, 52, 0.1), rgba(168, 28, 52, 0.3));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.sector-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sector-image:hover:before {
    opacity: 1;
}

.sector-image img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.sector-image:hover img {
    transform: scale(1.05);
}

.sector-content {
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.sector-content:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sector-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(168, 28, 52, 0.1);
    color: var(--primary-color);
    font-size: 28px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sector-content:hover .sector-icon {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.sector-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    color: #222;
}

.sector-content h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.sector-content:hover h3:after {
    width: 80px;
}

.sector-content ul {
    margin: 0 0 20px 0;
    padding: 0;
    list-style: none;
}

.sector-content ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.sector-content ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.sector-content ul li:hover {
    padding-left: 35px;
}

.sector-content ul li:hover i {
    color: var(--primary-dark);
    transform: scale(1.2);
}

.compliance-badges {
    margin-top: 15px;
}

.compliance-badges .badge {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.compliance-badges .badge:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Diğer Sektörler Bölümü */
.other-sector-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.other-sector-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background-color: var(--primary-color);
    transition: all 0.5s ease;
    z-index: -1;
}

.other-sector-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

.other-sector-item:hover:before {
    height: 100%;
}

.other-sector-item .sector-icon {
    margin: 0 auto 20px;
}

.other-sector-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.other-sector-item h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.other-sector-item:hover h4:after {
    width: 100%;
}

.other-sector-item p {
    color: #666;
    margin-bottom: 20px;
}

.sector-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.sector-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.sector-link:hover {
    opacity: 1;
    color: var(--primary-dark);
    text-decoration: none;
}

.sector-link:hover i {
    transform: translateX(5px);
}

/* Ana Sektör Kartları için Ek Stiller */
.sector-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sector-content h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.sector-content ul li {
    color: #555;
    font-size: 15px;
}

/* CTA Bölümü */
.cta-area {
    position: relative;
}

.cta-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-subtitle {
    display: inline-block;
    background-color: rgba(168, 28, 52, 0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 32px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-content .btn {
    margin: 5px;
    border-radius: 30px;
    padding: 12px 25px;
}

.cta-content .secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-content .secondary-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.cta-feature-item i {
    margin-right: 10px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature-item {
        font-size: 14px;
    }
    
    .cta-feature-item i {
        font-size: 20px;
    }
}

/* Animasyonlar */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.sector-icon:hover {
    animation: pulse 1.5s infinite;
}

/* Sektör Giriş Alanı Stilleri */
.sectors-intro .intro-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.sectors-intro .sector-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.sectors-intro .sector-icon-item {
    text-align: center;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.sectors-intro .sector-icon-item:hover {
    transform: translateY(-10px);
}

.sectors-intro .sector-intro-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background-color: rgba(168, 28, 52, 0.1);
    color: var(--primary-color);
    font-size: 36px;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sectors-intro .sector-intro-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.5s ease;
    z-index: -1;
}

.sectors-intro .sector-icon-item:hover .sector-intro-icon {
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.sectors-intro .sector-icon-item:hover .sector-intro-icon:before {
    transform: scale(1);
}

.sectors-intro .sector-icon-item h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
    transition: all 0.3s ease;
}

.sectors-intro .sector-icon-item:hover h5 {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .sectors-intro .sector-icons-wrapper {
        gap: 15px;
    }
    
    .sectors-intro .sector-intro-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 28px;
    }
    
    .sectors-intro .sector-icon-item h5 {
        font-size: 14px;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-feature-item i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

.hero-feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.hero-shape {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
}

.hero-shape.shape-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: 30%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 10%;
    right: 20%;
    animation: float 6s ease-in-out infinite 1s;
    background-color: var(--secondary-color);
}

.hero-shape.shape-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 10%;
    animation: float 5s ease-in-out infinite 0.5s;
}

@media (max-width: 991px) {
    .hero-content {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}

.hero-bg-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23a81c34" fill-opacity="0.1" d="M0,192L48,208C96,224,192,256,288,250.7C384,245,480,203,576,192C672,181,768,203,864,224C960,245,1056,267,1152,266.7C1248,267,1344,245,1392,234.7L1440,224L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
    z-index: 0;
    opacity: 0.7;
}

.hero-bg-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 60%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230c1c44" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,90.7C384,96,480,128,576,149.3C672,171,768,181,864,165.3C960,149,1056,107,1152,85.3C1248,64,1344,64,1392,64L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: cover;
    z-index: 0;
    opacity: 0.8;
}

/* Tablo Stilleri */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.table thead th {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    padding: 12px 15px;
}

.table tbody tr:nth-child(even) {
    background-color: rgba(12, 28, 68, 0.05);
}

.table tbody tr:hover {
    background-color: rgba(168, 28, 52, 0.05);
}

.table-bordered {
    border: 1px solid var(--border-color);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
}

/* Tablo Stilleri */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.table thead th {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    padding: 12px 15px;
}

.table tbody tr:nth-child(even) {
    background-color: rgba(12, 28, 68, 0.05);
}

.table tbody tr:hover {
    background-color: rgba(168, 28, 52, 0.05);
}

.table-bordered {
    border: 1px solid var(--border-color);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid var(--border-color);
    padding: 12px 15px;
}

/* Features Section */
.features-section {
    background-color: var(--section-bg);
    position: relative;
    padding: 80px 0;
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(12, 28, 68, 0.06);
    margin-bottom: 30px;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(12, 28, 68, 0.03) 0%, rgba(168, 28, 52, 0.03) 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(168, 28, 52, 0.1);
}

.feature-card:hover:before {
    height: 100%;
}

.feature-content {
    padding: 15px 5px 5px;
}

.feature-content h4 {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--white);
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: 10px;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(168, 28, 52, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 28, 52, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(168, 28, 52, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(168, 28, 52, 0);
    }
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 15px;
}

.about-feature span {
    font-weight: 500;
    color: var(--secondary-color);
}

/* Sectors Section */
.sectors-section {
    padding: 100px 0;
    background-color: var(--section-bg);
    position: relative;
}

.sector-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sector-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transition: all 0.5s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sector-card:hover:before {
    height: 100%;
}

.sector-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(12, 28, 68, 0.05);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.sector-card:hover .sector-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.sector-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.sector-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.sector-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.sector-link i {
    margin-left: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sector-card:hover .sector-link {
    color: var(--primary-dark);
}

.sector-card:hover .sector-link i {
    transform: translateX(5px);
}

.features-section .row {
    margin-bottom: -30px;
}

.features-section .col-lg-4,
.features-section .col-md-6 {
    margin-bottom: 30px;
}

.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);
}

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

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