body {
  font-family: 'Open Sans', sans-serif;
  color: #000080;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Headings and Logo */
h1, h2, h3, .logo, .company-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* Navbar styling */
.navbar {
    width: 100%;
    background-color: #000080; /* your theme color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap; /* allows wrapping on small screens */
}

/* Logo section */
.logo-section {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px; /* smaller size */
    width: auto;
    margin-right: 10px;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    transition: background 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: #1d2d44;
    border-radius: 4px;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1d2d44;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-content {
        position: static;
    }
}




#forexpulse-blog-section {
  background-color: #f4fcfb;
  padding: 70px 20px;
  text-align: center;
}

.forexpulse-blog-heading {
  font-size: 2.5rem;
  color: #003c3c;
  margin-bottom: 10px;
}

.forexpulse-blog-subheading {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

.forexpulse-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.forexpulse-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forexpulse-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.forexpulse-blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.forexpulse-blog-content {
  padding: 20px;
  text-align: left;
}

.forexpulse-blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #00c194;
}

.forexpulse-blog-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.forexpulse-blog-read {
  color: #003c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.forexpulse-blog-read:hover {
  color: #00c194;
}
