:root {
    --primary-color: #ffd026;
    --primary-yellow: #f9be30;
    --dark-color: #222222;
    --dark-bg: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: #fff;
    margin: 0;
    padding: 0;
}


.btn-appointment {
    background-color: var(--dark-color);
    color: #fff;
    border-radius: 0;
    padding: 10px 20px;
    font-weight: 500;
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--primary-color);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.btn-dark {
    background-color: var(--dark-color);
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    text-align: right;
    border-radius: 8px;
    overflow: hidden;
}
.btn-appointment {
    /* Mevcut buton stillerinizi koruyun */
    transition: background-color 0.3s ease; /* Geçiş efekti için */
  }
  
  .btn-appointment:hover {
    background-color: #f1d02c; /* Hover durumunda sarı arkaplan */
    opacity: 2;
  }


/* Section Styles */
.section-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Card Styles */
.legality-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.legality-icon {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 10px;
}

.info-card {
    background-color: var(--dark-bg);
    color: #adb5bd;
    border-radius: 0;
    height: 100%;
    padding: 2rem;
}

.info-card h3 {
    color: white;
    border-bottom: 1px solid #495057;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

/* Video Section Styles */
.bg-dark-custom {
    background-color: var(--dark-bg);
}

.bg-yellow-custom {
    background-color: var(--primary-yellow);
    position: relative;
    overflow: hidden;
}

.yellow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    width: 100%;
    background-color: #000;
    border-radius: 0;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 2;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.project-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500;
}

.project-link:hover {
    color: #f8cd45;
    text-decoration: underline;
}

.youtube-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff0000;
    border-radius: 50%;
    width: 68px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.youtube-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

/* Equipment Category Section */
.category-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header p {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.equipment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.equipment-card {
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    height: 400px;
}

.equipment-image {
    position: relative;
    height: 250px;
    background-color: var(--primary-yellow);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 75% 100%, 0 100%);
}

.equipment-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-height: 250px;
    max-width: 100%;
}

.equipment-title {
    text-align: center;
    font-size: 24px;
    padding: 20px 0;
    font-weight: bold;
}
.button-group {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 9px 7px 0 10px;
}

.book-button {
    padding: 8px 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

.primary-button {
    background-color: #ffc107; /* Sarı renk */
    color: #000; /* Sarı zemin üzerinde siyah yazı daha okunabilir */
}

.secondary-button {
    background-color: #212529; /* Koyu gri/siyah renk */
}

.primary-button:hover {
    background-color: #e0a800; /* Sarı renginin koyu tonu */
}

.secondary-button:hover {
    background-color: #1a1e21; /* #212529'un biraz daha koyu tonu */
}

/* Adjusting card styles to accommodate two buttons */
.equipment-card {
    padding-bottom: 20px;
}

.book-button:hover {
    background-color: #e0b420;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-top: px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
    }
    
    .experience-number {
        font-size: 2.8rem;
    }
    
    .experience-text {
        font-size: 0.8rem;
    }
    
    .equipment-grid {
        justify-content: center;
        gap: 15px;
    }
    
    .equipment-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .equipment-card {
        max-width: 330px;
    }
}

@media (max-width: 767.98px) {
    .equipment-card {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
.partnership-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.partner-logo {
    background-color: #333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 100px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

/* Tablet için düzen - 2 sütun */
@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobilde hala 2 sütun olsun */
    }
    
    .partner-logo {
        padding: 10px;
    }
    
    .partnership-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}
.homepage-about-img{
    height: 560px !important;
    width: 100%;
}

/* Mobil için düzen - 2 sütun korunuyor, 576px altında */
@media (max-width: 576px) {
    .homepage-about-img {
        height: 350px !important;
        width: 100%;
        justify-content: start;
    }
}
.faq-section {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-subtitle {
    color: #ffd700;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 32px;
    margin-top: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #ffd700;
    color: #333;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-radius: 3px;
}

.accordion-header.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-content {
    background-color: #333;
    padding: 20px;
    display: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    color: #ccc;
    line-height: 1.5;
}

.accordion-content.open {
    display: block;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-icon.open {
    transform: rotate(180deg);
}

.dark-accordion .accordion-header {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
.faq-section {
    padding: 40px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-subtitle {
    color: #ffd700;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 32px;
    margin-top: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-header {
    background-color: #ffd700;
    color: #333;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    border-radius: 3px;
}

.accordion-header.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-content {
    background-color: #333;
    padding: 20px;
    display: none;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    color: #ccc;
    line-height: 1.5;
}

.accordion-content.open {
    display: block;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-icon.open {
    transform: rotate(180deg);
}

.dark-accordion .accordion-header {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
.footer {
    background-color: #f8cd45; /* Ana footer rengi */
    color: #333;
    padding: 2rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-brand {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    max-height: 100px;
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333; /* Koyu arka plan sosyal ikonlar için */
    color: #f8cd45; /* İkon rengi footer rengiyle aynı */
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #222;
    transform: translateY(-3px);
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    color: #333;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #333; /* Başlık altındaki çizgi */
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #000;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #333;
}

.terms a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.terms a:hover {
    color: #000;
    text-decoration: underline;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links-container {
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
.animated-image {
    opacity: 0;
}

.animate__animated {
    opacity: 1;
    --animate-duration: 2s;
}
        .animated-box {
        opacity: 0;
    }

    .animate__animated {
        opacity: 1;
    }

    @media (max-width: 768px) {
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
    }