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

/* CSS Variables */
:root {
  --primary-btn-background: #000;
  --primary-btn-text: #fff;
  /* --primary-btn-background: linear-gradient(97.79deg, #edf4ff 9.39%, #f2f6ff 50.46%, #eeebff 91.53%);
  --primary-btn-text: black; */
}

body {
  font-family: "Suisse Intl", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  transition: background-color 0.5s ease;
}

body.dark-background {
  background-color: #000;
}

.container {
  /* max-width: 1300px; */
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 70px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
}

.nav-link:hover {
  color: #000;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menus */
.navbar-my {
  margin-top: 15px;
}
.navbar-nav-my {
  margin-left: 100px;
}
.navbar-header-my {
  justify-content: space-between;
  display: flex;
  align-items: stretch;
}
.btn-contact {
  background: #000;
  color: #fff !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}
/* .btn-contact:hover {
  background: #333 !important;
  color: #fff !important;
} */
/* .navbar-white .navbar-nav > li > a:hover {
  color: #1f271b !important;
} */
.dropdown-menu1 > li > a {
  padding: 60px 18px 12px !important;
  display: flex !important;
  justify-content: space-between !important;
  width: 500px !important;
}

.dropdown-menu > li {
  border-top: 1px solid #42320026 !important;
}

.dropdown-menu > li:first-child {
  border-top: 0 !important;
}
.dropdown-menu > li > a:hover {
  background: #f3f0e8 !important;
  border-bottom: 6px solid #a57d00 !important;
}
/* .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
} */

/* .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

/* About Dropdown */
/* .about-dropdown {
  min-width: 300px;
  padding: 20px 0;
}

.about-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #f5f5f5;
}

.about-dropdown .dropdown-item:last-child {
  border-bottom: none;
}

.about-dropdown .dropdown-item:hover {
  background: #f8f8f8;
  color: #000;
}

.about-dropdown .arrow {
  font-size: 16px;
  color: #999;
}

/* Clients Dropdown */
.dropdown-menu2 > li > a {
  padding: 40px !important;
}
.clients-dropdown {
  min-width: 900px;
  padding: 30px;
}
.expertise-image {
  width: 50px;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dropdown-column h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.dropdown-column .dropdown-item {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

/* .dropdown-column .dropdown-item:hover {
  color: #000;
} */

/* Expertise Dropdown */
.dropdown-title {
  font-size: 20px;
}
.expertise-dropdown {
  min-width: 600px;
  padding: 30px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expertise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.expertise-item:hover {
  background: #f8f8f8;
}

.expertise-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expertise-item span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* Contact Button */
.btn-contact {
  /* background: #000; */
  background: var(--primary-btn-background);
  /* color: #fff; */
  color: var(--primary-btn-text) !important;
  font-weight: 600 !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background: var(--primary-btn-background) !important;
  /* color: #fff; */
  color: var(--primary-btn-text) !important;
}

/* Hero Section */
.hero {
  position: relative;
  /* min-height: 50vh; */
  display: flex;
  align-items: center;
  background: #f8f8f6;
  /* background: var(--primary-btn-background); */
  overflow: hidden;
  margin-top: 115px;
  padding: 70px 0 70px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

/* Updated hero tagline positioning and styling */
.hero-tagline {
  margin-bottom: 40px;
}

.hero-tagline p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 300;
  /* line-height: 0.9; */
  margin-bottom: 60px;
}

.hero-line-1 {
  display: block;
  color: #333;
  font-weight: 400;
}

.hero-line-2 {
  display: block;
  color: #d4af37;
  font-weight: 400;
}

/* Added hero license section styling */
.hero-license {
  margin-top: 40px;
}

.hero-license p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.license-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bg-circles {
  position: relative;
  width: 100%;
  height: 100%;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  background: rgba(212, 175, 55, 0.05);
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 5%;
  background: rgba(212, 175, 55, 0.08);
}

.circle-3 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -15%;
  background: rgba(212, 175, 55, 0.03);
}

.circle-4 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 10%;
  background: rgba(212, 175, 55, 0.06);
}

/* Updated Company Introduction Section */
.company-intro {
  padding: 100px 0;
  background: #fff;
}

.intro-content {
  max-width: 714px;
  margin: 0 auto;
  text-align: left;
  /* padding: 0 20px; */
  float: left;
}

.intro-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

.intro-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  font-weight: 600;
  text-align: left;
}

.btn-about {
  display: inline-block;
  background: var(--primary-btn-background);
  color: var(--primary-btn-text);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}

.btn-about:hover {
  background: var(--primary-btn-background);
  color: var(--primary-btn-text);
}

/* Our Clients Section */
.our-clients {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

body.dark-background .our-clients {
  color: #fff;
}

body.dark-background .our-clients h2 {
  color: #fff;
}

body.dark-background .section-description {
  color: #ccc;
}

body.dark-background .client-category h3 {
  color: #000;
}

.our-clients h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}

.section-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.client-category {
  background-color: #fff;
  padding: 24px;
  border-radius: 6px;
}

.client-category h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #333;
}

.client-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.client-item {
  /* background: #d4af37; */
  background: var(--primary-btn-background);
  /* color: #fff; */
  color: var(--primary-btn-text);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Our Expertise Section */
.our-expertise {
  padding: 100px 0;
  background: white;
}

.our-expertise h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}

.expertise-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.expertise-card {
  background: #f3f0e8;
  padding: 18px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.expertise-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
  background-color: #423200;
  color: white !important;
  transition: background-color 0.8s ease;
}
.expertise-card:hover h3 {
  color: white !important;
}

.expertise-icon-large {
  width: 80px;
  height: 80px;
  margin: 24px auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.expertise-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.4;
}

.expertise-content {
  margin-bottom: 36px;
}
.learn-more {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.learn-more:hover {
  color: #b8941f;
}

/* Markets Section */
.markets-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

body.dark-background .markets-section {
  color: #fff;
}
.markets-content {
  padding: 60px;
  color: #333;
  text-align: center;
}

body.dark-background .markets-content {
  background: #fff;
  border-radius: 12px;
}

body.dark-background .markets-subtitle {
  color: rgb(165, 125, 0);
}

body.dark-background .markets-section h2 {
  color: #333;
}

body.dark-background .markets-description {
  color: #666;
}

/* .markets-content {
  max-width: 800px;
} */

.markets-subtitle {
  font-size: 12px;
  /* font-weight: 400; */
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 20px;
}

.markets-section h2 {
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #333;
}

.markets-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-learn-more {
  display: inline-block;
  /* background: #d4af37;
  color: #fff; */
  background: var(--primary-btn-background);
  color: var(--primary-btn-text);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn-learn-more:hover {
  background: #b8941f;
}

/* General FAQs section styling */
.general-faqs {
  padding: 100px 0;
  background: #fff;
}

.faqs-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  padding: 0 20px;
}

.faqs-header h2 {
  font-size: 48px;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
}

.faqs-header p {
  font-size: 18px;
  color: #666;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f5f5dc;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.1);
}

.faq-toggle {
  font-size: 20px;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 25px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.footer {
  padding: 60px 0;
  background: #f8f8f6;
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
}

.footer-section p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* Newsletter/contact footer styling */
.newsletter-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  line-height: 1.6;
  margin-bottom: 8px;
  display: block;
}

.footer-column a:hover {
  color: #fff;
}

.newsletter-form {
  margin-top: 20px;
}

.email-input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.email-input {
  width: 100%;
  padding: 15px 50px 15px 15px;
  background: transparent;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}

.email-input::placeholder {
  color: #666;
}

.email-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
}

.privacy-note {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 15px;
}

.get-in-touch-btn {
  background: #333;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.get-in-touch-btn:hover {
  background: #555;
}

.address-info {
  margin-top: 20px;
}

.address-info p {
  margin-bottom: 5px;
}

/* Final copyright footer styling */
.final-footer {
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.final-footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 200px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: -4px;
  line-height: 0.8;
  text-align: center;
}

.copyright-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
}

