/* ===== Base Reset ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f1116;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ===== Navigation ===== */
.navbar {
    background: #0c0c0c;
    padding: 1em 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    max-height: 40px;
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #00ffff;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: 1001;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .nav-links li {
        position: relative;
    }

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: #00ffff;
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 90%;
            height: 2px;
            background: #00ffff;
            border-radius: 2px;
        }

/* Dropdown */
.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #1c1c1c;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 255, 255, 0.1);
    z-index: 10;
    border-radius: 6px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: background 0.2s;
}

    .dropdown-menu a:hover {
        background-color: #00ffff22;
    }

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    background: url('assets/background.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px; /* offset fixed header */
}

    .hero .overlay {
        position: absolute;
        background: rgba(0, 0, 0, 0.6);
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
    }

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out;
    padding: 1em;
}

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 0.5em;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 1.5em;
    }

.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cta-section {
    text-align: center;
    padding: 2em 1em;
    margin-top: auto;
}

.cta-button {
    background: #00ffff;
    color: #000;
    padding: 0.75em 2em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

    .cta-button:hover {
        background: #00bbbb;
    }

/* ===== Services ===== */
.services {
    padding: 4em 2em;
    background: #121212;
    text-align: center;
}

    .services h2 {
        font-size: 2.5rem;
        margin-bottom: 1em;
    }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
}

.card {
    background: #1c1c1c;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
    }

.card.recommended {
    border: 2px solid #00ffff;
    background: #222222;
    position: relative;
}

.card.recommended::before {
    content: "Recommended";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #00ffff;
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.card .cta-button {
    margin-top: 1.5em;
    display: inline-block;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
    color: #00ffff;
}

.card ul {
    padding-left: 1em;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 1em;
}

.card ul li::before {
    content: "✔ ";
    color: #00ffff;
    font-weight: bold;
}

.addons-card {
    max-width: 900px;
    margin: 2em auto;
    background: #1a1a1a;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    text-align: left;
}

.addons-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1em;
    color: #00ffff;
}

.addons-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5em;
}

.addons-card ul li {
    margin-bottom: 0.5em;
    padding-left: 1.25em;
    position: relative;
}

.addons-card ul li::before {
    content: "➕";
    color: #00ffff;
    position: absolute;
    left: 0;
}

/* ===== Contact ===== */
.contact-section {
    padding: 4em 2em;
    text-align: center;
    background: #181818;
}

    .contact-section form {
        max-width: 600px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 1em;
    }

    .contact-section input,
    .contact-section textarea {
        padding: 1em;
        border: none;
        border-radius: 8px;
        background: #252525;
        color: #fff;
    }

    .contact-section button {
        background: #00ffff;
        color: #000;
        padding: 1em;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

/* ===== About Section ===== */
.about-section {
    padding: 4em 2em;
    background: #121212;
    color: #ddd;
    animation: fadeInUp 1s ease-in;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
}

.about-text {
    flex: 1 1 60%;
    max-width: 700px;
}

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5em;
        color: #00ffff;
    }

    .about-text ul {
        list-style: none;
        padding-left: 0;
        margin: 1em 0;
    }

        .about-text ul li {
            margin-bottom: 0.6em;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }

            .about-text ul li span {
                display: inline-block;
                color: #00ffff;
                margin-right: 0.5em;
                font-weight: bold;
            }

.about-visual {
    flex: 1 1 35%;
    text-align: center;
}

    .about-visual img {
        max-width: 300px;
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    }

/* ===== Links ===== */
a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 2px #00ffff;
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

    a:hover {
        color: #ffffff;
        text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    }

/* ===== Footer ===== */
footer {
    background: #000;
    text-align: center;
    padding: 1em;
    font-size: 0.9rem;
    color: #aaa;
}
footer {
	text-align: center;
	padding: 20px;
	background-color: #111; /* Matches a dark footer theme */
	color: #fff;
}

footer p {
	margin-bottom: 10px;
	font-size: 14px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.social-links a {
	color: #fff;
	font-size: 1.5rem;
	transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
	color: #23a523; /* Your site's green accent */
	transform: scale(1.2);
}
/* ===== Animations ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        background: #0f0f0f;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100vw;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: all 0.4s ease;
        border-bottom: 2px solid #00ffff22;
        z-index: 998;
    }

        .nav-links.active {
            padding: 1em;
            max-height: 500px;
            opacity: 1;
        }

            .nav-links.active li {
                animation: slideIn 0.3s ease forwards;
            }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 1em;
    }

        .dropdown-menu li a {
            padding: 8px 0;
        }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.75em 1.5em;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.contact-modal {
  background: #1c1c1c;
  padding: 2em;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
  position: relative;
  color: #fff;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  padding: 0.8em;
  margin: 0.5em 0;
  border: none;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
}

.contact-modal button[type="submit"] {
  background-color: #00ffff;
  color: #000;
  font-weight: bold;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 0.5em;
  right: 0.8em;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.consulting-sections {
    max-width: 1100px;
    margin: 4em auto;
    padding: 0 1em;
}

.consulting-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 4em;
    gap: 2em;
}

    .consulting-block img {
        width: 100%;
        max-width: 480px;
        height: auto;
        border-radius: 12px;
        flex: 1 1 45%;
    }

    .consulting-block .text-content {
        flex: 1 1 45%;
    }

    .consulting-block h2 {
        font-size: 1.8em;
        margin-bottom: 0.5em;
    }

    .consulting-block.reverse {
        flex-direction: row-reverse;
    }

@media screen and (max-width: 768px) {
    .consulting-block {
        flex-direction: column;
        text-align: center;
    }

        .consulting-block.reverse {
            flex-direction: column;
        }

        .consulting-block .text-content {
            flex: 1 1 100%;
        }
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #888;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00ffff;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

