
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        headerXX {
           /* background: linear-gradient(135deg, #27FD60 0%, #27FDFF 50%, #16a085 100%);*/
			/*background: linear-gradient(90deg, #7bed9f 0%, #2ecc71 50%, #1abc9c 100%);*/
			background-color: #ff6600;
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
            backdrop-filter: blur(10px);
        }
header {
    /*background: linear-gradient(90deg, #bcd9c2 0%, #cfe5d4 50%, #a9cbb7 100%);*/
	background-color: #ffffff;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.2);
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-svg {
            width: 64px;
            height: 60px;
			background-image: url("../images/logo.png");
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .logo-svg::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
			background-image: url("../images/logo.png");
        }

        .logo-text {
            font-size: 2rem;
            font-weight: bold;
            letter-spacing: -0.5px;
			color:#007A6F;
			padding-left: 10px;
        }

      /* mobile section*/
	 /* Desktop Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #f1c40f;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu Button */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Hamburger Animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 1px solid #eee;
        }

        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu ul {
            list-style: none;
            padding: 20px 0;
        }

        .mobile-menu li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu li:last-child {
            border-bottom: none;
        }

        .mobile-menu a {
            display: block;
            padding: 15px 30px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .mobile-menu a:hover {
            background: #f8f9fa;
            color: #3498db;
            padding-left: 40px;
        }

        /* Demo Content */
        .content {
            margin-top: 70px;
            padding: 50px 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .demo-section {
            margin: 40px 0;
            padding: 30px;
            background: #f8f9fa;
            border-radius: 10px;
            border-left: 4px solid #3498db;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .nav-container {
                padding: 0 15px;
                height: 60px;
            }

            .content {
                margin-top: 60px;
                padding: 30px 15px;
            }

            .logo {
                font-size: 20px;
            }

            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 14px;
            }
        }

        @media screen and (max-width: 480px) {
            .mobile-menu a {
                padding: 12px 20px;
                font-size: 15px;
            }

            .mobile-menu a:hover {
                padding-left: 30px;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
        }

        .overlay.active {
            display: block;
        }

        @media screen and (max-width: 768px) {
            .overlay {
                top: 60px;
            }
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 50%, #16a085 100%);
            color: white;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
			height: 85vh; 
        }

        .hero::before {
			width:%100;
			height:%100;
			background-size: cover;
  background-position: center;
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
           /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="agri-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><g fill="%23ffffff" opacity="0.08"><path d="M12.5 5 L8 15 L12.5 12 L17 15 Z"/><circle cx="5" cy="20" r="1.5"/><circle cx="20" cy="20" r="1.5"/><path d="M5 20 L12.5 12 L20 20"/></g></pattern></defs><rect width="100" height="100" fill="url(%23agri-pattern)"/></svg>') repeat;*/
		   /*background-image: url("../images/icerik2.png");*/
		   opacity:0.4;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
			padding: 20px;
        }

        .hero h1 {
            font-size: 3.8rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            animation: fadeInUp 1s ease-out;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.4rem;
			margin-bottom: 2.5rem;
			opacity: 0.95;
			animation: fadeInUp 1s ease-out 0.3s both;
			line-height: 1.6;
			color: #fff; 
			text-shadow: 0 2px 4px rgba(0,0,0,0.6); 
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 35px;
            background: linear-gradient(45deg, #f39c12, #f1c40f);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(241, 196, 15, 0.4);
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

        .cta-button.secondary:hover {
            background: white;
            color: #27ae60;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #27ae60, #2ecc71, #16a085);
        }

        .stat-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(39, 174, 96, 0.2);
        }

        .stat-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #27ae60;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #27ae60;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #7f8c8d;
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* Solutions Section */
        .solutions {
            padding: 120px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #222;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            color: #7f8c8d;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .solution-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem;
            border-radius: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e3e3e3;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #27ae60, #2ecc71, #16a085);
        }

        .solution-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(39, 174, 96, 0.15);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }

        .solution-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
        }

        .solution-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #2c3e50;
            font-weight: 600;
        }

        .solution-description {
            color: #7f8c8d;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .solution-features {
            list-style: none;
            padding: 0;
        }

        .solution-features li {
            color: #27ae60;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .solution-features li::before {
            content: '✓';
            color: #27ae60;
            font-weight: bold;
            margin-right: 10px;
        }

        /* Technology Section */
        .technology {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 120px 0;
            position: relative;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .tech-item {
            text-align: center;
            padding: 2.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(15px);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .tech-item:hover {
            transform: scale(1.05);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .tech-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #2ecc71;
        }

        .tech-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .tech-desc {
            opacity: 0.9;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #2c3e50;
            font-weight: 700;
        }

        .about-text p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #7f8c8d;
            margin-bottom: 2rem;
        }

        .about-image {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            height: 400px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: white;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 3rem;
            margin-bottom: 1rem;
        }

        .footer-section h3 {
            color: #2ecc71;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .footer-section p, .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            line-height: 1.8;
            font-size: 1rem;
        }

        .footer-section a:hover {
            color: #2ecc71;
            transition: color 0.3s ease;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #34495e;
            color: #95a5a6;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .solution-card, .stat-item {
                padding: 2rem;
            }
            
            .hero {
                padding: 120px 0 80px;
				
            }
        }
		 /* Bottom Bar Stilleri */
        .bottom-bar {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            margin-top: auto;
        }

        .bottom-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* Logo ve Şirket Adı */
        .company-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .company-logo {
            width: 64px;
            height: 60px;
           background-image: url("../images/logo.png");
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .company-name {
            font-size: 18px;
            font-weight: 600;
			color:#007A6F;
        }

        /* Copyright */
        .copyright {
            font-size: 14px;
            color: #bdc3c7;
            text-align: center;
        }

        /* Sosyal Medya İkonları */
        .social-media {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            background: #34495e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #ecf0f1;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .social-icon:hover {
            background: #3498db;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
        }

        /* Responsive Tasarım */
        @media (max-width: 768px) {
            .bottom-bar-container {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .company-info {
                justify-content: center;
            }

            .social-media {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .bottom-bar {
                padding: 15px 0;
            }

            .bottom-bar-container {
                padding: 0 15px;
            }

            .company-name {
                font-size: 16px;
            }

            .social-icon {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
        }
		
		
	

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.is-active {
  opacity: 1;
}

/* Overlay */
.slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh; /* Mobilde daha yüksek alan */
  }
}

.logo-container a {
           
		   display: flex;
    align-items: center;
    text-decoration: none; 
        }