/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f5fefe;
  color: #333;
}

/* Navbar */
.navbar {
  background: #101820;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin-left: 1.5rem;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #00d1b2;
}

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature {
  max-width: 300px;
}

.feature h3 {
  color: #004d4d;
  margin-bottom: 1rem;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to right, #004d4d, #006666);
  color: #fff;
  text-align: center;
  padding: 3rem 2rem;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

/* Button */
.btn {
  background: #00d1b2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background: #008080;
}

/* Footer */
.footer {
  background: #101820;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* ======= Responsive (Device Friendly) ======= */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .nav-links {
    flex-direction: column;
    background: #101820;
    width: 100%;
    display: none;
    margin-top: 1rem;
    padding: 1rem 0;
    border-radius: 10px;
  }

  .navbar .nav-links li {
    margin: 0.5rem 0;
    text-align: center;
  }

  .navbar .nav-links.show {
    display: flex;
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .features {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

/* About Company Section */
.about-company {
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Default desktop view: Text Left, Image Right */
.about-text {
  flex: 1;
  order: 1;
}

.about-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 2;
}

.about-text h2 {
  font-size: 2rem;
  color: #004d4d;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-text .btn {
  display: inline-block;
  background: #00d1b2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.about-text .btn:hover {
  background: #008080;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* ================================
   Responsive Design - Mobile View
   ================================= */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  /* Change order: Images on Top, Text Below */
  .about-images {
    order: 1;
    width: 100%;
  }

  .about-text {
    order: 2;
    width: 100%;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}


/* Forex Overview Section */
.forex-overview {
  padding: 4rem 2rem;
  background: #fff;
}

.forex-overview .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.overview-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.overview-text {
  flex: 1;
}

.overview-text h2 {
  font-size: 2rem;
  color: #004d4d;
  margin-bottom: 1rem;
}

.overview-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.overview-text .btn {
  display: inline-block;
  background: #00d1b2;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.overview-text .btn:hover {
  background: #008080;
}

/* Responsive */
@media (max-width: 768px) {
  .forex-overview .container {
    flex-direction: column;
  }
  
  .overview-image,
  .overview-text {
    width: 100%;
  }

  .overview-text h2 {
    font-size: 1.75rem;
  }
  
  .overview-text p {
    font-size: 0.95rem;
  }
}


/* Why Choose Us Section */
.why-choose-us {
  background: #f7f9fa;
  padding: 4rem 2rem;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  color: #004d4d;
  margin-bottom: 2.5rem;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.feature-item img {
  width: 60px;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  color: #101820;
  margin-bottom: 0.8rem;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
}


.features-section {
  padding: 4rem 2rem;
  background: #f0f8f8;
  text-align: center;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.feature-box h3 {
  margin-bottom: 1rem;
  color: #004d4d;
  font-size: 1.3rem;
}

.feature-box p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-box:hover {
  transform: translateY(-6px);
}