.legal-disclaimer {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.legal-disclaimer p {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (min-width: 1820px) {
  .container {
    width: 1600px;
  }
}
@media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav {
    flex-direction: column;
    gap: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 10px;
  }

  .dropdown-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .intro-content h2 {
    font-size: 2.5rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expertise-grid-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faqs-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-logo {
    font-size: 120px;
    letter-spacing: -2px;
  }

  .large-axsa-text {
    font-size: 120px;
    letter-spacing: -4px;
  }
}

@media (max-width: 480px) {
  .dropdown-menu2 > li > a {
    padding: 10px !important;
  }
  .expertise-image {
    width: 20px;
  }
  .dropdown-title {
    font-size: 18px;
  }
  .expertise-card {
    /* width: 82%; */
  }
  .expertise-container {
    max-height: 200px !important;
  }
  .navbar-nav-my {
    margin-left: 10px;
  }
  .hero {
    margin-top: 90px;
    padding-bottom: 40px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .intro-content h2 {
    font-size: 2rem;
  }

  .our-clients h2,
  .our-expertise h2 {
    font-size: 36px;
  }

  .markets-section h2 {
    font-size: 42px;
  }

  .faqs-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo {
    font-size: 80px;
    letter-spacing: -1px;
  }

  .faqs-header h2 {
    font-size: 36px;
  }

  .large-axsa-text {
    font-size: 80px;
    letter-spacing: -2px;
  }
}

/* Comprehensive Copyright Footer Section */
.copyright-footer {
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.large-axsa-text {
  font-size: 240px;
  font-weight: 300;
  color: #fff;
  letter-spacing: -8px;
  line-height: 0.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Expertise container styles */
.expertise-container {
  max-height: 0;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.8s ease;
}

.expertise-container.show {
  opacity: 1;
  max-height: 200px;
}
