:root {
            --primary-color: #1a237e;
            --secondary-color: #ff6f00;
            --accent-color: #4fc3f7;
            --dark-color: #0d1526;
            --light-color: #f8f9fa;
            --text-color: #333;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .navbar {
            background-color: rgba(13, 21, 38, 0.95);
            padding: 1rem 0;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: white !important;
        }
        .navbar-brand span {
            color: var(--accent-color);
        }
        .nav-link {
            color: #ddd !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(13, 21, 38, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: white;
            padding: 8rem 0 6rem;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        .btn-primary {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: var(--transition);
        }
        .btn-primary:hover {
            background-color: #e65100;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .service-card, .team-card, .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 2rem;
        }
        .service-card:hover, .team-card:hover, .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        .stats-section {
            background: linear-gradient(to right, var(--primary-color), var(--dark-color));
            color: white;
            padding: 5rem 0;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent-color);
        }
        .team-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
        .project-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .news-card {
            border-left: 4px solid var(--secondary-color);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        footer {
            background-color: var(--dark-color);
            color: #ddd;
            padding-top: 4rem;
        }
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .copyright {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 1.5rem 0;
            margin-top: 3rem;
            text-align: center;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: #ddd;
            padding: 0.6rem 1.5rem;
            margin: 0.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .flink:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 25px;
        }
        .form-control {
            border-radius: 8px;
            padding: 0.8rem;
            border: 1px solid #ccc;
            margin-bottom: 1.5rem;
        }
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(79, 195, 247, 0.25);
        }
        .timeline {
            position: relative;
            padding-left: 30px;
            margin-top: 3rem;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            border: 4px solid var(--secondary-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
