* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00ff99;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('banner.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 700px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.buttons .btn {
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.primary {
    background: linear-gradient(45deg, #00ff99, #00ccff);
    color: #000;
    border: none;
}

.secondary {
    border: 2px solid #00ff99;
    color: #00ff99;
}

.buttons .btn {
    padding: 14px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo span {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

.primary:hover {
    box-shadow: 0 0 20px #00ff99;
}

.secondary:hover {
    background: #00ff99;
    color: #000;
}

/* SERVICES SECTION */
.services {
    padding: 100px 0;
    background: #0a0f1c;
    text-align: center;
    color: #fff;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 50px;
    color: #fff;
    letter-spacing: 1px;
    
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}



.card {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 300px;
    transition: 0.3s;
    border: 1px solid rgba(0,255,153,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.card h3 {
    margin-bottom: 15px;
}

.card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0,255,153,0.3);
}

/* RATES SECTION */
.rates {
    padding: 100px 0;
    background: #05070f;
    color: #fff;
    text-align: center;
}

/* GRID LAYOUT */
.rates-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.rate-box {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #222;
}

.rate-box h3 {
    margin-bottom: 10px;
}

.converter {
    margin-top: 30px;
}

.converter input,
.converter select,
.converter button {
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: none;
}

.converter button {
    background: #00ff99;
    font-weight: bold;
}

/* CONTACT */
.contact {
    padding: 100px 0;
    text-align: center;
    background: #0a0f1c;
    color: #fff;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 0 15px #25D366;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 15px 20px;
        flex-direction: row;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    /* HERO TEXT */
    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    /* SERVICES */
    .service-container {
        flex-direction: column;
        align-items: center;
    }

    /* RATES */
    .rates-container {
        flex-direction: column;
        align-items: center;
    }

    /* CONVERTER */
    .converter input,
    .converter select,
    .converter button {
        width: 90%;
        margin: 10px auto;
        display: block;
    }

}

/* HAMBURGER MENU */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

.rate-card {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    border: 1px solid rgba(0, 255, 153, 0.2);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.rate-card h3 {
    margin-bottom: 10px;
    color: #00ff99;
}

.rate-card p {
    font-size: 16px;
    margin: 5px 0;
}

.rate-card span {
    font-weight: bold;
}

.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(0,255,153,0.3);
}


h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

section p {
    color: #aaa;
    max-width: 600px;
    margin: auto;
}

/* PARTNERS SECTION */
.partners {
    padding: 100px 20px;
    background: #0a0f1c;
    text-align: center;
    color: #fff;
}

.partners h2 {
    font-size: 32px;
    margin-bottom: 10px;
}


.partners .subtitle {
    color: #aaa;
    margin-bottom: 50px;
    font-size: 16px;
}

/* GRID */
.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.partner-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0,255,153,0.2);
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.partner-card img {
    width: 80px;
    margin-bottom: 15px;
}

.partner-card h3 {
    margin-bottom: 10px;
}

.partner-card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

/* HOVER EFFECT */
.partner-card:hover {
    transform: translateY(-10px);
    border-color: #00ff99;
    box-shadow: 0 0 25px rgba(0,255,153,0.3);
}

/* BUTTON */
.partner-card .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    background: linear-gradient(45deg, #00ff99, #00ccff);
    color: #000;
    transition: 0.3s;
}

.partner-card .btn:hover {
    box-shadow: 0 0 15px #00ff99;
    transform: scale(1.05);
}


/* SUCCESS BOX */
.success-box {
    background: #111827;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(0,255,153,0.2);
    box-shadow: 0 0 25px rgba(0,255,153,0.2);
}

.success-box h3 {
    color: #00ff99;
    margin-bottom: 10px;
}

.success-box h2 {
    color: #00ff99;
    margin: 15px 0;
}

/* ACTION BUTTONS */
.actions {
    margin-top: 20px;
}

.actions .btn {
    display: inline-block;
    margin: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

/* BUTTON STYLES */
.primary {
    background: #00ff99;
    color: #000;
}

.secondary {
    border: 2px solid #00ff99;
    color: #00ff99;
}

.actions .btn:hover {
    transform: scale(1.05);
}

/* FORM CONTAINER */
.form-container {
    max-width: 500px;
    margin: 120px auto 50px auto;
    padding: 30px;
    background: #111827;
    border-radius: 15px;
    border: 1px solid rgba(0,255,153,0.2);
    box-shadow: 0 0 25px rgba(0,255,153,0.1);
    text-align: center;
}

/* FORM TITLE */
.form-container h2 {
    margin-bottom: 20px;
    color: #00ff99;
}

/* INPUTS */
.form-container input,
.form-container select,
.form-container button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    border: none;
    outline: none;
}

/* INPUT BACKGROUND */
.form-container input,
.form-container select {
    background: #0f172a;
    color: #fff;
    border: 1px solid #1f2937;
}

/* FILE INPUT FIX */
.form-container input[type="file"] {
    background: #0f172a;
    color: #ccc;
    padding: 10px;
}

/* BUTTON */
.form-container button {
    background: linear-gradient(45deg, #00ff99, #00ccff);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-container button:hover {
    box-shadow: 0 0 15px #00ff99;
    transform: scale(1.03);
}

body {
    background: linear-gradient(135deg, #05070f, #0a0f1c);
}


/* HOME BUTTON - SOFT PRIMARY */
.actions .btn.home {
    background: rgba(0, 255, 153, 0.1);
    border: 1px solid #00ff99;
    color: #00ff99;
}

.actions .btn.home:hover {
    background: #00ff99;
    color: #000;
    box-shadow: 0 0 15px #00ff99;
}