/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ececec;
    background-color: #1b1b1b;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    margin: 0 0 0.5em 0;
    font-weight: 600;
}

p {
    margin: 0 0 1em 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background-color: rgba(27, 27, 27, 0.95);
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 1em 0;
    transition: background-color 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background-color: #1b1b1b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    color: #ffb703;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2em;
}

nav ul li a {
    font-size: 1em;
    color: #ececec;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffb703;
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #ececec;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(135deg, #232323, #1b1b1b) ;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffb703;
    text-align: center;
    position: relative;
}

.hero-content {
    animation: fadeIn 2s ease-in-out;
margin: 0 auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.hero h2 {
    font-size: 3em;
}

.btn {
    padding: 0.8em 2em;
    background-color: #ffb703;
    color: #1b1b1b;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #e5a700;
}

.btn-hero {
    font-size: 1.2em;
    margin-top: 1em;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #ececec;
    margin-bottom: 1em;
}

section {
    padding: 4em 0;
}

/* Services */
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.service-item {
    background-color: #333;
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Our Approach */
.steps {
    display: flex;
    justify-content: space-around;
}

.step {
    background: #333;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
}

.step h3 {
    margin-top: 0.5em;
}

.step i {
    color: #ffb703;
}

/* Parallax Section */
.parallax {
    background-image: url(bg.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ececec;
    padding: 6em 0;
}

/* Contact Form */
.contact-form {
    background-color: #262626;
    padding: 4em 0;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
}

.contact-form label {
    font-weight: 600;
    color: #ffb703;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #555;
    background-color: #333;
    color: #ececec;
    border-radius: 5px;
}

.contact-form button {
    width: 100%;
    padding: 0.8em;
    background-color: #ffb703;
    color: #1b1b1b;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #e5a700;
}

/* Footer */
footer {
    background-color: #1b1b1b;
    color: #888;
    padding: 2em 0;
    text-align: center;
}

footer a {
    color: #ffb703;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 0;
    margin-bottom: 1em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-grid, .steps {
        flex-direction: column;
        align-items: center;
    }
    nav{
        display: none;
    }
}
* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}
ul{
list-style:none}