/* GLOBAL */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
	overflow-x: hidden;
}

/* LINKS */
a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background-color: #0a0a0a;
    border-bottom: 1px solid #111;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
/* HRADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background-color: #0a0a0a;
    border-bottom: 1px solid #111;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* FIXED, CONSISTENT LOGO SIZE */
.logo-img {
    height: 110px;   /* <— THIS FIXES YOUR LOGO SIZE */
    width: auto;
    display: block;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #00ff7f;
}

/* PAGE CONTENT */
.content {
    padding: 150px 80px 10px 80px;  /* <— PERFECT PADDING BELOW FIXED NAV */
    max-width: 1200px;
    margin: 0 auto;
}

/* STRATEGY / FEATURE CARDS */
.strategy, .feature-card {
    margin-bottom: 40px;
}

.strategy h2,
.feature-card h3 {
    color: #00ff7f;
    margin-bottom: 10px;
}

.feature-img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 25px 0;
    color: #777;
    font-size: 18px;
    border-top: 1px solid #111;
    margin-top: 10px;
}

/* HERO SECTION */
.hero {
    padding: 160px 80px 120px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #00ff7f;
    color: #000;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: #00cc66;
}

/* HERO RIGHT (CHART) */
.hero-right {
    flex: 1;
}

#performanceChart {
    width: 100%;
    height: 300px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #0a0a0a;
    padding: 10px 0;
    list-style: none;
    left: 0;
    width: 220px;
    border: 1px solid #111;
    z-index: 9999;

    /* Animation */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;

    /* Overlap fix */
    top: 100%;
    margin-top: -5px;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #ccc;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    color: #00ff7f;
    background-color: #111;
    box-shadow: 0 0 10px #00ff7f;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* SOCIAL MEDIA ICONS */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ccc;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a i {
    font-size: 40px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00ff7f;
    transform: translateY(-5px);
}

.social-links a:hover i {
    color: #00ff7f;
    text-shadow: 0 0 12px #00ff7f;
}

/* Glow + hover animation */
.social-links a:hover {
    color: #00ff7f;
    transform: translateY(-5px);
}

.social-links a:hover i {
    color: #00ff7f;
    text-shadow: 0 0 12px #00ff7f;
}

.social-box {
    padding: 25px;
    margin-top: 30px;
}

/* CONTACT FORM */
.contact-form {
    margin-top: 40px;
    padding: 25px;
    border-radius: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #00ff7f;
    font-size: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #0a0a0a;
    border: 1px solid #00ff7f;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #00ff7f;
}

.contact-form button {
    background-color: #00ff7f;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    box-shadow: 0 0 15px #00ff7f;
    transform: translateY(-3px);
}

.section-title {
    color: #00ff7f;
    font-size: 28px;
    margin-bottom: 20px;
}
/* POP UP */

.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #00ff7f;
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 0 15px #00ff7f;
    z-index: 99999;
    animation: fadeInOut 3s ease;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* TOOL CARDS */
.tools-section {
  padding: 40px;
  text-align: center;
  color: #fff;
}

.page-title {
  font-size: 42px;
  color: #00ff7f;
  text-shadow: 0 0 20px #00ff7f;
}

.page-subtitle {
  color: #ccc;
  margin-bottom: 40px;
}

.tool-card {
  background: #0a0a0a;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ff7f33;
  width: 70%;
  margin: 20px auto;
  text-align: left;
}

.tool-card:hover {
  box-shadow: 0 0 25px #00ff7f;
  transform: translateY(-3px);
}

.tool-link {
  color: #00ff7f;
  font-weight: bold;
  font-size: 18px;
}


/* TOOL CARDS */
/* Tools Hero Section */
.tools-hero {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 1px;
    color: #fff;
}

.tools-title {
    font-size: 48px;
    font-weight: 700;
    color: #00ff7f;
    text-shadow: 0 0 20px #00ff7f, 0 0 40px #00ff7f;
    margin-bottom: 10px;
}

.tools-tagline {
    font-size: 20px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Highlight Boxes */
.tools-highlights {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.highlight-box {
    background: #0a0a0a;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px #00ff7f33;
    width: 220px;
    text-align: center;
    transition: 0.3s;
}

.highlight-box:hover {
    box-shadow: 0 0 25px #00ff7f;
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 32px;
    color: #00ff7f;
    display: block;
    margin-bottom: 10px;
}


/* Enhanced Tool Card */
.tool-card-title {
    color: #00ff7f;
    font-size: 26px;
    margin-bottom: 10px;
}

.tool-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tool-header {
    display: flex;
    align-items: center;
    gap: 12px; /* slightly smaller gap */
    margin-bottom: 15px;
}

.tool-icon {
    width: 32px;   /* smaller icon */
    height: 32px;  /* smaller icon */
    object-fit: contain;
    filter: drop-shadow(0 0 6px #00ff7f); /* softer glow */
}

.tool-title {
    font-size: 26px; /* slightly smaller title to match icon */
    font-weight: 700;
    color: #00ff7f;
    margin: 0;
}







