/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #4e54c8, #8f94fb); /* Futuristic Gradient */
    color: #fff;
    overflow-x: hidden;
    height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.navbar:hover {
    background: rgba(0, 0, 0, 0.6);
}

.navbar .logo a {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.navbar .nav-links li a {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.navbar .nav-links li a:hover {
    color: #ff4081;
}

.navbar .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff4081;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-links li a:hover::after {
    transform: scaleX(1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 999;
}

.hamburger .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0 20px;
    text-align: center;
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.cta-button {
    padding: 15px 40px;
    background-color: #ff4081;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #ff1f6c;
    transform: translateY(-5px);
}

/* About Us Section */
.about {
    padding: 100px 20px;
    text-align: center;
    background: #222;
}

.about h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #ddd;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2a2a72, #009ffd);
    text-align: center;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background-color: #333;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.card:hover h3 {
    color: #ff4081;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 20px;
    text-align: center;
    background: #222;
}

.portfolio h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 2px;
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: #333;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.portfolio-item p {
    font-size: 1.1rem;
    color: #bbb;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    text-align: center;
    background: #111;
}

.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact input,
.contact textarea {
    padding: 15px;
    font-size: 1.1rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
    border: 2px solid #ff4081;
}

.contact button {
    padding: 15px 40px;
    background-color: #ff4081;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact button:hover {
    background-color: #ff1f6c;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #111;
    padding: 20px;
    text-align: center;
    color: #aaa;
}

footer p {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
    }

    .navbar .hamburger {
        display: flex;
    }

    .navbar.active .nav-links {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .services .service-cards {
        flex-direction: column;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact form {
        padding: 0 20px;
    }
}
/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-list {
    flex: 1;
    min-width: 250px;
    margin: 0 20px;
}

.footer-list h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list ul {
    list-style: none;
    padding-left: 0;
}

.footer-list ul li {
    margin-bottom: 10px;
}

.footer-list ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-list ul li a:hover {
    color: #ff4081;
    transform: translateX(5px);
}

/* Footer Bottom Text */
footer p {
    font-size: 1rem;
    color: #666;
    margin-top: 20px;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-list {
        text-align: center;
        margin-bottom: 30px;
    }
}
