/* ===================================
   Medyatek - Custom Styles
   =================================== */

:root {
    --primary-color: #fe7c01;/*#ff6600;*/
    --secondary-color: #000000;
    --accent-color: #ff8533;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;

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

/* ===================================
   General Styles
   =================================== */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
}

 

body.navbar-padded {
    padding-top: 90px;
}

/* ===================================
   Navbar Styles
   =================================== */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1030;
    width: 100%;
    max-width: 100vw; /* Mobil görünümde ekran genişliğini aşmasın */
    overflow-x: hidden; /* Yatay taşmayı önle */
}

.navbar .container {
    width: 100%;
    max-width: 100%; /* Container'ın navbar'ı aşmamasını garanti et */
    padding-left: 15px; /* Bootstrap default */
    padding-right: 15px; /* Bootstrap default */
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98) !important; 
}

.navbar-brand .logo {
    height: 80px;
    margin: -1rem;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand .logo {
    height: 60px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    border-color: var(--primary-color);
    z-index: 1040;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff6600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   Hero Section with LED Effect
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 102, 0, 0.3));
    z-index: 1;
}

.led-grid-dense {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to bottom, 
            transparent 0%, 
            transparent 92%, 
            #252525 91%,
            #000 95%,
            transparent 95%,
            transparent 100%),
        linear-gradient(to right, 
            transparent 0%, 
            transparent 92%, 
            #252525 91%,
            #000 95%,
            transparent 95%,
            transparent 100%);
    
    background-size: 20px 20px;
    z-index: 15;
    opacity: 0.8;
    pointer-events: none;
}

@media (max-width: 768px) {
    .led-grid-dense {
       
        background-image: 
            linear-gradient(to bottom, 
                transparent 0%, 
                transparent 90%, 
                #252525 91%,  /* Daha koyu renk ve kalın (2px) */
                #000 93%,
                transparent 94%,
                transparent 100%),
            linear-gradient(to right, 
                transparent 0%, 
                transparent 90%, 
                #252525 91%,
                #000 93%,
                transparent 94%,
                transparent 100%); 
                opacity: 0.4;
    }
}

.led-glowing-squares {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 16;
    pointer-events: none;
}

.glowing-square {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 0 5px rgba(255, 255, 255, 0.6),
        0 0 10px rgba(255, 255, 255, 0.4);
    border-radius: 1px;
    animation: slowGlow 8s ease-in-out infinite;
    opacity: 0;
}

