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

html, body {
  width: 100%;
  overflow-x: hidden;
}

:root {
  --primary-color: rgb(255, 181, 44);
  --light-color: #f4f4f6;
  --dark-color: #111;
}

body {
  font-family: Arial, 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.logo {
  width: 270px;
}

/* Navbar */
.navbar {
  background: #fff;
  padding: 20px;
  position: fixed;
  right: 0;
  left: 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .main-menu ul {
  display: flex;
  font-size: 18px;
}

.navbar ul li a {
  padding: 10px 20px;
  display: block;
  font-weight: 600;
  transition: 0.5s;
}

.navbar ul li a:hover {
  color: var(--primary-color);
}

/* Hamburger Button */
.hamburger-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.hamburger-button .hamburger-line {
  width: 30px;
  height: 3px;
  background: #333;
  margin: 6px 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  z-index: 1000;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu-button {
  font-size: 20px;
  transition: 0.3s;
  color: #333;
  text-decoration: none;
  display: block;
  padding: 15px 20px;
}

.mobile-menu-button:hover {
  color: var(--primary-color);
}

.mobile-menu-button:active {
  color: var(--primary-color);
  transition: color 0.5s ease;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  margin-top: 100px;
  padding: 0 20px;
}

.mobile-menu ul li {
  margin: 10px 0;
  list-style: none;
}

/* Hero */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  color: white;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)), url("/images/hero-img.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.hero-text {
  font-size: 82px;
  margin-top: 170px;
  padding-left: 10px;
  color: white;
}

.hero-text-container {
  display: flex;
  width: 100% !important;
  justify-content: space-between;
}

.container-right {
  width: 2000px;
}

/* About Us */
.about-us {
  padding: 40px 0;
}

.about-us-header {
  font-size: 40px;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 55px;
}

.about-us .about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Consulting Services */
.consulting-services .consulting-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.consulting-services-header {
  font-size: 40px;
  font-weight: 400;
  margin-top: 60px;
}

.consulting-services .consulting-services-card-subheading {
  margin-bottom: 30px;
}

/* Footer */
.footer {
  margin-top: 30px;
  padding: 40px 0;
}

.footer h4 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer ul li {
  line-height: 2.2;
  margin-bottom: 8px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

.footer a:active {
  color: var(--primary-color);
  transition: color 0.5s ease;
}

.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  flex-direction: column;
  gap: 20px;
}

/* Utility Classes */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

/* Card */
.card {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 20px;
}

.card-img {
  background: #000000;
  color: #000;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

/* Text Classes */
.text-xl {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: normal;
  margin: 40px 0 20px;
}

.text-center {
  text-align: center;
}

/* Background */
.bg-light {
  background: var(--light-color);
  color: #333;
}

.bg-dark {
  background: var(--dark-color);
  color: #fff;
}

.bg-black {
  background: #000;
  color: #fff;
}

/* Media Queries */
@media (max-width: 780px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .navbar .main-menu {
    display: none;
  }

  .hero {
    width: 100%;
    height: 100vh;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

  .hero-text {
    font-size: 11vw;
  }

  .navbar .hamburger-button {
    display: block;
    position: relative;
    z-index: 1001;
  }

  .container {
    padding: 0 15px;
    width: 100%;
  }

  .about-us .about-us-grid,
  .consulting-services .consulting-services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
  }

  .about-us p {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .text-xl {
    font-size: 1.9rem;
  }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
    -webkit-background-size: cover;
    background-size: cover;
  }
}