* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #121212;
    color: white;
    overflow-x: hidden;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}
.logo img {
    max-height: 100px; /* Adjust height as per your design */
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle;
}
.navbar .logo {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.navbar .nav-links li {
    position: relative;
}

.navbar .nav-links a {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #e87e1e;
}

.navbar .cta-button {
    background-color: #e87e1e;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.navbar .cta-button:hover {
    background-color: #c76f1e;
}

.navbar .menu-toggle {
    display: none;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #333, #0f2027, #203a43, #2c5364);
    background-size: 400% 400%;
    color: #fff;
    position: relative;
    padding: 20px;
    animation: gradientShift 10s ease infinite;
}

/* Gradient Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #e87e1e;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccc;
}
.hero-content {
    text-align: center;
    padding-top: 140px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}
.tagline {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(to right, #e87e1e, #ffb400);
    -webkit-background-clip: text;
    color: transparent;
    animation: glow 1.5s infinite alternate;
    text-shadow: 0 0 10px rgba(255, 190, 60, 0.8), 0 0 20px rgba(255, 190, 60, 0.6);
}

.tagline .highlight {
    color: #e87e1e;
    text-shadow: 0 0 8px rgba(232, 126, 30, 0.8), 0 0 16px rgba(232, 126, 30, 0.6);
}

@keyframes glow {
    from {
        text-shadow: 0 0 8px rgba(255, 190, 60, 0.8), 0 0 16px rgba(255, 190, 60, 0.6);
    }
    to {
        text-shadow: 0 0 12px rgba(255, 190, 60, 1), 0 0 24px rgba(255, 190, 60, 0.9);
    }
}


.cta-button {
    font-size: 18px;
    padding: 10px 35px;
    margin-top: 80px; /* Increased margin-top to push it down more */
    background-color: #e87e1e;
    border-radius: 5px;
    transition: transform 0.3s ease;
    animation: fadeInUp 1s ease-out 2s;
}



.cta-button:hover {
    background-color: #d87e1e;
    transform: translateY(-5px);
}

.services {
    background-color: #181818;
    padding: 100px 0;
    text-align: center;
    z-index: 10;
}

.services .section-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service {
    background-color: #252525;
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}


.service img {
    width: 70px;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
}
.quote {
    background: #181818;
    padding: 50px 0;
}

.quote form input, .quote form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #252525;
    border: none;
    color: #fff;
    border-radius: 5px;
}

.quote form button {
    padding: 15px 30px;
    background-color: #e87e1e;
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.quote form button:hover {
    background-color: #d87e1e;
}

.about, .contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #333, #181818);
}

.about p, .contact form {
    font-size: 18px;
}

/* Email Link Styling */
#contact .email-container {
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-family: 'Arial', sans-serif;
}

#contact .email-link {
    color: #e87e1e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

#contact .email-link i {
    margin-right: 10px;
    font-size: 1.8rem; /* Envelope icon size */
}

#contact .email-link:hover {
    color: #d4760b; /* Change color on hover */
}

/* Form Styling */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

#contact input, #contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #383838;
    border: none;
    color: #fff;
    border-radius: 5px;
}

#contact .cta-button {
    padding: 15px 30px;
    background-color: #e87e1e;
    border: none;
    color: white;
    align-self: flex-start;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;;
}

#contact .cta-button:hover {
    background-color: #d4760b;
}


footer {
    background-color: #181818;
    padding: 40px 0;
    text-align: center;
}

footer .social-links {
    list-style: none;
    margin-top: 20px;
}

footer .social-links li {
    display: inline-block;
    margin: 0 15px;
}

footer .social-links a {
    color: #e87e1e;
    text-decoration: none;
    font-size: 18px;
}

footer .social-links a:hover {
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .navbar .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background: #121212;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    }

    .navbar .nav-links.active {
        animation: dropdownSlide 0.3s ease forwards;
    }
    
    @keyframes dropdownSlide {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    

    .navbar .menu-toggle {
        display: block;
        background-color: #e87e1e;
        padding: 15px;
        cursor: pointer;
        margin-left: auto;
        margin-right: 0;
    }

    .navbar .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
    }

    .cta-button {
        font-size: 10px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
@keyframes textAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1, .hero-content p {
    animation: textAppear 1s ease forwards;
}

.hero-content h1 {
    animation-delay: 0.5s;
}

.hero-content p {
    animation-delay: 1s;
}
.animated-brand {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.brand-letter {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #e87e1e !important;
    display: inline-block;
    animation: slideInOut 3s infinite ease-in-out, glowPulse 3s infinite ease-in-out alternate;
    position: relative;
}

/* Slide In and Out Animation */
@keyframes slideInOut {
    0% {
        transform: translateX(-100%) scale(1);
        opacity: 0;
    }
    25% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(100%) scale(1);
        opacity: 0;
    }
    75% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%) scale(1);
        opacity: 0;
    }
}

/* Glow and Pulsation Animation */
@keyframes glowPulse {
    0% {
        text-shadow: 2px 2px 10px rgba(232, 126, 30, 0.8);
        color: #e87e1e;
    }
    50% {
        text-shadow: 6px 6px 20px rgba(255, 190, 60, 1);
        color: #ffb400;
    }
    100% {
        text-shadow: 2px 2px 10px rgba(232, 126, 30, 0.8);
        color: #e87e1e;
    }
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .brand-letter {
        font-size: 2rem;
    }

    .animated-brand {
        gap: 10px;
    }
}
