/* =============================
   GLOBAL RESET & THEME
============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0e0e0e;
    color: #f4f4f4;
    line-height: 1.7;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #ff4c29;
    transition: 0.3s ease;
}

a:hover {
    color: #ffa64d;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: 800;
    color: #fff;
}

/* --------- TOP HEADER STYLE --------- */
.top-header {
    background: #111;
    border-bottom: 1px solid #333;
}

/* Search bar */
.header-search {
    flex: 1;
    max-width: 400px;
}

.search-input {
    border-radius: 30px 0 0 30px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
}

.search-input::placeholder {
    color: #aaa;
}

.btn-search {
    border-radius: 0 30px 30px 0;
    background: orangered;
    border: none;
    color: #fff;
}

.btn-search:hover {
    background: #cc3600;
}

/* Auth buttons */
.header-auth .btn-outline-light {
    border-color: #555;
    color: #eee;
}

.header-auth .btn-outline-light:hover {
    background: #333;
    border-color: #777;
}

.header-auth .btn-warning {
    background: orangered;
    border-color: orangered;
}

.header-auth .btn-warning:hover {
    background: #d63a00;
}

/* Mobile adjustments */
@media(max-width: 768px) {
    .header-search {
        margin: 10px 0;
        max-width: 100%;
    }

    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .header-auth {
        width: 100%;
        justify-content: center;
    }
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #111;
    color: #ddd;
}

.navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 12px;
}

.navbar-nav .nav-link:hover {
    color: orangered;
}

header img {
    filter: brightness(110%);
}


/* =============================
   NAVBAR
============================= */
.navbar {
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: #000;
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 900;
    color: #ff4c29 !important;
    letter-spacing: 1px;
}

.navbar .nav-link {
    font-weight: 600;
    color: #ddd !important;
    margin-left: 15px;
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff4c29 !important;
    transform: translateY(-2px);
}

/* =============================
   HERO SECTION
============================= */
.hero-section {
    height: 100vh;
    background-image: url('../images/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ffa64d;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(45deg,#ff4c29,#ffa64d);
    border: none;
    padding: 0.9rem 2.3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(255,76,41,0.5);
    color: #111;
}

.services {
    padding: 5rem 0;
    background: #f9f9f9;
    text-align: center;
}
.services .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111;
}

/* Grid for 3 cards per row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.5;
}
.service-card .btn {
    background: #ff0000;
    color: #fff;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.service-card .btn:hover {
    background: #cc0000;
}

/* Responsive: Stack on small screens */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.services {
    padding: 5rem 0;
    background: #f9f9f9;
    text-align: center;
}
.services .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111;
}

/* Flexbox for 3 cards per row */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

/* Each card takes 32% of width for 3 in a row with some gap */
.service-card {
    flex: 0 0 32%;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}
.service-card h3 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.5;
}
.service-card .btn {
    background: #ff0000;
    color: #fff;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.service-card .btn:hover {
    background: #cc0000;
}

/* Responsive: Stack on small screens */
@media (max-width: 992px) {
    .service-card {
        flex: 0 0 48%; /* 2 per row on tablets */
    }
}
@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%; /* 1 per row on mobile */
    }
}

.services {
    padding: 5rem 0;
    background: #f9f9f9;
    text-align: center;
}
.services .section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #111;
}

/* Flexbox for 4 cards per row */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

/* Each card takes 23% of width to fit 4 in a row with gap */
.service-card {
    flex: 0 0 23%;
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* =============================
   SECTIONS & TITLES
============================= */
section {
    padding: 6rem 0;
    position: relative;
}

section h2 {
    font-size: 2.7rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#ff4c29,#ffa64d);
    margin-top: 0.4rem;
    border-radius: 10px;
}

/* =============================
   CARDS (Programs, Services, Testimonials)
============================= */
.card {
    background-color: #767272;
    border: 1px solid #826f6f;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.7);
    overflow: hidden;
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(255,76,41,0.18);
}

.card-img-top {
    filter: brightness(0.85);
    transition: 0.4s ease;
}

.card:hover .card-img-top {
    filter: brightness(1);
}

.card-title {
    color: #ff7043;
    letter-spacing: 0.5px;
}

.card-text {
    color: #c9c9c9;
    font-size: 0.95rem;
}

/* =============================
   FAQ ACCORDION
============================= */
.accordion-button {
    background-color: #181818;
    color: #f4f4f4;
    font-weight: 600;
    padding: 1.2rem;
    border-radius: 10px !important;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: #222;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg,#ff4c29,#ffa64d);
    color: #111;
    font-weight: 700;
}

.accordion-body {
    background-color: #121212;
    padding: 1.7rem;
    color: #d0d0d0;
    border-left: 3px solid #ff4c29;
    border-radius: 0 0 10px 10px;
}

/* =============================
   PRICING CARDS
============================= */
.pricing-card {
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.pricing-card h3 {
    font-size: 2.4rem;
    font-weight: 900;
}

.pricing-card ul li {
    margin-bottom: 0.7rem;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 30px rgba(255,100,50,0.35);
}

/* =============================
   FORMS
============================= */
input, textarea {
    background-color: #161616;
    border: 1px solid #333;
    color: #fff;
    padding: 0.9rem;
    border-radius: 10px;
    transition: 0.3s ease;
    width: 100%;
}

input:focus, textarea:focus {
    border-color: #ff4c29;
    background-color: #1d1d1d;
    box-shadow: 0 0 10px rgba(255,76,41,0.3);
}

/* =============================
   FOOTER
============================= */
footer {
    background-color: #000;
    color: #999;
    font-size: 0.95rem;
    padding: 1.7rem 0;
    border-top: 1px solid #222;
    text-align: center;
}

footer p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =============================
   FOOTER (Quick Links)
============================= */
footer {
    background-color: #0b0b0b;
    padding: 3rem 0;
    color: #ccc;
}

footer h5 {
    color: #ff4c29;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

footer a {
    color: #ccc;
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.3s ease;
}

footer a:hover {
    color: #ff4c29;
    transform: translateX(5px);
}

footer .copyright {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    color: #777;

}
/* ====================================
   ATHENA TACTICS FOOTER STYLE
==================================== */
.athena-footer {
    background-color: #0b0b0b;
    color: #ccc;
    padding: 4rem 0 2rem;
    border-top: 1px solid #222;
}

.athena-footer h4.footer-brand {
    color: #ff4c29;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.athena-footer h5 {
    color: #ff4c29;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.athena-footer p {
    margin-bottom: 0.7rem;
    color: #ccc;
    font-size: 0.95rem;
}

.athena-footer i {
    color: #ff4c29;
    font-size: 1rem;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.footer-links li a:hover {
    color: #ff4c29;
    margin-left: 5px;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #222;
    color: #777;
    font-size: 0.9rem;
}
footer {
    background-color: #000;
    color: #ccc;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
}

.footer-brand-section {
    flex: 1 1 300px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff4c29;
}

.footer-brand p {
    margin: 0.3rem 0;
}

.footer-feather {
    font-size: 1.8rem; /* match h4 */
    color: #ff4c29;
    vertical-align: middle;
    margin-left: 0.3rem;
}

.footer-links {
    flex: 1 1 200px;
}

.footer-links h5 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.footer-links ul li i {
    color: #ff4c29;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex: 1 1 100%;
    }
}

.custom-feather-gun svg {
    width: 1.3em;   /* matches h4 font size */
    height: 1.3em;
    vertical-align: middle;
    margin-left: 0.4rem;
}




/* =============================
   RESPONSIVE
============================= */
@media (max-width:768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.1rem; }
    section { padding: 4rem 0; }
}
