   /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, sans-serif;
            background-image: url('background02.jpg'); /* Set background image */
            background-size: cover; /* Cover the entire body */
            background-position: center; /* Center the image */
            color: #333;
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        /* Navigation Styles */
        nav {
            position: sticky;
            top: 0;
            background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.5s ease;
        }
        nav.transparent {
            background: rgba(0, 0, 0, 0.9);
        }
        nav .logo {
            color: white;
            font-size: 1.5em;
            font-weight: bold;
        }
        nav ul {
            list-style: none;
            display: flex;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            font-weight: bold;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: yellow;
        }
        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 4px 0;
            transition: all 0.3s ease;
        }

        /* Header Styles */
        header {
            background: url('Photography-Header.png') no-repeat center center;
            background-size: cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        header h1 {
            font-size: 3em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
		header h2 {
		font-size: 1.5em; /* Adjust font size if necessary */
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Optional: similar shadow effect */
		margin-top: 10px; /* Space between h1 and h2 */
		color: white; /* Ensure the text color matches your design */
		}



        /* Section Styles */
        section {
            padding: 60px 20px;
            background-color: rgba(0, 0, 0, 0.5); /* Optional: Add background for better text visibility */
        }
        section h2 {
            text-align: center;
            margin-bottom: 40px;
            color: #FFFFFF;
            font-size: 2.5em;
        }
        section p {
            max-width: 800px;
            margin: auto;
            color: white;
            font-size: 1.1em;
        }

        /* Services and Portfolio Styles */
        .services, .portfolio, .why-choose-us {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .service, .portfolio-item, .why-item {
            flex: 1 1 300px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
        }
        .service:hover, .portfolio-item:hover, .why-item:hover {
            transform: scale(1.03);
        }
        .service img, .portfolio-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        .service h3, .portfolio-item p, .why-item h3 {
            margin: 15px 0;
            color: #333;
        }
        .service p, .portfolio-item p, .why-item p {
            padding: 0 15px 15px;
            color: #555;
        }

        /* Contact Section Styles */
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            gap: 20px;
        }
        .contact-form, .contact-details {
            flex: 1 1 450px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        .contact-form h3, .contact-details h3 {
            margin-bottom: 15px;
            color: #333;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 5px;
            color: #333;
        }
        input, textarea {
            margin-bottom: 15px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1em;
        }
        button {
            padding: 10px;
            background-color: orange;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1em;
            transition: background-color 0.3s;
        }
        button:hover {
            background-color: darkorange;
        }

        /* Specific Styles for Contact Details <p> Tags */
        .contact-details p {
            color: #000; /* Set text color to black */
            font-size: 1em; /* Adjust font size if needed */
            line-height: 1.5; /* Improve readability */
            margin-bottom: 10px; /* Space between paragraphs */
        }
        .contact-details a {
            color: #007BFF; /* Optional: Set link color */
            text-decoration: none;
        }
        .contact-details a:hover {
            text-decoration: underline;
        }

        /* Footer Styles */
        footer {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            header {
                height: 300px;
            }
            header h1 {
                font-size: 2.5em;
            }
            section h2 {
                font-size: 2em;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: -100%;
                width: 100%;
                background-color: rgba(0, 0, 0, 0.9);
                transition: left 0.3s ease-in-out;
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                margin: 15px 0;
                text-align: center;
            }
            .hamburger {
                display: flex;
            }
            .contact-container {
                flex-direction: column;
            }
            .contact-form, .contact-details {
                flex: 1 1 100%;
            }
            header h1 {
                font-size: 2.5em;
            }
            section {
                padding: 40px 10px;
            }
            section p {
                font-size: 1em;
            }
        }
        @media (max-width: 480px) {
            header {
                height: 250px;
            }
            header h1 {
                font-size: 2em;
            }
            nav ul {
                top: 50px;
            }
            section h2 {
                font-size: 1.8em;
            }
            button {
                font-size: 0.9em;
            }
        }