﻿    /* Genel Stil */
        body {
            background: linear-gradient(to right, #141E30, #243B55);
            color: white;
            font-family: 'Poppins', sans-serif;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

		 .popup {
			display: none;
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(0.95);
			padding: 30px 25px;
			box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
			border-radius: 20px;
			text-align: center;
			z-index: 9999;
			border: 4px solid #ffffff;
			color: #fff;
			transition: transform 0.4s ease;
			width: 350px;
			max-width: 90%;
			animation: fadeIn 0.5s ease-out;
		}

		.popup.active {
			transform: translate(-50%, -50%) scale(1);
		}

		.popup-header h4 {
			margin-bottom: 20px;
			font-weight: 700;
			text-transform: uppercase;
			letter-spacing: 2px;
			border-bottom: 3px solid #fff;
			padding-bottom: 15px;
			font-size: 1.5em;
		}

		.business-card .contact-item {
			font-size: 1.2em;
			margin: 15px 0 5px;
			color: #f8f9fa;
		}

		.phone-link {
			display: inline-block;
			margin: 5px 0 15px;
			font-size: 1.4em;
			color: #ffdd57;
			text-decoration: none;
			font-weight: bold;
			transition: color 0.3s ease;
		}

		.phone-link:hover {
			color: #fff;
			text-decoration: underline;
		}

		.separator {
			margin: 20px 0;
			border: none;
			border-top: 2px dashed #ffffff;
		}

		.close-btn {
			margin-top: 20px;
			font-size: 1.1em;
			padding: 10px 20px;
			border-radius: 12px;
			border: 2px solid #fff;
			color: #fff;
			transition: all 0.3s ease;
		}

		.close-btn:hover {
			background: #ffffff;
			color: #0d6efd;
		}

		.overlay {
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.85);
			display: none;
			z-index: 9998;
			backdrop-filter: blur(5px);
		}

.company-info .promo-link {
    color: #fff;
    background: linear-gradient(135deg, #1B365D, #2E4A7D); /* Kurumsal koyu mavi-lacivert geçişi */
    cursor: pointer;
    font-weight: bold;
    text-decoration: none; 
    padding: 14px 14px;
    border-radius: 15px;
    display: inline-block;
    transition: transform 0.4s, box-shadow 0.4s;
    text-align: center;
    box-shadow: 0 6px 20px rgba(27, 54, 93, 0.7);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 6.9s infinite;
}

.company-info .promo-link:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(27, 54, 93, 0.9);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


        /* Giriş Paneli */
        .login-container {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0px 8px 25px rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            max-width: 450px;
            width: 100%;
            animation: fadeIn 0.1s ease-in-out;
        }

        /* Logo */
        .logo img {
		max-width: 120px;
		height: auto;
		margin-bottom: 20px;
		filter: drop-shadow(0px 4px 10px rgba(255, 255, 255, 0.3));
		background-color: white; /* Arka planı beyaz yapar */
		padding: 3px; /* Logonun etrafına boşluk bırakır */
		border-radius: 10px; /* Kenarları yuvarlatır */
	}


        /* Buton Stili */
        .btn-custom {
            width: 100%;
            padding: 20px;
            font-size: 18px;
            border: none;
            transition: 0.3s;
            color: white;
            text-decoration: none;
            display: block;
            border-radius: 8px;
            font-weight: bold;
            text-transform: uppercase;
             margin: 20px 0; /* Butonlar arasına 15px boşluk ekler */
        }

        .btn-musteri {
            background: #12793d;
        }

        .btn-musteri:hover {
            background: #2ecc71;
            box-shadow: 0px 0px 15px rgba(46, 204, 113, 0.8);
        }

        .btn-yetkili {
            background: #c0392b;
        }

        .btn-yetkili:hover {
            background: #e74c3c;
            box-shadow: 0px 0px 15px rgba(231, 76, 60, 0.8);
        }

        /* Firma Bilgileri */
        .company-info {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 20px;
        }

        .company-info a {
            color: #f1c40f;
            text-decoration: none;
            font-weight: bold;
        }

        .company-info a:hover {
            text-decoration: underline;
        }

        /* Animasyon */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
		
		/* Hoş Geldiniz Başlığı */
		.welcome-text {
			font-size: 22px;
			font-weight: bold;
			background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fad0c4, #ffdde1);
			-webkit-background-clip: text;
			-webkit-text-fill-color: transparent;
			text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
			animation: glow 2s infinite alternate;
			padding: 20px;
		}

		/* Parlaklık Animasyonu */
		@keyframes glow {
			0% { text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8); }
			100% { text-shadow: 0px 0px 20px rgba(255, 255, 255, 1); }
		}


