
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }

       
    
    

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }

        /* Header styles */
        header {
            background-color: #4c6177;
            color: #ecf0f1;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
        }

        .active {
            background-color: #699acc;
            color: #fff;
            padding: 10px;
            border-radius: 5px;
          }
          



        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .logo h1 {
            font-size: 30px;
            font-weight: bold;
        }

        .logo span {
            font-size: 18px;
            font-style: italic;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            color: #ecf0f1;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        /* Hero section styles */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('homeback.jpg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
        }

        .hero-content h1 {
            font-size: 56px;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: #537992;
            color: #fff;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .btn:hover {
            background-color: #2980b9;
        }

        /* Section styles */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 40px;
        }

        /* About section styles */
        .about-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .about-text {
            font-size: 22px;
            flex: 1;
            padding-right: 45px;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
        }

        .skills {
            margin-top: 20px;
        }

        .skill {
            display: inline-block;
            background-color: #44789b;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            margin-right: 10px;
            margin-bottom: 10px;
        }

        /* Projects section styles */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .project-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-card img {
            width: 75%;
            height: 200px;
            object-fit: cover;
        }

        .project-content {
            padding: 20px;
        }

        .project-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .project-description {
            margin-bottom: 20px;
        }

     
        /* Footer styles */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            text-align: center;
            padding: 20px 0;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .about-content,
            .contact-content {
                flex-direction: column;
            }

            .about-text,
            .contact-form {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .nav-links {
                display: none;
            }
        }
