/* Products Hero Section */
.products-hero {
    height: 60vh;
    position: relative;
    background: url('images/teknoloji_yazilim_gelistirme_program_yazdirma.jpg');
    background-size: cover;
    background-position: center -150px;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: white;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    color: white;
    line-height: 1.6;
}

.agriculture-icons, .qr-icons, .pos-icons, .restaurant-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.intro-image {
    margin: 2rem 0;
    text-align: center;
}

.intro-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intro-img:hover {
    transform: scale(1.02);
}

.agriculture-intro {
    margin: 3rem 0;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    border: 1px solid #e3f2fd;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333333;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.program-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e3f2fd;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 3rem;
    color: #0066cc;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 1rem;
    text-align: center;
}

.program-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.program-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #555;
}

.program-features li i {
    color: #64ffda;
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.program-link {
    text-align: center;
}

.program-link a {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #64ffda);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-link a:hover {
    background: linear-gradient(135deg, #64ffda, #0066cc);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.agriculture-benefits {
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.agriculture-benefits h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0066cc;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e3f2fd;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: #0066cc;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 1.5rem;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.agriculture-icons i, .qr-icons i, .pos-icons i, .restaurant-icons i {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.agriculture-icons i:nth-child(1), .qr-icons i:nth-child(1), .pos-icons i:nth-child(1), .restaurant-icons i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.agriculture-icons i:nth-child(2), .qr-icons i:nth-child(2), .pos-icons i:nth-child(2), .restaurant-icons i:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.agriculture-icons i:nth-child(3), .qr-icons i:nth-child(3), .pos-icons i:nth-child(3), .restaurant-icons i:nth-child(3) {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Products Content */
.products-content {
    padding: 4rem 5%;
    position: relative;
    z-index: 2;
    text-align: center;
}

.products-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-header {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.overview-card p {
    color: #666;
    line-height: 1.6;
}

.products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 3rem;
    color: var(--accent-color);
}

.category-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: center;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.category-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.category-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.category-link {
    text-align: center;
    margin-top: auto;
}

/* Alt Sayfa Hero Bölümleri */

/* E-Ticaret Hero */
.ecommerce-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 140, 0, 0.3) 0%, 
        rgba(255, 165, 0, 0.2) 25%, 
        rgba(255, 200, 100, 0.1) 50%, 
        rgba(255, 215, 150, 0.2) 75%, 
        rgba(255, 140, 0, 0.3) 100%
    ), 
    url('images/e-ticaret_yazilim_cozumleri_sanal_magza-1.jpg');
    background-size: cover;
    background-position: center -100px;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Mobil Uygulama Hero */
.mobile-app-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.3) 0%, 
        rgba(0, 150, 255, 0.2) 25%, 
        rgba(100, 200, 255, 0.1) 50%, 
        rgba(150, 220, 255, 0.2) 75%, 
        rgba(0, 123, 255, 0.3) 100%
    ), 
    url('images/mobil_uygulama_yazilim_gelistirme.jpg');
    background-size: cover;
    background-position: center -100px;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Web Tasarım Hero */
.web-design-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.3) 0%, 
        rgba(147, 51, 234, 0.2) 25%, 
        rgba(186, 85, 211, 0.1) 50%, 
        rgba(221, 160, 221, 0.2) 75%, 
        rgba(138, 43, 226, 0.3) 100%
    ), 
    url('images/web_tasarim_yazilim_web_sitesi_gelistirme.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Video Prodüksiyon Hero */
.video-production-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.3) 0%, 
        rgba(255, 69, 0, 0.2) 25%, 
        rgba(255, 140, 0, 0.1) 50%, 
        rgba(255, 165, 0, 0.2) 75%, 
        rgba(220, 20, 60, 0.3) 100%
    ), 
    url('images/reklam_filmi_video_edit_prodiksiyon-1.jpg');
    background-size: cover;
    background-position: center -200px;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Kurumsal Kimlik Hero */
