/* =========================================================
   EGN Web Design — Unified Professional Stylesheet
   Dark-Tech + Tennessee Accent Theme
   ========================================================= */

/* ---------- Global Reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
    #0f0f12
    url("img/blueprint-background.png") repeat;
    background-size: 650px; /* adjust texture scale */
    color: #e6e6e6;
    line-height: 1.6;

    /* subtle global fade effect */
    opacity: 0.98;
}

/* ---------- Global Layout ---------- */
section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

h1, h2, h3 {
    font-weight: 700;
    color: #ffffff;
}

h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px solid #1e90ff; /* Electric blue accent */
    display: inline-block;
    padding-bottom: 5px;
}

p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a1f, #0f0f12);
    border-bottom: 3px solid #b30000; /* Tennessee red accent */
}

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #dcdcdc;
}

.cta-btn {
    display: inline-block;
    background: #1e90ff;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #0b6fcc;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
nav {
    background: #141418;
    border-bottom: 2px solid #1e90ff;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

nav li {
    margin: 8px 15px;
}

nav a {
    color: #e6e6e6;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #1e90ff;
}

/* =========================================================
   GRID LAYOUTS (Services, Packages, Maintenance)
   ========================================================= */
.services-grid,
.payments-grid,
.process-steps {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 30px;
}

.service-card,
.payment-card,
.process-step {
    background: #1a1a1f;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1e90ff;
    box-shadow: 0 0 12px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.service-card:hover,
.payment-card:hover,
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(0,0,0,0.6);
}

/* =========================================================
   PAYMENT SECTION
   ========================================================= */
.payment-btn {
    display: inline-block;
    background: #1e90ff;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

.payment-btn:hover {
    background: #0b6fcc;
}

.payment-logos img {
    width: 100%;
    max-width: 260px;
    margin-top: 15px;
}

.cashapp-block img {
    width: 100%;
    max-width: 220px;
    margin-top: 15px;
}

.payment-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #cccccc;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.credentials-box {
    background: #1a1a1f;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #b30000; /* Tennessee red */
    margin: 25px 0;
}

.credentials-box ul {
    margin-left: 20px;
}

.tn-owned {
    font-size: 1.2rem;
    color: #1e90ff;
    font-weight: bold;
    margin-top: 20px;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
#contact p {
    font-size: 1.1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    text-align: center;
    padding: 20px;
    background: #141418;
    color: #cccccc;
    margin-top: 40px;
    border-top: 2px solid #1e90ff;
}

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        margin: 6px 0;
    }
}



