 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #e0e0e0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Content Styles */
        .main-content {
            min-height: 70vh;
            padding: 40px 0;
            text-align: center;
            background: linear-gradient(135deg, #0c1a3a 0%, #1a1a2e 50%, #16213e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(41, 128, 185, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(142, 68, 173, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .main-content h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 300;
            letter-spacing: 1px;
            position: relative;
        }

        .main-content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3498db, transparent);
        }

        .main-content p {
            font-size: 1.3rem;
            color: #bdc3c7;
            max-width: 600px;
            margin: 30px auto 0;
            font-weight: 300;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0d0d0d 100%);
            color: #e0e0e0;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #3498db, #9b59b6, transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #3498db, #9b59b6);
            transition: width 0.3s ease;
        }

        .footer-section:hover h3::after {
            width: 60px;
        }

        /* Contact Section */
        .contact-section {
            padding-right: 30px;
        }

        .company-brand {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        #companyLogo {
           max-width: 300px;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto 20px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        #companyLogo:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.1);
        }

        .company-info h3 {
            color: #ffffff;
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .company-description {
            color: #bdc3c7;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border-left: 3px solid #3498db;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }

        .contact-item i {
            color: #3498db;
            margin-right: 15px;
            margin-top: 3px;
            font-size: 1.1rem;
            width: 20px;
            text-align: center;
        }

        .contact-label {
            color: #7f8c8d;
            font-size: 0.85rem;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-number {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
            cursor: pointer;
            transition: color 0.3s;
        }

        .contact-number:hover {
            color: #3498db;
        }

        #companyAddress {
            font-style: normal;
            line-height: 1.6;
            color: #bdc3c7;
            margin: 0;
        }

        .contact-item a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .contact-item a:hover {
            color: #3498db;
        }

        /* Social Icons */
        .social-section h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 400;
            font-size: 1.1rem;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-icon:hover::before {
            left: 100%;
        }

        .social-icon:hover {
            transform: translateY(-3px);
            color: white;
            border-color: transparent;
        }

        .facebook:hover { background: #3b5998; }
        .twitter:hover { background: #1da1f2; }
        .linkedin:hover { background: #0077b5; }
        .instagram:hover { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
        .youtube:hover { background: #ff0000; }

        /* Services and Systems Lists */
        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 12px;
            padding: 8px 0;
            position: relative;
            color: #bdc3c7;
            transition: all 0.3s ease;
            cursor: pointer;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
        }

        .footer-list li:last-child {
            border-bottom: none;
        }

        .footer-list li i {
            margin-right: 12px;
            color: #3498db;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
            width: 16px;
            text-align: center;
        }

        .footer-list li:hover {
            color: #ffffff;
            transform: translateX(8px);
        }

        .footer-list li:hover i {
            transform: scale(1.2);
            color: #9b59b6;
        }

        /* Quick Links */
        .quick-links .footer-list li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            width: 100%;
        }

        .quick-links .footer-list li:hover a {
            color: #3498db;
        }

        /* Certification */
        .certification {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .certification h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 400;
            font-size: 1rem;
        }

        .cert-badges {
            display: flex;
            gap: 10px;
        }

        .cert-badge {
            padding: 8px 12px;
            background: rgba(52, 152, 219, 0.1);
            border: 1px solid rgba(52, 152, 219, 0.3);
            border-radius: 4px;
            color: #3498db;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 25px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #3498db;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            
            .contact-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .company-brand {
                flex-direction: column;
                text-align: center;
            }
            
            #companyLogo {
                margin-right: 0;
                margin-bottom: 15px;
                align-self: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .footer-links {
                justify-content: center;
            }
            
            .main-content h1 {
                font-size: 2.2rem;
            }
            
            .main-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .main-content h1 {
                font-size: 1.8rem;
            }
            
            .company-info h3 {
                font-size: 1.3rem;
            }
            
            #companyLogo {
                width: 60px;
                height: 60px;
            }
            
            .social-icons {
                justify-content: center;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-item i {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }