/* Container Section */
.features-section {
  /*background-color: #0d1117; */
  padding: 60px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

/* Grid layout */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Card Styling */
.feature-card {
  background-color: #161b22;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(255, 255, 0, 0.2); /* yellow shadow */
  border: 2px solid #00f6ff;
  color:black;
 
}

/* Icon */
.feature-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

/* Heading */
.feature-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Paragraph */
.feature-card p {
  font-size: 15px;
  color: #c7c7c7;
  line-height: 1.6;
}

.account-section {
  /*background-color: #f1f4f8; */
  padding: 80px 20px;
  text-align: center;
}

.account-container {
  max-width: 900px;
  margin: 0 auto;
}

.account-subtitle {
  /* bright cyan */
  font-weight: 600;
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-title {
  font-size: 32px;
  font-weight: 500;
   color: #00bcd3;
  margin-bottom: 25px;
  line-height: 1.4;
}

.account-desc {
  color:white;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.account-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.account-icons img {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.account-icons img:hover {
  transform: scale(1.1);
}
/*---------------------*/
.fxc-who-section {
  /*background-color: #0e0e1a;*/
  padding: 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
}

.fxc-who-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.fxc-who-left {
  flex: 1;
  min-width: 320px;
  margin-right: 40px;
}

.fxc-who-title {
  color: #00f2ff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fxc-who-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cfd8dc;
}

.fxc-who-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fxc-who-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.fxc-who-number {
  font-size: 100px;
  font-weight: 700;
  color: #00f2ff;
  margin-right: 25px;
  line-height: 1;
  text-align:center;
}

.fxc-who-label {
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
}

.fxc-who-divider {
  width: 100%;
  border: none;
  border-top: 1px solid #444;
  margin-bottom: 25px;
}

/*card*/

.why-choose-section {
  /*background-color: #000;*/
  /*padding: 80px 20px;*/
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.why-choose-container {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.why-choose-content {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  transition: background 0.5s ease;
  /*background-color: #000;*/
}

.why-choose-content:hover {
  background: linear-gradient(135deg, #0ff0fc, #7c58ff);
}

.why-choose-left, .why-choose-right {
  flex: 1;
  min-width: 300px;
  padding: 40px;
}

.why-choose-img {
  max-width: 100%;
  height: auto;
}

.why-choose-subtitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.why-choose-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.why-choose-list {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}

.why-choose-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.why-choose-list li::before {
  content: "✔";
  color: #00ff99;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /* Example: adjust as per your actual header height */
  background-color: #035f61;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- Main container to clear floats and layout */
.main-container {
  display: flex;
}