.corporate-identity-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(25, 25, 112, 0.3) 0%, 
        rgba(47, 79, 79, 0.2) 25%, 
        rgba(105, 105, 105, 0.1) 50%, 
        rgba(128, 128, 128, 0.2) 75%, 
        rgba(25, 25, 112, 0.3) 100%
    ), 
    url('images/kurumsal-kimlik_kart_antetli_kagit-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Tarım Yazılımı Hero */
.agriculture-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(34, 139, 34, 0.3) 0%, 
        rgba(50, 205, 50, 0.2) 25%, 
        rgba(144, 238, 144, 0.1) 50%, 
        rgba(152, 251, 152, 0.2) 75%, 
        rgba(34, 139, 34, 0.3) 100%
    ), 
    url('images/tarim_yazilimi_uygulama_program.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Eğitim Hero */
.education-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.3) 0%, 
        rgba(255, 105, 180, 0.2) 25%, 
        rgba(255, 182, 193, 0.1) 50%, 
        rgba(255, 192, 203, 0.2) 75%, 
        rgba(255, 20, 147, 0.3) 100%
    ), 
    url('images/online-education.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Robotik Hero */
.robotics-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(70, 130, 180, 0.3) 0%, 
        rgba(100, 149, 237, 0.2) 25%, 
        rgba(135, 206, 235, 0.1) 50%, 
        rgba(173, 216, 230, 0.2) 75%, 
        rgba(70, 130, 180, 0.3) 100%
    ), 
    url('images/robotik_yazilim_egitimi.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Özel Yazılım Hero */
.custom-hero {
    height: 60vh;
    position: relative;
    background: url('images/otomasyon_ozel_yazilim_sistemleri.jpg');
    background-size: cover;
    background-position: center -100px;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* QR Menü Hero */
.qr-menu-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 69, 0, 0.3) 0%, 
        rgba(255, 140, 0, 0.2) 25%, 
        rgba(255, 165, 0, 0.1) 50%, 
        rgba(255, 215, 0, 0.2) 75%, 
        rgba(255, 69, 0, 0.3) 100%
    ), 
    url('images/restouran-qr-menu-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* POS Sistemi Hero */
.pos-system-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(0, 100, 0, 0.3) 0%, 
        rgba(34, 139, 34, 0.2) 25%, 
        rgba(50, 205, 50, 0.1) 50%, 
        rgba(144, 238, 144, 0.2) 75%, 
        rgba(0, 100, 0, 0.3) 100%
    ), 
    url('images/pos_market_programi_yazilimi_hizli_satis.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Restoran Yazılımı Hero */
.restaurant-hero {
    height: 60vh;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.3) 0%, 
        rgba(160, 82, 45, 0.2) 25%, 
        rgba(205, 133, 63, 0.1) 50%, 
        rgba(222, 184, 135, 0.2) 75%, 
        rgba(139, 69, 19, 0.3) 100%
    ), 
    url('images/restourant-kafe-cafe-bar-yazilimi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-hero,
    .ecommerce-hero,
    .mobile-app-hero,
    .web-design-hero,
    .video-production-hero,
    .corporate-identity-hero,
    .agriculture-hero,
    .education-hero,
    .robotics-hero,
    .custom-hero,
    .qr-menu-hero,
    .pos-system-hero,
    .restaurant-hero {
        height: 50vh;
        background-attachment: scroll;
        margin-top: 60px;
    }
    
    .products-hero h1 {
        font-size: 2rem;
    }
    
    .products-hero p {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .products-content {
        padding: 2rem 1rem;
    }
    
    .products-content h1 {
        font-size: 2rem;
    }
    
    .products-content p {
        font-size: 1rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .intro-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .agriculture-intro {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .agriculture-benefits {
        max-width: 100%;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .program-card h3 {
        font-size: 1.3rem;
    }
    
    .program-card p {
        font-size: 0.95rem;
    }
    
    .program-icon i {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item h4 {
        font-size: 1.2rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
    
    .benefit-item i {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .products-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .program-card {
        padding: 1rem;
    }
    
    .program-card h3 {
        font-size: 1.2rem;
    }
    
    .program-card p {
        font-size: 0.9rem;
    }
    
    .program-icon i {
        font-size: 2rem;
        padding: 0.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-item h4 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
        padding: 0.8rem;
    }
    
    .agriculture-intro {
        padding: 1.5rem 0.5rem;
        margin: 1.5rem 0;
        border-radius: 15px;
    }
    
    .programs-grid {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .agriculture-benefits {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .products-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-card h2 {
        font-size: 1.5rem;
    }
    
    .category-features {
        grid-template-columns: 1fr;
    }
}