/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #fff;
    overflow-x: hidden;
}

/* 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 */
}

/* Page Load Animation */
.services {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tagline Section */
/* Glowing Effect */
@keyframes glow {
    0% { text-shadow: 0 0 10px #FFA500, 0 0 20px #FF8C00, 0 0 30px #FF4500; }
    50% { text-shadow: 0 0 20px #FFA500, 0 0 30px #FF8C00, 0 0 40px #FF4500; }
    100% { text-shadow: 0 0 10px #FFA500, 0 0 20px #FF8C00, 0 0 30px #FF4500; }
}

/* Tagline Styling */
.tagline {
    text-align: center;
    margin-top: 120px;
    opacity: 0; /* Initially hidden */
    transform: translateY(20px); /* Start slightly below */
}

/* Apply glowing effect */
.tagline h1 {
    font-size: 50px;
    font-weight: bold;
    color: white;
    animation: glow 1.5s infinite alternate;
}
.tagline p{
    font-size: 25px;
    font-weight: bold;
    color: white;
    animation: glow 1.5s infinite alternate;
}

/* Smooth Fade-In-Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.show {
    animation: fadeInUp 1.5s ease-out forwards;
}




/* Services Section */
.services {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Individual Service Block */
.service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    padding: 40px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    gap: 40px; /* Space between image & text */
}

/* Right-Side Image */
.service-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-image img {
    width: 450px;  /* Ensuring all images are the same size */
    height: 300px; /* Fixed height to maintain uniformity */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.4);
    transition: 0.3s ease-in-out, transform 0.5s ease-in-out;
}

/* Hover Effect */
.service-image img:hover {
    transform: scale(1.05);
}

/* Left-Side Content */
.service-content {
    flex: 1;
    text-align: left;
    animation: fadeInText 1.2s ease-in-out;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-content h2 {
    font-size: 32px;
    color: #FFA500;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 20px;
}

/* Buttons */
/* Button Fade-In Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation to buttons */
/* Button Wrapper */
.buttons {
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

/* Fade-In & Slide-Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Both Buttons - Same Size */
.contact-btn,
.designs-btn {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    min-width: 180px; /* Ensuring both buttons are the same width */
    text-align: center;
}

/* Contact Button */
.contact-btn {
    background-color: #ff6600;
    color: white;
    animation: fadeInUp 1.5s ease-out forwards;
    text-decoration: none;
}

/* Previous Designs Button */
.designs-btn {
    background-color: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.7s; /* Slight delay for smooth transition */
}

/* Hover Effects */
.contact-btn:hover {
    background-color: #ff3300;
}

.designs-btn:hover {
    background-color: #FFA500;
    color: black;
}

