@charset "utf-8";
/* CSS Document */

 .header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            background: url('images/press-room.jpg') center/cover;
            padding: 0px 0px;
            border-radius: 10px 10px 0 0;
            width: 100%;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 10px 10px 0 0;
        }

        .header h1 {
            font-size: 1.6em;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .header h1::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #3498db;
        }

        .header h1 i {
            font-size: 1.6em;
            margin-right: 15px;
            color: #e74c3c; /* Red */
        }

        .header h1 i:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .service-card {
            background: none;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            margin-bottom: 20px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.6);
            z-index: 1;
        }

        .service-card > * {
            position: relative;
            z-index: 2;
        }

        .service-card:first-child {
            background-image: url('images/printing-press.jpg');
        }

        .service-card:nth-child(2) {
            background-image: url('images/newspaper-production.jpg');
        }

        .service-card:hover {
            transform: translateY(-3px);
        }

        .service-card h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.2em;
            position: relative;
            padding-left: 55px;
            display: flex;
            /*align-items: center;*/
			
        }
		  .service-card_ar h2 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 1.2em;
            position: relative;
            padding-left: 55px;
            /*display: flex;*/
            text-align: right;
			
        }

        .service-card h2 i {
            position: absolute;
            left: 0;
            font-size: 1.2em;
        }

        .service-card h2 i.fa-newspaper {
            color: #2ecc71; /* Green */
        }

        .service-card h2 i.fa-book {
            color: #9b59b6; /* Purple */
        }

        .service-card h2 i:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .service-details {
            color: #666;
            font-size: 1.2em;
            padding-left: 55px;
        }

        .highlight {
            background: rgba(255, 255, 255, 0.6);
            padding: 15px 20px;
            border-radius: 5px;
            margin: 12px 0;
            border-left: 3px solid #3498db;
            font-size: 0.9em;
            display: flex;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .highlight i.fa-print {
            color: #f39c12; /* Orange */
        }

        .highlight i.fa-graduation-cap {
            color: #1abc9c; /* Turquoise */
        }

        .highlight i {
            margin-right: 15px;
            font-size: 2em;
        }

        .highlight i:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .stats {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            flex-wrap: wrap;
            gap: 15px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 8px;
            padding: 15px;
            backdrop-filter: blur(5px);
        }

        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
        }

        .stat-item i.fa-copy {
            color: #e67e22; /* Dark Orange */
        }

        .stat-item i.fa-chart-pie {
            color: #3498db; /* Blue */
        }

        .stat-item i.fa-newspaper {
            color: #2ecc71; /* Green */
        }

        .stat-item i {
            margin-bottom: 12px;
            font-size: 1.8em;
        }

        .stat-item i:hover {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }

        .stat-number {
            font-size: 1.2em;
            font-weight: bold;
            color: #2c3e50;
            margin: 3px 0;
        }

        .stat-label {
            color: #666;
            font-size: 0.8em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            body {
                margin: 10px;
                padding: 15px;
            }

            .header {
                padding: 30px 15px;
            }

            .header h1 {
                font-size: 1.4em;
            }

            .header h1 i {
                font-size: 1.4em;
            }

            .service-card {
                padding: 20px;
            }

            .service-card h2 i {
                font-size: 2em;
            }

            .stats {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .stat-item {
                min-width: 100px;
            }

            .highlight i {
                font-size: 1.8em;
            }

            .stat-item i {
                font-size: 1.8em;
            }
        }