* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fa;
  color: #1a1a1a;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0077ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  background-color: #f8f9fa; /* Light background */
}
.trading-image {
  max-width: 100%;
  height: auto;
}

.lead{
      font-size: 25px;
      color: #000;
      font-weight: 400;
}
.search{
      color: #000;
      font-size: medium;
      font-weight: bold;
}



/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  
}








.session-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  height: auto;
  aspect-ratio: 4 / 5; /* Responsive shape on all screen sizes */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.first-card{
  background-image: url("https://i.postimg.cc/L6Cfxwb6/Image-1.jpg");

}
.second-card{
  background-image: url("https://i.postimg.cc/8PPYWc5Y/Image-2.jpg");
}
.third-card{
  background-image: url("https://i.postimg.cc/pTmfRNXq/Image-3.jpg");
}
.fourth-card{
  background-image: url("https://i.postimg.cc/J4MsQVVv/Image-4.jpg");
}

.session-card .card-img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.3s ease;
}

.session-card:hover .card-img {
  transform: scale(1.05);
}

.session-card .card-img-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  transition: background 0.3s ease;
}

.session-card .btn {
  border-radius: 50px;
  padding: 0.4rem 1rem;
}

@media (max-width: 768px) {
  .session-card .card-img-overlay {
    padding: 1.5rem;
  }

  .training-section h2 {
    font-size: 1.5rem;
  }
}


.insight-section {
  background-color: #fff;
}

.insight-section h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.insight-section p {
  font-size: 1.05rem;
  color: #555;
}

.insight-section button {
  background-color: #000;
  color: #fff;
  border: none;
  transition: background 0.3s ease;
}

.insight-section button:hover {
  background-color: #222;
}

@media (max-width: 768px) {
  .insight-section h1 {
    font-size: 1.8rem;
  }

  .insight-section p {
    font-size: 0.95rem;
  }
}


.video-section {
  background-color: #f9f9f9;
}

.video-section iframe {
  border-radius: 1rem;
  border: none;
}