body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 50, 0.8), rgba(0, 0, 50, 0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 180px 0;
        }
        .section-padding {
            padding: 100px 0;
        }
        .service-card {
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .team-img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            border: 5px solid #f8f9fa;
        }
        .friendlink {
            display: inline-block;
            margin: 10px;
            padding: 12px 25px;
            background-color: #f1f8ff;
            border-radius: 8px;
            text-decoration: none;
            color: #0056b3;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        .friendlink:hover {
            background-color: #0056b3;
            color: white;
            border-color: #0056b3;
            text-decoration: none;
        }
        .flink {
            font-size: 1.1rem;
        }
        footer a {
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: #80bdff !important;
        }
        .contact-icon {
            font-size: 1.2rem;
            margin-right: 10px;
            color: #0056b3;
        }
        .form-control:focus {
            border-color: #0056b3;
            box-shadow: 0 0 0 0.25rem rgba(0,86,179,0.25);
        }
        .btn-primary {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .btn-primary:hover {
            background-color: #004494;
            border-color: #004494;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0;
            }
            .section-padding {
                padding: 60px 0;
            }
        }