@keyframes slowGlow {
    0%, 90% {
        opacity: 0;
        transform: scale(0.9);
    }
    5%, 15% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    10% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.glowing-square.red {
    background: rgba(255, 100, 100, 0.6);
    box-shadow: 
        0 0 5px rgba(255, 100, 100, 0.5),
        0 0 10px rgba(255, 100, 100, 0.3);
}

.glowing-square.blue {
    background: rgba(100, 100, 255, 0.6);
    box-shadow: 
        0 0 5px rgba(100, 100, 255, 0.5),
        0 0 10px rgba(100, 100, 255, 0.3);
}
/* Container için ek stiller */
.led-container {
    position: relative;
    overflow: hidden;
}

.led-container .hero-overlay {
    z-index: 10;
}

.led-container .hero-content {
    z-index: 20;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.led-text {
    animation: ledGlow 2s ease-in-out infinite;
}

@keyframes ledGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(255, 102, 0, 0.5),
            0 0 20px rgba(255, 102, 0, 0.5),
            0 0 30px rgba(255, 102, 0, 0.5);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255, 102, 0, 0.8),
            0 0 30px rgba(255, 102, 0, 0.8),
            0 0 40px rgba(255, 102, 0, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* ===================================
   Sections
   =================================== */

.section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */

.about-section {
    background: #fff;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
}

.experience-badge p {
    margin: 0;
    font-size: 1rem;
}

/* ===================================
   Service Cards
   =================================== */

.services-section {
    background: var(--light-bg);
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.service-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.service-title a:hover {
    color: var(--primary-color);
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent-color);
}

/* ===================================
   Stats Section
   =================================== */

.stats-section {
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.stat-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ===================================
   Blog Section
   =================================== */

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-date .month {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-color);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================================
   Buttons
   =================================== */

   
.btn {
     
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
   
    transform: translateY(-2px); 
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark-bg);
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 3px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: none;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
}

.newsletter-message {
    font-size: 0.875rem;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   WhatsApp Float Button
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-form {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.whatsapp-header {
    background: #25D366;
    color: #fff;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-header h5 {
    margin: 0;
    font-size: 1rem;
}

.btn-close-wp {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.whatsapp-body {
    padding: 1rem;
}

/* ===================================
   Scroll to Top Button
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.scroll-top.show {
    display: flex;
}

/* ===================================
   Breadcrumb
   =================================== */

.breadcrumb-wrapper {
    background: #f8f9fa;
    padding: 1rem 0;
    border-radius: 10px;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    z-index: 1025;
}

.detail-header .breadcrumb-wrapper {
    background: none;
    padding: 0;
    border: none;
    position: relative;
    z-index: 10;
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: #6c757d;
}

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

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item .lb-number {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: rgba(0, 0, 0, 0.7) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 25px !important;
}

@media (max-width: 991px) {
    .about-image-wrapper {
        position: relative;
        margin-top: 2rem;
    }

    .experience-badge {
        position: static;
        margin: 2rem auto 0;
        transform: none;
        min-width: 200px;
        min-height: auto;
        padding: 1.5rem;
    }

    .about-image {
        position: relative;
        overflow: visible;
    }
}

@media (max-width: 767px) {
    .about-image-wrapper {
        margin-top: 1.5rem;
    }

    .experience-badge {
        min-width: 180px;
        padding: 1.25rem;
    }

    .experience-badge h3 {
        font-size: 2.5rem;
    }

    .experience-badge p {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: #fff;
        margin-bottom: 1.5rem;
        text-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    }
}

/* ===================================
   Footer Styles
   =================================== */

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/****************************************/

/* ===================================
   Services Section
   =================================== */

.services-listing {
    min-height: 400px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.service-views {
    color: #999;
    font-size: 0.875rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border-color: #e0e0e0;
    margin: 0 0.25rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===================================
   Contact Section
   =================================== */

.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #000 0%, #ff6600 100%);
    color: #fff;
}

.page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cat-breadcrumb {
    background: none;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cat-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.cat-breadcrumb-item.active {
    color: #fff;
}

.contact-info-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-info-card p {
    margin: 0;
    color: #666;
}

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

.contact-info-card a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.1);
}

/* ===================================
   Blog Detail Section
   =================================== */

.detail-header {
    position: relative;
    padding: 200px 0 120px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.video-background,
.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-image {
    background-size: cover;
    background-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(255, 102, 0, 0.4));
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.detail-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.detail-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.content-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.keywords-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.keywords-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.keyword-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
    text-decoration: none;
}

.gallery-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

.sidebar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.service-list li {
    margin-bottom: 0.75rem;
}

.service-list a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.service-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.service-list i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.share-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25D366;
}

.sidebar-gallery {
    max-height: 400px;
    overflow-y: auto;
}

.gallery-row {
    display: flex;
    gap: 0.5rem;
}

.gallery-item-small {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item-small:hover img {
    transform: scale(1.1);
}

/* ===================================
   404 Error Page
   =================================== */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* ===================================
   Blog Section
   =================================== */

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    color: #999;
    font-size: 0.875rem;
}

/* ===================================
   Corporate Section
   =================================== */

.corporate-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.corporate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.2);
}

.corporate-image {
    height: 300px;
    overflow: hidden;
}

.corporate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.corporate-card:hover .corporate-image img {
    transform: scale(1.1);
}

.corporate-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.corporate-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.corporate-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.corporate-title a:hover {
    color: var(--primary-color);
}

.corporate-description {
    color: #666;
    margin-bottom: 1.5rem;
    flex: 1;
}

.z-20{
    z-index: 20;
}
