
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .logo span {
            color: #f39c12;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #f39c12;
        }
        
        /* Hero Section */
        .hero {
            background-color: white;
            padding: 3rem 0;
            text-align: center;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('https://tezz.pk/ooo/our-news.jpg') center/cover;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1e3c72;
        }
        
        .hero p {
            font-size: 1.1rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .language-switcher {
            margin-top: 1rem;
        }
        
        .language-switcher a {
            color: #1e3c72;
            text-decoration: none;
            margin: 0 10px;
            font-weight: 600;
        }
        
        .language-switcher a.active {
            color: #f39c12;
            border-bottom: 2px solid #f39c12;
        }
        
        /* Mobile Showcase */
        .mobile-showcase {
            background-color: #f9f9f9;
            padding: 3rem 0;
            text-align: center;
        }
        
        .mobile-showcase h2 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #1e3c72;
        }
        
        .mobile-device {
            position: relative;
            width: 300px;
            height: 550px;
            margin: 0 auto;
            border: 12px solid #333;
            border-radius: 30px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .mobile-screen {
            width: 100%;
            height: 100%;
            background: url('https://tezz.pk/ooo/abc.jpeg') center/cover no-repeat;
            overflow: hidden;
            position: relative;
        }
        
        .mobile-content {
            padding: 20px;
            color: white;
            background-color: rgba(30, 60, 114, 0.8);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .mobile-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .mobile-content p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .mobile-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 20px;
            background-color: #333;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
        
        /* News About Section */
        .news-about {
            padding: 3rem 0;
            background-color: white;
        }
        
        .news-about-container {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .news-about-image {
            flex: 1;
        }
        
        .news-about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .news-about-content {
            flex: 1;
        }
        
        .news-about-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #1e3c72;
        }
        
        .news-about-content p {
            margin-bottom: 1.5rem;
            color: #555;
            font-size: 1.05rem;
        }
        
        .highlight-box {
            background-color: #f8f9fa;
            border-left: 4px solid #f39c12;
            padding: 1.5rem;
            margin: 2rem 0;
        }
        
        .highlight-box p {
            font-style: italic;
            color: #1e3c72;
            margin: 0;
        }
        
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1.5rem;
        }
        
        .category-tag {
            background-color: #1e3c72;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #1e3c72, #142850);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            gap: 3rem;
        }
        
        .footer-left {
            flex: 1;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .footer-logo span {
            color: #f39c12;
        }
        
        .footer-description {
            color: #bdc3c7;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-links a:hover {
            color: #f39c12;
            background-color: rgba(243, 156, 18, 0.2);
        }
        
        .footer-right {
            flex: 1;
            display: flex;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: #f39c12;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: #f39c12;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdc3c7;
            font-size: 0.9rem;
        }
        a {
    color: inherit;  /* Inherits the color of the surrounding text */
    text-decoration: none;  /* Removes underline */
}

a:hover, a:focus {
    text-decoration: none;  /* Ensures underline does not appear on hover */
    color: inherit;  /* Keeps the text color unchanged */
}
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 0.75rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .mobile-device {
                width: 250px;
                height: 450px;
            }
            
            .news-about-container {
                flex-direction: column;
            }
            
            .footer-container {
                flex-direction: column;
            }
            
            .footer-right {
                flex-direction: column;
                gap: 2rem;
                margin-top: 2rem;
            }
        }
    /* Career Section Styling */
.career-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.career-header {
    background: url('https://tezz.pk/images/career.jpg') center/cover no-repeat;
    padding: 120px 20px;
    color: #fff;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.career-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.career-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.career-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.career-box {
    background: #fff;
    padding: 20px;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.career-box h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.career-box ul {
    list-style: none;
    padding: 0;
}

.career-box ul li {
    padding: 8px 0;
    font-size: 1rem;
}

.career-box ul li strong {
    color: #007bff;
}

.career-apply {
    text-align: center;
    width: 100%;
}

.apply-btn {
    display: inline-block;
    background: #007bff;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.apply-btn:hover {
    background: #0056b3;
}
