 * {
            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 {
    /*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");
            border-radius: 12px;
            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;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .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%;
        }


    

   

      

        /* 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;
            }

            
        }

        @media (max-width: 480px) {
            .solution-card, .stat-item {
                padding: 2rem;
            }
            
            .hero {
                padding: 120px 0 80px;
            }
        }
		
        section {
            padding: 100px 20px 50px;
            max-width: 1200px;
            margin: auto;
        }
      
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
			padding-top:5rem;
        }
        .section-subtitle {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 2rem;
        }
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .solution-card {
            background: #f4f4f4;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        .solution-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
		
		.footer-container {
		  /*background-color: #f5f5f5;*/
		  text-align: center;
		  font-size: 14px;
		  color: #444;
		}

		.footer-logo {
		  width: 64px;
		  
		   margin-left:45px;
		}
		.footer-social {
		  margin-top: 15px;
		}
		.footer-social a {
		  margin: 0 10px;
		  color: #444;
		  transition: transform 0.3s ease, color 0.3s ease;
		  text-decoration: none;
		}
		.footer-social a:hover {
		  transform: scale(1.3);
		  color: #000;
		}
		
		
		
		  /* Product Section */
        .products-section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filter Buttons */
        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 24px;
            background: white;
            border: 2px solid #3498db;
            color: #3498db;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .product-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #f0f2f5, #e1e5e9);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, #3498db20, #2c3e5020);
        }

        .product-image .icon {
            font-size: 4rem;
            z-index: 1;
            position: relative;
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e74c3c;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-badge.new {
            background: #27ae60;
        }

        .product-badge.sale {
            background: #f39c12;
        }

        .product-badge.pro {
            background: #9b59b6;
        }

        .product-info {
            padding: 25px;
        }

        .product-category {
            color: #3498db;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .product-description {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .feature-tag {
            background: #ecf0f1;
            color: #34495e;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .tech-specs {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.85rem;
        }

        .tech-specs h4 {
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .tech-specs ul {
            list-style: none;
            padding: 0;
        }

        .tech-specs li {
            margin-bottom: 4px;
            color: #666;
        }

        .tech-specs li::before {
            content: "•";
            color: #3498db;
            margin-right: 8px;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #27ae60;
        }

        .old-price {
            font-size: 1rem;
            color: #95a5a6;
            text-decoration: line-through;
            margin-left: 10px;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            flex: 1;
        }

        .btn-primary {
            background: #3498db;
            color: white;
        }

        .btn-primary:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: #3498db;
            border: 2px solid #3498db;
        }

        .btn-outline:hover {
            background: #3498db;
            color: white;
        }
		
		 /* Features Section */
        .features-section {
            background: white;
            padding: 60px 0;
            margin-top: 40px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .feature-item {
            text-align: center;
            padding: 30px 20px;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3498db, #2c3e50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .feature-item h3 {
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .feature-item p {
            color: #666;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }

            .product-actions {
                flex-direction: column;
            }
        }
		  /* 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;
            }
        }
		
		  /* 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;
            }
        }
		
		.logo-container a {
           
		   display: flex;
    align-items: center;
    text-decoration: none; 
        }