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

body {
  background: #050505;
  color: white;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  background: #050505;
  z-index: 1000;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.contact-btn {
  background: #c9a84c;
  color: black;
  border: none;
  padding: 10px 19px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.menu-toggle img {
  width: 28px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* HERO */

.hero {
  width: 100%;
  min-height: 100vh;
  padding: 40px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #040404;
}

/* LEFT SIDE */
.hero-text {
  flex: 1;
  max-width: 720px;
}

h1,
h2 {
  font-family: "Instrument Serif", serif;
}

.hero-text h1 {
  font-size: 4.7rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: #f4f4f4;
}

.hero-text h1 span {
  color: #c9a84c;
}

.hero-text p {
  color: #8b8b8b;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 38px;
}

/* BUTTONS */

.hero-buttons {
  margin-bottom: 60px;
}

.gold-btn {
  background: #c9a84c;
  color: black;
  border: none;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.outline-btn {
  background: transparent;
  color: #c9a84c;
  border: 1px solid #232323;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.outline-btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 60px;
  width: fit-content;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 2px solid rgba(141, 126, 82, 2);
}

.stat h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 4px;
  font-weight: 700;
}

.stat p {
  font-size: 15px;
  color: #968657;
  margin: 0;
  line-height: 1.2;
}

/* RIGHT SIDE */

.hero-text > .hero-image {
  display: none;
}

.hero-image img {
  width: 600px;
  max-width: 470px;
  object-fit: contain;
  margin-bottom: 9rem;
}

/* MARQUEE */

.ticker {
  background: #c9a84c;
  color: black;
  padding: 18px 0;
  overflow: hidden;
  font-family: "Syne", sans-serif;
}

.ticker-content {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
}

/* ABOUT SECTION */

.about-section {
  padding: 120px 5%;
}

.about-section h2 {
  font-size: 68px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-text {
  width: 100%;
  max-width: 900px;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: "Google Sans", sans-serif;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-box {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}

.stat-box h3 {
  font-size: 52px;
  margin-bottom: 10px;
}

.stat-box p {
  color: #999;
}

/* PORTFOLIO */

.portfolio {
  padding: 20px 5%;
  background-color: #111111;
}

.portfolio h2 {
  font-size: 64px;
  margin-bottom: 60px;
}

.portfolio h2 span {
  color: #c9a84c;
}

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

.card {
  background: #0d0d0d;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card p {
  color: #999;
  line-height: 1.7;
}

.card img {
  width: 2.5em;
  height: 2.5em;
}

/* SERVICES SECTION */

.services-section {
  padding: 100px 5%;
  background: #050505;
}

.services-container {
  border: none;
  padding: 50px;
  display: flex;
  gap: 60px;
}

.services-left {
  width: 35%;
}

.services-left h2 {
  font-size: 56px;
  margin-bottom: 40px;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #645e4e;
  cursor: pointer;
  transition: 0.3s;
}

.service-item.active {
  background: #645e4e;
  color: white;
}

.service-item:hover {
  border-color: #c9a84c;
}

.services-right {
  width: 65%;
}

.services-right h3 {
  font-size: 30px;
  margin-bottom: 25px;
}

.services-right p {
  color: #f2f2f7;
  line-height: 1.8;
  margin-bottom: 20px;
}

.services-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f7;
  font-size: 15px;
}

.feature img {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  display: block;
}

/* PARTNERS SECTION */

.partners-section {
  background: #f2f2f2;
  padding: 50px 5%;
  text-align: center;
}

.partners-section h2 {
  color: #111;
  font-size: 56px;
  margin-bottom: 50px;
}

.partners-logos {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.partners-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: partners-scroll 30s linear infinite;
}

.partners-logos img,
.partners-track img {
  max-width: 120px;
  object-fit: contain;
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* NETWORK SECTION */

.network-section {
  padding: 100px 5%;
}

.network-section h2 {
  text-align: center;

  font-size: 64px;
  margin-bottom: 70px;
}

.network-section h2 span {
  color: #d4af37;
  font-style: italic;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.network-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  text-align: center;
  background: #0a0a0a;
  transition: 0.3s;
}

.network-card:hover {
  transform: translateY(-6px);
  border-color: #d4af37;
}

.network-card img {
  width: 30px;
  margin-bottom: 20px;
}

.network-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.network-card p {
  color: #999;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 14px;
}

.network-card span {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 2px;
}

/* CONTACT SECTION */

.contact-section {
  padding: 120px 5%;
  background: #111111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.contact-left {
  width: 45%;
}

.contact-left h2 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.contact-left h2 span {
  color: #d4af37;
  font-style: italic;
}

.contact-left p {
  color: #999;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 500px;
}

.office {
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.office h3 {
  color: #c9a84c;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.office p {
  margin: 0;
  line-height: 1.9;
  color: #8a8680;
  font-size: 15px;
}

/* RIGHT SIDE */

.contact-right {
  width: 50%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  color: white;
  outline: none;
  font-size: 14px;
  border-radius: 5px;
}

.contact-form textarea {
  height: 160px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8680;
}

.contact-form input[placeholder="Area of Interest"]::placeholder {
  color: #fff;
}

.contact-form button {
  background: #c9a84c;
  border: none;
  padding: 16px;
  cursor: pointer;
  font-weight: 600;
  color: black;
  transition: 0.3s;
  border-radius: 5px;
}

.contact-form button:hover {
  opacity: 0.9;
}

.contact-right small {
  display: block;
  margin-top: 18px;
  color: #666;
  line-height: 1.7;
}

/* FOOTER */

.footer {
  background: #040404;
  padding: 80px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand img {
  margin-bottom: 20px;
}

.footer-brand p {
  color: #999;
  line-height: 1.8;
  max-width: 330px;
}

.footer-column h3 {
  color: #d4af37;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 25px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 16px;
  transition: 0.3s;
  font-size: 15px;
}

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

/* MOBILE */

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-left h2 {
    font-size: 48px;
  }

  .contact-left p {
    font-size: 15px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }

  .footer {
    padding: 70px 20px;
  }

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

/* MOBILE */

@media (max-width: 768px) {
  /* NAVBAR */

  .nav-links,
  .contact-btn {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #050505;
    flex-direction: column;
    gap: 0;
    padding: 20px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 18px 20px;
  }

  .logo img {
    max-width: 150px;
  }

  /* HERO */

  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 40px 16px;
    gap: 25px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }

  .hero-buttons button {
    width: auto;
  }

  .hero-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
    order: 1;
  }

  .hero > .hero-image {
    display: none;
  }

  .hero-text > .hero-image {
    display: flex;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding-top: 16px;
  }

  .stat h2 {
    font-size: 2.3rem;
  }

  .stat p {
    font-size: 14px;
  }

  /* TICKER */

  .ticker-content {
    gap: 20px;
    font-size: 12px;
  }

  /* ABOUT */

  .about-section {
    padding: 80px 20px;
  }

  .about-section h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .stat-box {
    padding-left: 15px;
  }

  .stat-box h3 {
    font-size: 42px;
  }

  /* PORTFOLIO */

  .portfolio {
    padding: 80px 20px;
  }

  .portfolio h2 {
    font-size: 31px;
    margin-bottom: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 25px;
  }

  .card h3 {
    font-size: 20px;
  }

  /* SERVICES */

  .services-section {
    padding: 70px 20px;
  }

  .services-container {
    flex-direction: column;
    gap: 35px;
    padding: 0;
  }

  .services-left,
  .services-right {
    width: 100%;
  }

  .services-left h2 {
    font-size: 3rem;
    margin-bottom: 24px;
  }

  .service-tabs {
    gap: 20px;
  }

  .service-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    color: #8f8574;
    font-size: 16px;
  }

  .service-item.active {
    background: #6e6758;
    color: white;
    padding: 18px 22px;
    border-radius: 18px;
  }

  .services-right h3 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .services-right p {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature {
    font-size: 14px;
  }

  /* PARTNERS */

  .partners-section {
    padding: 60px 20px;
  }

  .partners-section h2 {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .partners-track {
    gap: 30px;
  }

  .partners-track img {
    max-width: 80px;
  }

  /* NETWORK */

  .network-section {
    padding: 80px 20px;
  }

  .network-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .network-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .network-card {
    padding: 30px 20px;
  }

  /* CONTACT */

  .contact-section {
    padding: 80px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 50px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-left h2 {
    font-size: 48px;
  }

  .contact-left p {
    font-size: 15px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-form button {
    width: 100%;
  }

  /* FOOTER */

  .footer {
    padding: 70px 20px;
  }

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