/*
Theme Name: Flash Child - Android Yazılım
Theme URI: https://www.hawkvision.com.tr
Description: Flash teması üzerine kurulu özel Android yazılım şirketi teması
Author: Hawk Vision
Author URI: https://www.hawkvision.com.tr
Template: flash
Version: 1..
License: GNU General Public License v3 or later
Text Domain: flash-child
*/

/* ============================================
   ANDROID YAZILIM ŞİRKETİ ÖZEL STİLLERİ
   ============================================ */

:root {
    --primary-color: #6C63FF;
    --primary-dark: #5A52D5;
    --secondary-color: #FF6B6B;
    --accent-color: #00D2FF;
    --dark-color: #1a1a2e;
    --darker-color: #ff1a;
    --light-bg: #f8f9fe;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6C63FF %, #00D2FF 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e %, #16213e 100%);
    --shadow-sm:  2px 10px rgba(108, 99, 255, .1);
    --shadow-md:  5px 30px rgba(108, 99, 255, .15);
    --shadow-lg:  10px 50px rgba(108, 99, 255, .2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all .3s ease;
}

/* Genel Stiller */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, .98);
    box-shadow:  2px 20px rgba(, , , .08);
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: var(--transition);
}

.header-bottom {
    padding: 5px ;
}

.logo-text .site-title a {
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .site-description {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menü Stilleri */
.main-navigation ul li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    padding: 30px 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: ;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: 30px;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

.main-navigation ul ul.sub-menu {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px ;
}

.main-navigation ul ul li a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
}

.main-navigation ul ul li a::after {
    bottom: 5px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.tg-slider-widget .slider-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, .85) %, rgba(22, 33, 62, .85) 100%);
    padding: 60px;
}

.tg-slider-widget .slider-content .title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tg-slider-widget .slider-content .description {
    font-size: 18px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    max-width: 700px;
    margin:  auto;
}

.tg-slider-widget .slider-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
}

.tg-slider-widget .slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.tg-slider-widget .slider-btn.btn-slider-two {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.tg-slider-widget .slider-btn.btn-slider-two:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Slider Navigation */
.tg-slider-widget .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}

.tg-slider-widget .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrapper .section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-wrapper .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto ;
    border-radius: 2px;
}

.section-title-wrapper .section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin:  auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.tg-single-service {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(108, 99, 255, .05);
}

.tg-single-service:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tg-single-service .service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, .1) %, rgba(, 210, 255, .1) 100%);
    border-radius: 20px;
    margin:  auto 25px;
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.tg-single-service:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.tg-single-service .service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.tg-single-service .service-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.tg-single-service .service-read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tg-single-service .service-read-more:hover {
    color: var(--primary-dark);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px ;
    background: var(--white);
}

.about-section .about-content {
    padding-right: 40px;
}

.about-section .about-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-section .about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-section .about-content .about-features {
    list-style: none;
    padding: ;
    margin: 30px ;
}

.about-section .about-content .about-features li {
    padding: 10px ;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.about-section .about-content .about-features li::before {
    content: '✓';
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, .1) %, rgba(, 210, 255, .1) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: ;
}

.about-section .about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   COUNTER / STATS SECTION
   ============================================ */
.tg-fun-facts-layout-1 {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tg-fun-facts-layout-1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tg-fun-facts-layout-1 .counter-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.tg-fun-facts-layout-1 .counter-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.tg-fun-facts-layout-1 .counter-title {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 10px;
}

/* ============================================
   CALL TO ACTION
   ============================================ */
.call-to-action-section {
    position: relative;
    overflow: hidden;
}

.call-to-action-section-layout-1 {
    text-align: center;
    padding: 80px ;
}

.call-to-action-section-layout-1 .cta-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.call-to-action-section-layout-1 .cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 30px;
}

.call-to-action-section-layout-1 .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
    margin: 5px 10px;
}

.call-to-action-section-layout-1 .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.call-to-action-section-layout-1 .cta-btn.cta-btn-2 {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
}

.call-to-action-section-layout-1 .cta-btn.cta-btn-2:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.tg-single-team {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.tg-single-team:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tg-single-team .team-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.tg-single-team .team-content {
    padding: 25px 20px;
}

.tg-single-team .team-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.tg-single-team .team-designation {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.tg-single-team .team-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
    padding: 60px ;
}

.testimonial-section .testimonial-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 20px;
    text-align: center;
}

.testimonial-section .testimonial-content .testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-section .testimonial-content .testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.testimonial-section .testimonial-content .testimonial-designation {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.feature-product-section .portfolio-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-product-section .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-product-section .portfolio-item .portfolio-image img {
    transition: var(--transition);
}

.feature-product-section .portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    padding: 100px ;
    background: var(--light-bg);
}

.everest-form input[type="text"],
.everest-form input[type="email"],
.everest-form input[type="tel"],
.everest-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.everest-form input:focus,
.everest-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow:    4px rgba(108, 99, 255, .1);
    outline: none;
}

.everest-form button[type="submit"] {
    padding: 15px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.everest-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark-color) !important;
    color: rgba(255, 255, 255, .9);
}

.site-footer .footer-widget-area {
    padding: 80px  40px;
}

.site-footer .widget-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.site-footer .widget-title::after {
    content: '';
    position: absolute;
    bottom: ;
    left: ;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.site-footer p,
.site-footer li,
.site-footer .textwidget {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.8;
}

.site-footer a {
    color: rgba(255, 255, 255, .8);
}

.site-footer a:hover {
    color: var(--primary-color);
}

#bottom-footer {
    background: var(--darker-color);
    padding: 25px ;
    text-align: center;
}

#bottom-footer .copyright-text {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

/* ============================================
   BLOG / POSTS
   ============================================ */
.blog .entry-title a,
.archive .entry-title a,
.search .entry-title a {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    transition: var(--transition);
}

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

.blog .entry-meta {
    font-size: 14px;
    color: var(--text-light);
}

.blog .entry-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn, .button, input[type="submit"] {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.btn:hover, .button:hover, input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .tg-slider-widget .slider-content .title {
        font-size: 28px;
    }
    
    .tg-slider-widget .slider-content .description {
        font-size: 15px;
    }
    
    .section-title-wrapper .section-title {
        font-size: 28px;
    }
    
    .call-to-action-section-layout-1 .cta-title {
        font-size: 28px;
    }
    
    .about-section .about-content {
        padding-right: ;
        margin-bottom: 40px;
    }
    
    .tg-single-service {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .tg-slider-widget .slider-content {
        padding: 30px;
    }
    
    .tg-slider-widget .slider-content .title {
        font-size: 22px;
    }
    
    .tg-slider-widget .slider-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.tg-single-service,
.tg-single-team,
.tg-fun-facts-layout-1,
.portfolio-item {
    opacity: ;
    animation: fadeInUp .6s ease forwards;
}

.tg-single-service:nth-child(1),
.tg-single-team:nth-child(1),
.tg-fun-facts-layout-1:nth-child(1) { animation-delay: .1s; }
.tg-single-service:nth-child(2),
.tg-single-team:nth-child(2),
.tg-fun-facts-layout-1:nth-child(2) { animation-delay: .2s; }
.tg-single-service:nth-child(3),
.tg-single-team:nth-child(3),
.tg-fun-facts-layout-1:nth-child(3) { animation-delay: .3s; }
.tg-single-service:nth-child(4),
.tg-single-team:nth-child(4),
.tg-fun-facts-layout-1:nth-child(4) { animation-delay: .4s; }

@keyframes fadeInUp {
    from {
        opacity: ;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY();
    }
}
