
/* General Styles */
body {
    font-family: 'Poppins', sans-serif; /* Placeholder, will add Poppins later */
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #1e3c72 100%);
    background-attachment: fixed;
    color: #f0f0f0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Banner */
.hero-banner {
    background: transparent; /* Remove solid background to show gradient */
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.hero-banner h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #00C0FF; /* Neon blue highlight */
}

.hero-banner .subheadline {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-whatsapp {
    display: inline-block;
    background: linear-gradient(135deg, #00C0FF, #0099cc);
    color: #000;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 192, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 192, 255, 0.4);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

/* Manifesto and What We Do Sections */
section {
    padding: 60px 0;
    text-align: center;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    z-index: -1;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #00C0FF;
    text-shadow: 0 0 20px rgba(0, 192, 255, 0.3);
}

section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.7;
}

.what-we-do ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.what-we-do li {
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.8), rgba(68, 68, 68, 0.6));
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 15px;
    text-align: left;
    border-left: 4px solid #00C0FF;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.what-we-do li:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 192, 255, 0.2);
    border-left-width: 6px;
}

/* Portfolio Gallery */
.portfolio .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 0 20px;
}

.portfolio .image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.portfolio .image-grid img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 192, 255, 0.3);
    border-color: #00C0FF;
}

/* Contact Form */
.contact-form {
    background: rgba(34, 34, 34, 0.8); /* Semi-transparent to show gradient behind */
    padding: 60px 0;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form textarea,
.contact-form select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #555;
    background-color: #333;
    color: #f0f0f0;
    border-radius: 4px;
}

.contact-form input[type="radio"] {
    margin-right: 10px;
}

.contact-form button {
    background: linear-gradient(135deg, #00C0FF, #0099cc);
    color: #000;
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 192, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.contact-form button:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 192, 255, 0.4);
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-form button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent to show gradient behind */
    color: #fff;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9em;
}

footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2em;
    }

    .hero-banner .logo {
        max-width: 200px; /* Smaller on mobile */
    }

    section h2 {
        font-size: 1.8em;
    }

    .portfolio .image-grid {
        grid-template-columns: 1fr;
    }
}




.hero-banner .logo {
    max-width: 250px; /* Slightly larger for better visibility */
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) brightness(1.2) contrast(1.1); /* Add subtle shadow and enhance contrast for better visibility on blue background */
}

.hero-banner h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #00C0FF; /* Neon blue highlight */
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2em;
    }
}



/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(10px);
    border-top: 3px solid #00C0FF;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    color: #f0f0f0;
    font-size: 1em;
    line-height: 1.5;
    max-width: 600px;
}

.cookie-btn {
    background: linear-gradient(135deg, #00C0FF, #0099cc);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 192, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-btn:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 192, 255, 0.4);
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-content p {
        font-size: 0.9em;
    }
    
    .cookie-btn {
        padding: 12px 30px;
        font-size: 1em;
    }
}

