        body
        html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: Arial, sans-serif;
        }

        .image-card {
            width: 35px; /* Adjusted width */
            margin: 20px;
            padding: 2px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            text-align: center;
        }
        .image-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            transition: transform 0.2s;
        }
        .image-card img:hover {
            transform: scale(1.05);
        }

        /* Style the navigation bar */
        .navbar {
            background-color: #333;
            overflow: hidden;
            position: fixed;
            /* Ensure the navbar is fixed */
            top: 0;
            width: 100%;
            z-index: 1000;
            /* Set a high z-index to ensure it is on top */
        }

        /* Style the navigation links */
        .navbar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar .brand {
            font-size: 18px;
            padding: 14px 16px;
            color: white;
        }

        .navbar a {
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
        }

        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

        .navbar .links {
            display: flex;
        }

        /* Style the image and text overlay */
        .hero-section {
            position: relative;
            height: 100vh;
            background-size: cover;
            background-position: center;
            background: url('./images/myself.jpg') no-repeat center center/cover;
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            color: white;
            text-align: left;
            max-width: 500px;
        }

        .hero-text h1 {
            font-size: 50px;
            margin: 0;
        }

        .hero-text p {
            font-size: 20px;
            margin: 10px 0 0 0;
        }

        /* Style for the featured section */
        .featured {
            background-color: #f0f0f0;
            text-align: center;
            padding: 30px 0;
        }

        .featured p {
            font-size: 20px;
            margin-bottom: 20px;
        }

        .featured img {
            margin: 0 10px;
            max-height: 50px;
        }

        /* Style for the intro section */
        .intro {
            text-align: center;
            padding: 50px 20px;
        }

        .intro h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .intro p {
            font-size: 18px;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
        }

        .image-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            padding: 20px;
        }
        .image-container img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            transition: transform 0.2s;
        }
        
        /* .signature {
            text-align: center;
            margin: 40px 0;
        }
        .signature img {
            max-width: 100px;
        } */


        /* footer css  */
        body,
        html {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        .footer {
            background-color: #333;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer .footer-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer .footer-top div {
            flex: 1;
            padding: 10px;
            min-width: 200px;
        }

        .footer .footer-top div img {
            max-width: 100%;
        }

        .footer .footer-top div button {
            padding: 10px 20px;
            margin: 10px;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }

        .footer .footer-top div .btn-fill-form {
            background-color: #007bff;
            color: white;
        }

        .footer .footer-top div .btn-email-me {
            background-color: #fff;
            color: #333;
        }

        .footer .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            margin-top: 40px;
        }

        .footer .footer-bottom div {
            flex: 1;
            padding: 10px;
            min-width: 150px;
        }

        .footer .footer-bottom div ul {
            list-style: none;
            padding: 0;
        }

        .footer .footer-bottom div ul li {
            margin: 5px 0;
        }

        .footer .footer-bottom div ul li a {
            color: white;
            text-decoration: none;
        }

        .footer .footer-bottom div ul li a:hover {
            text-decoration: underline;
        }

        .footer .footer-bottom .footer-logo {
            text-align: center;
        }

        .footer .footer-bottom .footer-logo img {
            max-width: 100px;
        }

        .footer .footer-bottom .footer-logo p {
            margin-top: 10px;
            font-size: 14px;
            color: #bbb;
        }

        .footer .copyright {
            margin-top: 20px;
            font-size: 12px;
            color: #bbb;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }

        .features-section {
            text-align: center;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: calc(25% - 40px);
            margin: 20px;
            box-sizing: border-box;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature img {
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
        }

        .feature h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #333;
        }

        .feature p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .footer .contact-info {
            margin-top: 20px;
            font-size: 14px;
        }
        .footer .contact-info a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer .contact-info a:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .feature {
                width: calc(50% - 40px);
            }
        }

        @media (max-width: 768px) {
            .feature {
                width: calc(100% - 40px);
            }
        }
