/* style.css */
:root {
  --black: #111111;
  --white: #ffffff;
  --gold: #d4af37;
  --yellow: #ffeb3b;
  --charcoal: #1a1a1a;
  --gray: #e0e0e0;
  --light-bg: #f5f5f5;
  --light-text: #333333;
  --section-padding: 5rem 10%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.4s ease, color 0.4s ease;
}

body {
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  transition: var(--transition);
}

body.light-mode {
  background-color: var(--light-bg);
  color: var(--light-text);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background-color: var(--black);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

body.light-mode .navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
}

.navbar.scrolled {
  background-color: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

body.light-mode .navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

body.light-mode .nav-links a {
  color: var(--light-text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  transition: all 0.4s ease;
}

body.light-mode .theme-toggle {
  color: var(--light-text);
}

.theme-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: var(--white);
  transition: all 0.3s ease;
}

body.light-mode .hamburger .bar {
  background-color: var(--light-text);
}
/*Hero section*/
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(pics/blurred.png) no-repeat center center/cover;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: -6rem;
  margin-right: -20px;
  line-height: 1.6;
}
body.light-mode .hero {
  background: linear-gradient(
      rgba(245, 245, 245, 0.8),
      rgba(245, 245, 245, 0.8)
    ),
    url(pics/blurred.png) no-repeat center center/cover;
}

/* About Page Styles */
.about-page {
  padding: 8rem 5% 5rem;
  min-height: 100vh;
}

body.light-mode .about-page {
  background-color: var(--light-bg);
}

.about-header {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 2rem;
}

.about-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--gold);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  object-fit: contain;
  width: 100%;
  height: auto;
  display: block;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.subsidiaries {
  margin-top: 3rem;
}

.subsidiaries h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.subsidiary {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--charcoal);
  border-radius: 8px;
  transition: all 0.3s ease;
}

body.light-mode .subsidiary {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.subsidiary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.subsidiary-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  text-align: center;
}

.section-title {
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--yellow));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 5%;
}

.team-card {
  background: var(--charcoal);
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

body.light-mode .team-card {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.1);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--gold);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 0.5rem;
}

.team-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

body.light-mode .team-card p {
  color: var(--light-text);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  transition: color 0.3s ease;
}

body.light-mode .social-links a {
  color: var(--light-text);
}

.social-links a:hover {
  color: var(--gold);
}

/* Contact Section */
.contact-section {
  padding: 8rem 5% 5rem;
  min-height: 100vh;
}

body.light-mode .contact-section {
  background-color: var(--light-bg);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.map-container {
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 1rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form {
  background: var(--charcoal);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

body.light-mode .contact-form {
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  color: var(--white);
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
  background: var(--white);
  color: var(--light-text);
  border: 1px solid var(--gray);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, var(--gold), var(--yellow));
  color: var(--black);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

body.light-mode .footer {
  background-color: var(--gray);
  color: var(--light-text);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer .logo img {
  height: 13vh;
  transition: filter 0.4s ease;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.light-mode .footer-links a {
  color: var(--light-text);
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links a {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

body.light-mode .social-links a {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--light-text);
}

.social-links a:hover {
  background-color: var(--gold);
  color: var(--black);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo img {
    margin-top: 6px;
    height: 28px;
  }

  .about-container,
  .contact-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 30px;
  }

  .nav-links {
    position: fixed;
    top: 80px; /* Start off-screen */
    left: 0;
    width: 100%;
    background-color: var(--charcoal);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: transform 0.5s ease-in-out;
    z-index: 999;
    gap: 1.5rem;
    transform: translateY(-150%); /* Hide by default */
  }

  body.light-mode .nav-links {
    background-color: var(--white);
  }

  .nav-links.active {
    transform: translateY(0); /* Show when active */
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .about-header h1,
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 26.5px;
  }

  .about-header h1,
  .section-title h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}
