/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #222;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 60px; /* Adjust size as needed */
    border-radius: 50px;
    margin-left: 20px;
}
.logo-text {
    font-size: 25px;
    font-weight: bold;
    display: inline-block;
    color: white;
    margin-left: 10px;
}

.logo-text span {
    display: inline-block;
    transition: text-shadow 0.3s ease-in-out, transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.logo-text span:hover {
    color: #ffcc00; /* Glowing color */
    text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff9900, 0 0 30px #ff6600;
    transform: scale(0.7); /* Zoom-out effect */
}

/* Adjust the nav-links to move left */
.nav-links {
    display: flex;
    gap: 20px;
    margin-left: 0;
    margin-right: 100px;
}

/* Navigation links */
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover {
    background-color: #FFA500;
    color: #000;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.6); /* Shadow effect on hover */
}
/* Contact Button Styling */
.nav-links a:last-child {
    background: linear-gradient(45deg, #ff7e00, #ffcc00);
    color: #222;
    font-weight: bold;
    border-radius: 15px;
    padding: 10px 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(255, 165, 0, 0.6);
}

.nav-links a:last-child:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.8);
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: #121212;
    color: #FFA500;
    scroll-behavior: smooth;
}

/* Parallax Container with Animation */
.parallax-container {
    position: relative;
    height: 100vh;
    background: url('./assests/all\ designs.png') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    animation: fadeIn 2s ease-in-out;
    transition: background-position 0.3s ease-out;
}

/* Fixed Header Effect */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.parallax-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    animation: slideUp 1s ease-out forwards 0.5s, glow 2s infinite alternate;
}


body {
font-family: 'Poppins', sans-serif;
background-color: #121212;
color: #fff;
margin: 0;
padding: 0;
}

/* Animated Sections */
.section {
padding: 60px 20px;
text-align: center;
background: linear-gradient(135deg, #1e1e1e, #282828);
border-radius: 12px;
margin: 40px auto;
width: 80%;
max-width: 900px;
opacity: 0;
transform: translateY(50px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
box-shadow: 0 4px 10px rgba(255, 165, 0, 0.3);
}

/* Section Hover Animation */
.section:hover {
transform: translateY(-5px); /* Slight lift effect */
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2); /* Soft shadow */
}

/* Adding a subtle brightness effect */
.section:hover h2,
.section:hover p,
.section:hover li {
transition: color 0.3s ease-in-out;
color: #ffd580; /* Softer golden text glow */
}


.visible {
opacity: 1 !important;
transform: translateY(0) !important;
}

/* Keyframes */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes slideUp {
from { opacity: 0; transform: translateY(50px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
from { text-shadow: 0 0 10px orange; }
to { text-shadow: 0 0 20px white; }
}

/* Typography Enhancements */
h2 {
font-size: 2.2rem;
text-transform: uppercase;
font-weight: bold;
text-shadow: 2px 2px 10px #FFA500;
margin-bottom: 15px;
letter-spacing: 1px;
}

p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 15px;
}

ul {
list-style: none;
padding: 0;
}

li {
font-size: 1.3rem;
margin: 10px 0;
text-align: left;
display: flex;
align-items: center;
gap: 10px;
}

/* Bold Highlights */
.bold-highlight {
font-weight: bold;
color: #FFA500; /* Orange glow effect */
text-shadow: white;
}
.cta-button {
display: inline-block;
background-color: orange;
color: white;
padding: 12px 24px;
margin-top: 10px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: background 0.3s ease-in-out;
}

.cta-button:hover {
background-color: white;
color: orange;
}
