/* GLOBAL RESET */
:root {
    --primary: #0a0f1c;
    --secondary: #1a2a4f;
    --accent: #d4af37; /* gold */
    --accent-glow: rgba(212,175,55,0.5);
    --text: #ffffff;
    --muted: #a0a8c0;
    --card-bg: rgba(255,255,255,0.05);
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    background: var(--primary);
    color: var(--text);
}

/* Headings */
h1, h2, h3 {
    letter-spacing: 0.5px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0f1c;
    color: white;
}

/* NAVBAR */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    position: fixed;
    width: 100%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

nav a {
    color: white;
    margin-left: 25px;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: gold;
}

/* PAGE HERO (used on all pages) */
.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    padding: 80px;
    background: linear-gradient(to right, #1a2a4f, #0a0f1c);
}

.page-hero h1 {
    font-size: 45px;
    text-shadow: 0 0 20px rgba(255,215,0,0.4);
}

/* SECTIONS */
.section {
    padding: 100px 60px;
}

/* CARDS */
.cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
}

/* BUTTON */
.btn {
    padding: 14px 30px;
    border: none;
    background: linear-gradient(45deg, green, green);
    color: black;
    border-radius: 30px;
    cursor: pointer;
}

/* FORM */
.form input, .form select, .form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.05);
    color: white;
}

/* FOOTER */
footer {
    padding: 40px;
    text-align: center;
    background: #05070f;
    opacity: 0.7;
}

.hero {
        height: 100vh;
        background: 
            linear-gradient(rgba(0, 30, 60, 0.7), rgba(0, 30, 60, 0.7)),
            url('images/10.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* Particles canvas */
#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.card-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer {
    background: #05070f;
    padding: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: white;
    margin: 5px 0;
    text-decoration: none;
}

.footer-links a:hover {
    color: gold;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    opacity: 0.6;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    position: relative;
    margin-left: 25px;
}

.mega-menu {
    position: absolute;
    top: 40px;
    left: 0;
    background: var(--secondary);
    display: none;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.dropdown:hover .mega-menu {
    display: flex;
    gap: 40px;
}

.mega-menu h4 {
    margin-bottom: 10px;
    color: var(--accent);
}

/* SECTION */
.services {
    padding: 80px 10%;
}
/* GRID */
.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}


/* HOVER EFFECT */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ICON */
.icon {
    width: 60px;
    height: 60px;
    background: green;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* TEXT */
.card h3 {
    margin: 10px 0;
    font-size: 22px;
}

.card p {
    color: #555;
    line-height: 1.6;
}

/* SHOW ANIMATION */
.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}

/* SECTION */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE */
.section img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    
}

/* TEXT SIDE */
.content {
    max-width: 500px;
}

.small-title {
    color: green;
    font-weight: bold;
    letter-spacing: 2px;
}

h1 {
    font-size: 40px;
    margin: 10px 0;
}

p {
    color: #555;
    line-height: 1.6;
}

/* CHECK ITEMS */
.feature {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}

.icon {
    width: 40px;
    height: 40px;
    border: 2px solid orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: orange;
    font-weight: bold;
    font-size: 18px;
}

/* BUTTON */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: green;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: green;
}

/* SCROLL ANIMATION */
.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .feature {
        justify-content: center;
    }
}

/* SECTION */
.section {
    padding: 80px 10%;
    text-align: center;
    background: #f7f7f7;
}

/* HEADER */
.header {
    margin-bottom: 50px;
}

.header h2 {
    letter-spacing: 3px;
    font-weight: 500;
    color: #1c2b39;
}

/* GOLD LINES */
.lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.line {
    width: 100px;
    height: 2px;
    background: #ec3138;
}

/* GRID */
.grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* ITEM */
.item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* VERTICAL DIVIDER */
.item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: #caa64b;
}

/* ICON */
.icon-1 {
    font-size: 40px;
    color: #caa64b;
    margin-bottom: 15px;
}

/* TITLE */
.item h3 {
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 15px;
    color: #1c2b39;
}

/* TEXT */
.item p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

/* SHOW ANIMATION */
.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .grid {
        flex-direction: column;
    }

    .item::after {
        display: none;
    }
}