* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #030f42;
            min-height: 100vh;
        }

        /* Header & Navigation */
        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
            font-weight: 500;
        }

        nav a:hover {
            opacity: 0.8;
        }

        /* Profile Container */
        .profile-container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 20px;
        }

        /* Profile Card */
        .profile-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .profile-header {
            background: #030f42;
            padding: 60px 40px 40px;
            text-align: center;
            color: white;
            position: relative;
        }

        .profile-image-wrapper {
            width: 180px;
            height: 180px;
            margin: 0 auto 20px;
            border-radius: 50%;
            border: 6px solid white;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            background: white;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-name {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .profile-title {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .profile-company {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Profile Body */
        .profile-body {
            padding: 40px;
        }

        .section {
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 1.5rem;
            color: #030f42;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #030f42;
            font-weight: bold;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .info-item {
            padding: 20px;
            background: #f9f9f9;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }

        .info-label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .info-value {
            font-size: 1.1rem;
            color: #333;
            font-weight: 500;
        }

        .bio-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .stat-card {
            background: #030f42;
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Skills Section */
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .skill-tag {
            background: #667eea;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Contact Section */
        .contact-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .contact-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .contact-btn.primary {
            background: #667eea;
            color: white;
        }

        .contact-btn.secondary {
            background: white;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Browse Cars Button */
        .browse-cars-section {
            text-align: center;
            padding: 40px;
            background: #f9f9f9;
            border-radius: 15px;
        }

        .browse-btn {
            background: #030f42;
            color: white;
            padding: 20px 50px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .browse-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 30px 20px;
            color: white;
            margin-top: 50px;
        }

        .customer-images-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 240px; /* increased slightly to make images bigger */
            gap: 12px;
            align-items: stretch;
            justify-items: stretch;
        }

        .customer-images-grid .customer-image {
            width: 100%;
            height: 100%;
            object-fit: cover;   /* ensures the image fills the frame without distortion */
            display: block;
            border-radius: 8px;
            transition: transform 0.25s ease;
        }

        .customer-images-grid .customer-image:hover {
            transform: scale(1.02);
        }

        /* Responsive: switch to 2 columns on small screens and 1 column on very small screens */
        @media (max-width: 900px) {
            .customer-images-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 220px;
            }
        }

        @media (max-width: 480px) {
            .customer-images-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 200px;
            }
        }

        @media (min-width: 1200px) {
            .customer-images-grid {
                grid-auto-rows: 260px;
            }
        }

        @media (max-width: 768px) {
            .profile-name {
                font-size: 2rem;
            }

            .info-grid, .stats-grid, .contact-buttons {
                grid-template-columns: 1fr;
            }

            nav ul {
                gap: 1rem;
                font-size: 0.9rem;
            }
        }