 :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --text-color: #1f2937;
            --light-text: #f9fafb;
            --bg-color: #ffffff;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f3f4f6;
        }

        .navbar {
            background-color: var(--bg-color);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .navbar.scrolled {
            padding: 0.5rem 2rem;
            box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .logo {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            color: var(--text-color);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            position: relative;
            transition: var(--transition);
            padding: 0.5rem 0;
            font-size: 13px;
        }

        .nav-links a:hover {
            color: var(--primary-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary-color);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .cta-button {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 0.5rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
        }


                .mobile-cta {
            display: none;
        }
        .contactinfo{
             border-left: 1px solid gray;
            display: flex;
            gap: 15px;
        }
         .contactinfo li{
            margin-left: 12px;
         }



          .hero {
            display: flex;
            align-items: center;
            justify-content: space-around;
            min-height: 100vh;
            padding: 0 2rem;
            padding-top: 80px; /* Account for fixed navbar */
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
        }

        .hero-content {
            max-width: 600px;
            padding: 2rem;
        }

        .hero-subtitle {
            color: #4b5563;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-title span {
            color: #2563eb;
        }

        .hero-description {
            color: #4b5563;
           font-size: 15px;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: #2563eb;
            color: white;
            border: 2px solid #2563eb;
        }

        .btn-primary:hover {
            background-color: #1e40af;
            border-color: #1e40af;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: #1f2937;
            border: 2px solid #1f2937;
        }

        .btn-secondary:hover {
            background-color: #1f2937;
            color: white;
            transform: translateY(-2px);
        }

        .hero-social {
            display: flex;
            gap: 1.5rem;
        }

        .hero-social a {
            color: #4b5563;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .hero-social a:hover {
            color: #2563eb;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            width: 400px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0) 100%);
            z-index: 1;
        }
 .hero-description li{
            margin: 0;
        }



       
.contact {
    padding: 4rem 1rem;
    background: #f8fafc;
    scroll-margin-top: 80px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
}

form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #334155;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    background: #f8fafc;
}

input:focus, textarea:focus {
    outline: 2px solid #2563eb;
    background: white;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 0.75rem;
    width: 100%;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #1d4ed8;
}

 .portfolio-footer {
    background: #ffffff;
    padding: 1.5rem 1rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .footer-name {
    font-weight: 600;
    color: #111827;
  }
  
  .footer-copyright {
    color: #6b7280;
  }


  

   @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--bg-color);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2.5rem;
                transition: var(--transition);
                z-index: 999;
            }

            .nav-links.active {
                left: 0;
            }

            .hamburger {
                display: block;
            }

            .cta-button {
                display: none;
            }

            .mobile-cta {
                display: block !important;
                margin-top: 1rem;
            }
        }


   
        @media (max-width: 1024px) {
            .hero {
                flex-direction: column-reverse;
                text-align: center;
                padding-top: 100px;
                padding-bottom: 4rem;
            }

            .hero-content {
                max-width: 100%;
                padding: 1rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-social {
                justify-content: center;
            }

            .hero-image {
                width: 300px;
                height: 300px;
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-image {
                width: 250px;
                height: 250px;
            }
        }
       


@media (max-width: 600px) {
    .contact {
        padding: 3rem 1rem;
    }
    form {
        padding: 1.5rem;
    }
}