body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  padding-top: 80px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  padding: 5px 30px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-scrolled {
  background-color: rgba(0, 0, 0, 0.5);
}

.logo img {
  width: 150px;
  transition: opacity 0.3s;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 100px;
  gap: 10px;
}

nav a,
.dropbtn {
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px 20px;
  margin: 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

nav a:hover,
.dropbtn:hover {
  color: #fdd700;
  border-bottom: 2px solid #ffd700;
}

nav.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

nav.show a {
  padding: 15px;
  text-align: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  top: 100%;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.dropdown-content a:hover {
  background-color: #333;
  text-align: center;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 70px 0 0 70px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
}

.hero-content {
  max-width: 40%;
}

.hero-image {
  max-width: 55%;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-section h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background-color: #fde500;
  color: #000000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #ffd700;
}

.hero-section h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-us-section {
  text-align: center;
  padding: 30px 60px;
  color: #000;
}

.about-us-heading {
  font-weight: bold;
  font-size: 3em;
}

.service-box.image-box {
  background-image: url('assets/images/Fran1.jpg');
}

.services-section {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 2em;
}

.services-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.service-box {
  flex: 1;
  margin: 0 10px;
  padding: 20px;
  border-radius: 5px;
}

.image-box {
  background-size: cover;
  background-position: center;
  height: 200px;
}

.text-box {
  background-color: rgba(0, 0, 0, 0.5);
}

.service-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
}

.service-box {
  margin-bottom: 20px;
}

.marketing-section-heading {
  background-color: #d4af37;
  text-align: center;
  padding: 30px 20px;
  color: #000000;
  font-weight: bold;
  font-size: 2.5em;
}

.marketing-services-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px;
}

.image {
  width: 50%;
  height: 600px;
  background-size: cover;
  background-position: center;
}

.content {
  width: 45%;
  padding: 0 10px 0 0;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

.service {
  margin-bottom: 20px;
}

.branding-section-heading {
  background-color: #d4af37;
  text-align: center;
  padding: 30px 20px;
  color: #000000;
  font-weight: bold;
  font-size: 2.5em;
}

.branding-services-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px;
}

.marketing-image {
  width: 50%;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.branding-image {
  width: 50%;
  height: 500px;
  background-size: cover;
  background-position: center;
}

.investor-image {
  width: 50%;
  height: 800px;
  background-size: cover;
  background-position: center;
}

.content-top {
  width: 100%;
  text-align: center;
  padding: 30px;
}

.investor-section-heading {
  text-align: center;
  padding: 30px 20px;
  background-color: #6a5100;
  color: #fff;
  font-weight: bold;
  font-size: 2.5em;
}

.investor-services {
  background-color: #f5f5f5;
  padding: 20px 50px;
  text-align: center;
}

.image-content-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.image {
  width: 30%;
  height: 800px;
  background-size: cover;
  background-position: center;
}

.content {
  width: 65%;
  text-align: left;
  padding: 20px;
}

.expertise-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.expertise-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.expertise-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #daa520;
  font-size: 1.5em;
  line-height: 0.5em;
}

.hero {
  background: url('assets/images/about-banner.jpg') no-repeat center center / cover;
  padding: 50px 0;
  color: darkgoldenrod;
  text-align: center;
}

.about-section {
  margin-bottom: 40px;
}

.about-img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section {
  width: 20%;
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 5px;
}

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

.footer-section a:hover {
  color: #ffd700;
}

.footer-section .social-links {
  text-align: center;
}

.footer-section .social-icon {
  margin: 0 5px;
}

.footer-section p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
}

.social-icon img {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #444;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9em;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #ffd700;
}

@media (max-width: 768px) {
  .services-row,
  .marketing-services-section,
  .branding-services-section,
  .image-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .service-box,
  .image,
  .content,
  .investor-image,
  .content-top {
    width: 100%;
    margin-bottom: 20px;
  }

  .content {
    margin-top: 0;
  }

  .footer-section {
    width: 100%;
    text-align: center;
  }

  .footer-section .social-links {
    justify-content: center;
  }
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.show {
    display: flex;
    flex-direction: column;
  }
}