/* Custom CSS for Who We Are Page - LENT WORKS LLC */

/* Header Styles */
.transparent-header {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 0;
  animation: slideDown 0.8s ease-out;
}

.transparent-header:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-brand img {
  filter: brightness(1.2) contrast(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
  z-index: -1;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Right side menu styling - removed duplicate conflicting rule */

.menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.button-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.button-row .btn {
  flex: 1;
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.button-row .btn-primary {
  background: #007bff;
  border: none;
}

.button-row .btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.button-row .btn-outline-light:hover {
  background: #ffffff;
  color: #001f33;
  transform: translateY(-2px);
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  border: none;
  border-radius: 10px;
  margin-top: 0.5rem;
  min-width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  animation: dropdownFadeIn 0.3s ease forwards;
  padding: 10px 0;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-header {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px 15px 20px;
  border-bottom: 1px solid #34495e;
  margin-bottom: 10px;
}

/* Services Dropdown */
.services-dropdown {
  min-width: 400px;
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-dropdown::-webkit-scrollbar {
  display: none;
}

.services-dropdown .dropdown-item {
  color: #ffffff !important;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 6px;
  margin: 2px 8px;
  font-size: 0.9rem;
}

.services-dropdown .dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  transform: translateX(5px);
}

.services-dropdown .dropdown-item i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
  color: #007bff;
}

/* FAQ Dropdown */
.faq-dropdown {
  min-width: 300px;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq-dropdown::-webkit-scrollbar {
  display: none;
}

.option-selector {
  padding: 10px 0;
}

.option-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.option-item:hover {
  background-color: rgba(0, 123, 255, 0.1);
  transform: translateX(5px);
}

.option-item input[type="radio"] {
  margin-right: 12px;
  accent-color: #007bff;
  transform: scale(1.1);
}

.option-item label {
  color: #ffffff;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.option-item:hover label {
  color: #007bff;
}

.select-btn {
  margin-top: 12px;
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Industries & Technologies Dropdown */
.industries-dropdown,
.technologies-dropdown {
  min-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industries-dropdown::-webkit-scrollbar,
.technologies-dropdown::-webkit-scrollbar {
  display: none;
}

.dropdown-item-text {
  color: #ffffff;
  padding: 10px 20px;
  display: block;
  cursor: default;
  border-radius: 6px;
  margin: 2px 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item-text:hover {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
  transform: translateX(5px);
}

.dropdown-item-text i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.dropdown-item-text:hover i {
  color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type i {
  color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type:hover i {
  color: #007bff;
}

/* Default dropdown item styling for backward compatibility */
.dropdown-item {
  color: #ffffff !important;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  transform: translateX(5px);
}
/* 
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #003d66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #87ceeb;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

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

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background: var(--Primary-Blue-Dark-Blue, #001f33);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Header Styles */
.transparent-header {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 0;
  animation: slideDown 0.8s ease-out;
}

.transparent-header:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: var(--Primary-Blue-Dark-Blue, #001f33) !important;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-brand .logo {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Right side menu styling */
.right-menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-nav-links {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}

.top-nav-links .nav-link {
  font-size: 0.85rem;
  margin: 0;
  padding: 0.2rem 0.5rem;
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.top-nav-links .nav-link:hover {
  color: #007bff !important;
  transform: translateY(-1px);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: white !important;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.2) !important;
  color: #007bff !important;
}

.btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/images/who-are-we-hero.png");
  background-size: 100% 100%;
  margin: 0;
  padding: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-background {
  position: relative;
  z-index: 2;
  width: 100%;
}

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

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  line-height: 1.3;
}

/* Hero Spacing */
.hero-spacing {
  /* height: 10px; */
  background: var(--Primary-Blue-Dark-Blue, #001f33);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
  background: linear-gradient(135deg, #0056b3, #004085);
}

.hero-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  padding: 13px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  background: transparent;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
  color: white;
}

.hero-image {
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* About Content Section */
.about-content-section {
  background: #ffffff;
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #001f33;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 30px;
  opacity: 0.9;
}

.title-divider {
  width: 800px;
  height: 1px;
  background: #001f33;
  margin: 0 auto 50px;
  border-radius: 2px;
  max-width: 90%;
}

.about-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #001f33;
  margin-bottom: 25px;
}

.about-description {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text {
  padding-right: 30px;
}

.about-image img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Footer Section */
.footer-section {
  /* background: linear-gradient(135deg, #154667 0%, #001f33 100%); */
  padding: 60px 0 30px;
  color: #ffffff;
  position: relative;
}

.footer-brand {
  margin-bottom: 30px;
  margin-top: 30px;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 180px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-description.limited-width {
  max-width: 280px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #ffea00;
  padding-left: 5px;
}

.footer-link.underlined {
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #001f33;
  color: #87ceeb;
  font-size: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2c5f7f;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-value:hover {
  color: #ffea00;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .about-text {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn,
  .hero-btn-outline {
    width: 100%;
    text-align: center;
    max-width: 300px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .title-divider {
    width: 300px;
    margin-bottom: 40px;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .about-description {
    font-size: 1rem;
  }

  /* Footer Mobile */
  .footer-section {
    padding: 50px 0 25px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 25px;
  }

  .footer-logo-img {
    width: 160px;
    height: 70px;
  }

  .footer-description {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 25px;
  }

  .social-links {
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer-title {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

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

  .footer-links li {
    margin-bottom: 15px;
  }

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

  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
  }

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

  .contact-icon {
    margin-top: 0;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .title-divider {
    width: 200px;
  }

  .about-heading {
    font-size: 1.6rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  /* Footer Extra Small */
  .footer-section {
    padding: 30px 0 15px;
  }

  .footer-logo-img {
    width: 120px;
    height: 50px;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .contact-label {
    font-size: 0.8rem;
  }

  .contact-value {
    font-size: 0.9rem;
  }
}

/* Who We Are Section */
.who-we-are-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 100px 80px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-section .container-fluid {
  padding: 0 !important;
  margin: 0;
  max-width: 100%;
}

.who-we-are-section .row {
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: center;
}

.who-we-are-section .col-lg-7,
.who-we-are-section .col-lg-5 {
  padding: 0;
}

.who-we-are-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue-blue-10, #487fff1a);
  z-index: 1;
}

.who-we-are-content {
  padding: 60px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-we-are-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.who-we-are-section .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: start !important;
}

.who-we-are-section .section-text:last-child {
  margin-bottom: 0;
}

.who-we-are-section .highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

.who-we-are-image {
  position: relative;
  z-index: 2;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.who-we-are-section .who-we-are-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Platform Section */
.platform-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 120px 80px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* Founder Card Section */
.founder-card-section {
  background: var(--primary-blue-blue-10, #487fff1a);
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-card-section .section-header {
  margin-bottom: 25px;
}

.founder-card-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.founder-card-section .title-divider {
  width: 200px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  margin-bottom: 0;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.founder-info-item {
  margin-bottom: 10px;
}

.founder-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.3;
}

.founder-designation {
  font-size: 1.1rem;
  font-weight: 500;
  color: #87ceeb;
  margin-bottom: 5px;
  line-height: 1.4;
}

.founder-location {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 5px;
  opacity: 0.9;
}

.founder-link {
  color: #60a5fa;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.founder-link:hover {
  color: #87ceeb;
  text-decoration: underline;
  transform: translateX(5px);
}

.platform-section .container-fluid {
  padding: 0 !important;
  margin: 0;
  max-width: 100%;
}

.platform-section .row {
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: center;
}

.platform-section .col-lg-7,
.platform-section .col-lg-5 {
  padding: 0;
}

.platform-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue-blue-10, #487fff1a);

  z-index: 1;
}

.platform-content {
  padding: 60px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-section .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: #ffffff;
  text-align: justify;
}

.platform-section .highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

.platform-image {
  position: relative;
  z-index: 2;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.platform-section .platform-image img {
  width: 100%;
  max-height: 450px; /* Maximum height to prevent too large images */
  height: auto; /* Let image maintain its aspect ratio */
  object-fit: contain; /* Shows full image without cropping */
  object-position: center; /* Centers the image */
  display: block;}

/* What We Do Section */
.what-we-do-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 120px 80px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-we-do-section .container-fluid {
  padding: 0 !important;
  margin: 0;
  max-width: 100%;
}

.what-we-do-section .row {
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: center;
}

.what-we-do-section .col-lg-7,
.what-we-do-section .col-lg-5 {
  padding: 0;
}

.what-we-do-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue-blue-10, #487fff1a);

  z-index: 1;
}

.what-we-do-content {
  padding: 60px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.what-we-do-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.what-we-do-section .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: #ffffff;
  text-align: justify;
}

.what-we-do-section .highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

.what-we-do-image {
  position: relative;
  z-index: 2;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.what-we-do-section .what-we-do-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Additional Content Section */
.additional-content-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 120px 80px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.additional-content-section .container-fluid {
  padding: 0 !important;
  margin: 0;
  max-width: 100%;
}

.additional-content-section .row {
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: center;
}

.additional-content-section .col-lg-7,
.additional-content-section .col-lg-5 {
  padding: 0;
}

.additional-content-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue-blue-10, #487fff1a);

  z-index: 1;
}

.additional-content {
  padding: 60px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.additional-content-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.additional-content-section .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: justify;
}

.additional-content-section .section-text:last-child {
  margin-bottom: 0;
}

.additional-content-section .highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

.additional-image {
  position: relative;
  z-index: 2;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.additional-content-section .additional-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Platform Support Section */
.platform-support-section {
  /* padding: 80px 0; */
  margin: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.platform-support-content {
  position: relative;
  z-index: 2;
}

.support-text-container {
  position: relative;
  background: var(--primary-blue-blue-10, #487fff1a);
  border-radius: 15px;
  padding: 60px 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.center-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: full;
  height: 18px;
  background: #072947;
  z-index: -1;
  margin-left: -50vw;
  margin-right: -50vw;
}

.support-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  margin: 0;
  position: relative;
  z-index: 3;
  font-weight: 400;
}

.support-text .highlight-white {
  color: #ffffff;
  font-weight: 600;
}

.support-text .highlight-blue {
  color: #60a5fa;
  font-weight: 600;
}

/* Join Us Section */
.join-us-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 120px 80px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join-us-section .container-fluid {
  padding: 0 !important;
  margin: 0;
  max-width: 100%;
}

.join-us-section .row {
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: center;
}

.join-us-section .col-lg-7,
.join-us-section .col-lg-5 {
  padding: 0;
}

.join-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue-blue-10, #487fff1a);
  z-index: 1;
}

.join-us-content {
  padding: 60px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-us-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.join-us-section .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: justify;
}

.join-us-section .section-text:last-child {
  margin-bottom: 30px;
}

.join-us-section .highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

.join-us-section .join-us-buttons {
  margin-top: 20px;
}

.join-us-section .join-btn,
.join-us-section .refer-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  margin-right: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.join-us-section .join-btn {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border: none;
  color: #0a1428;
}

.join-us-section .join-btn:hover {
  background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.join-us-section .refer-btn {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}

.join-us-section .refer-btn:hover {
  background: #ffd700;
  color: #0a1428;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Custom Button Styles */
.custom-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-light.custom-btn {
  background: #ffffff;
  color: #001f33;
  border-color: #ffffff;
}

.btn-light.custom-btn:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-light.custom-btn {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light.custom-btn:hover {
  background: #ffffff;
  color: #001f33;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.join-us-image {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.join-us-section .join-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Sections Responsive Design */
@media (max-width: 991px) {
  .who-we-are-section::before,
  .what-we-do-section::before,
  .platform-section::before,
  .additional-content-section::before,
  .join-us-section::before {
    width: 100%;
  }

  .platform-support-section {
    margin: 80px 20px;
    padding: 60px 0;
  }

  .support-text-container {
    padding: 40px 30px;
  }

  .support-text {
    font-size: 1rem;
  }

  .who-we-are-section .row,
  .what-we-do-section .row,
  .platform-section .row,
  .additional-content-section .row,
  .join-us-section .row {
    flex-direction: column;
    min-height: auto;
  }

  .who-we-are-content,
  .what-we-do-content,
  .platform-content,
  .additional-content,
  .join-us-content {
    padding: 60px 40px;
    order: 1;
  }

  .who-we-are-image,
  .what-we-do-image,
  .platform-image,
  .additional-image,
  .join-us-image {
    order: 2;
    margin-top: 0;
  }

  .who-we-are-section .who-we-are-image img,
  .what-we-do-section .what-we-do-image img,
  .platform-section .platform-image img,
  .additional-content-section .additional-image img,
  .join-us-section .join-us-image img {
    height: 250px;
  }

  .who-we-are-section .section-title,
  .what-we-do-section .section-title,
  .platform-section .section-title,
  .additional-content-section .section-title,
  .join-us-section .section-title {
    font-size: 2.2rem;
  }

  .founder-card-section {
    padding: 25px;
    margin-top: 30px;
  }

  .founder-card-section .section-title {
    font-size: 1.6rem;
  }

  .founder-card-section .title-divider {
    width: 150px;
  }

  .founder-name {
    font-size: 1.2rem;
  }

  .founder-designation {
    font-size: 1rem;
  }

  .founder-location,
  .founder-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .who-we-are-section,
  .what-we-do-section,
  .platform-section,
  .additional-content-section,
  .join-us-section {
    padding: 0;
    margin: 40px 20px;
  }

  .who-we-are-section .row,
  .what-we-do-section .row,
  .platform-section .row,
  .additional-content-section .row,
  .join-us-section .row {
    flex-direction: column;
    min-height: auto;
  }

  .who-we-are-content,
  .what-we-do-content,
  .platform-content,
  .additional-content,
  .join-us-content {
    padding: 50px 30px;
    order: 1;
  }

  .who-we-are-image,
  .what-we-do-image,
  .platform-image,
  .additional-image,
  .join-us-image {
    order: 2;
  }

  .who-we-are-section .who-we-are-image img,
  .what-we-do-section .what-we-do-image img,
  .platform-section .platform-image img,
  .additional-content-section .additional-image img,
  .join-us-section .join-us-image img {
    height: 220px;
  }

  .who-we-are-section .section-title,
  .what-we-do-section .section-title,
  .platform-section .section-title,
  .additional-content-section .section-title,
  .join-us-section .section-title {
    font-size: 1.8rem;
  }

  .join-us-section .join-btn,
  .join-us-section .refer-btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .platform-support-section {
    margin: 60px 15px;
    padding: 50px 0;
  }

  .support-text-container {
    padding: 30px 20px;
  }

  .support-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-spacing {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .who-we-are-section,
  .what-we-do-section,
  .platform-section,
  .additional-content-section,
  .join-us-section {
    padding: 0;
    margin: 20px 10px;
  }

  .who-we-are-content,
  .what-we-do-content,
  .platform-content,
  .additional-content,
  .join-us-content {
    padding: 40px 20px;
  }

  .who-we-are-section .who-we-are-image img,
  .what-we-do-section .what-we-do-image img,
  .platform-section .platform-image img,
  .additional-content-section .additional-image img,
  .join-us-section .join-us-image img {
    height: 200px;
  }

  .who-we-are-section .section-title,
  .what-we-do-section .section-title,
  .platform-section .section-title,
  .additional-content-section .section-title,
  .join-us-section .section-title {
    font-size: 1.6rem;
  }

  .who-we-are-section .section-text,
  .what-we-do-section .section-text,
  .platform-section .section-text,
  .additional-content-section .section-text,
  .join-us-section .section-text {
    font-size: 0.95rem;
  }

  .platform-support-section {
    margin: 40px 10px;
    padding: 40px 0;
  }

  .support-text-container {
    padding: 25px 15px;
  }

  .support-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-spacing {
    height: 40px;
  }
}

.custom-btn {
  font-size: 1rem; /* Slightly larger text */
  font-weight: 500; /* Medium bold */
  padding: 0.6rem 1.5rem; /* Equal padding for both */
  border-radius: 10px; /* Rounded corners */
}

/* Responsive Header Styles */

/* Tablet Screens (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }

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

  .right-menu-container {
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 20px;
  }

  .menu-section {
    width: 100%;
    max-width: 300px;
  }

  .dropdown-menu {
    min-width: 280px;
  }
}

/* Mobile Screens (max-width: 767px) */
@media (max-width: 767px) {
  .transparent-header {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 0.5rem 0;
  }

  .navbar-nav {
    text-align: center;
    padding: 20px 0;
  }

  .right-menu-container {
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .menu-section {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
  }

  .button-row .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Mobile dropdown styling */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .dropdown-item {
    padding: 0.75rem 2rem;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
  }

  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item:focus {
    background-color: rgba(0, 123, 255, 0.3) !important;
    color: #007bff !important;
  }

  /* Ensure dropdowns work in collapsed navbar */
  .navbar-collapse .dropdown {
    position: static;
  }
}

/* Small Mobile Screens (320px to 575px) */
@media (max-width: 575px) {
  .navbar-brand img {
    height: 40px;
  }

  .menu-section {
    padding: 12px 15px;
  }

  .button-row .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .dropdown-menu {
    min-width: 250px;
  }
}

/* Navbar Scrolled State - Blue theme background */
.navbar.scrolled {
  background: rgba(0, 31, 51, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 31, 51, 0.3);
}

/* Table of Contents Styles */
.table-of-contents {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.table-of-contents h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffea00;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.toc-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(72, 127, 255, 0.3);
}

.toc-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  flex: 1;
}

.toc-arrow {
  color: #487fff;
  font-size: 16px;
  font-weight: bold;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.toc-item:hover .toc-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.last-updated-toc {
  background: rgba(72, 127, 255, 0.1);
  border-color: rgba(72, 127, 255, 0.2);
}

.last-updated-toc .toc-text {
  color: #487fff;
  font-weight: 500;
}

/* Active state for TOC items */
.toc-item.active {
  background: rgba(72, 127, 255, 0.15) !important;
  border-color: #487fff !important;
  box-shadow: 0 2px 8px rgba(72, 127, 255, 0.2);
}

.toc-item.active .toc-text {
  color: #487fff !important;
  font-weight: 500;
}

.toc-item.active .toc-arrow {
  color: #487fff !important;
  opacity: 1;
  transform: translateX(3px);
}

/* Responsive TOC */
@media (max-width: 1200px) {
  .table-of-contents {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .table-of-contents {
    padding: 25px;
  }

  .table-of-contents h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .toc-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .toc-item {
    padding: 15px 18px;
  }

  .toc-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .table-of-contents {
    padding: 20px;
    margin-top: 40px;
  }

  .table-of-contents h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .toc-item {
    padding: 12px 15px;
  }

  .toc-text {
    font-size: 13px;
  }

  .toc-arrow {
    font-size: 14px;
  }
}

/* Content Sections Styles */
.terms-content-sections {
  margin-top: 60px;
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.4;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 0;
  text-align: justify;
}

.highlight-link {
  color: #487fff;
  text-decoration: none;
  font-weight: 500;
}

.highlight-link:hover {
  color: #5a8fff;
  text-decoration: underline;
}

/* Responsive Content Sections */
@media (max-width: 768px) {
  .terms-content-sections {
    margin-top: 40px;
  }

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

  .content-section h2 {
    font-size: 20px;
  }

  .content-section p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .terms-content-sections {
    margin-top: 30px;
  }

  .content-section {
    margin-bottom: 30px;
  }

  .content-section h2 {
    font-size: 18px;
  }

  .content-section p {
    font-size: 13px;
  }
}
h1, h2, h3, h4, h5, h6 {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block !important;
}

/* ============================================= */
/* MOBILE NAVBAR FIX - OUR PROFESSIONALS PAGE ONLY */
/* ============================================= */

@media (max-width: 767px) {
  /* Fix body and html overflow */
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Fix all containers */
  .container, .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Fix all rows */
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
  }

  /* Fix all columns */
  [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Fix navbar container overflow */
  .transparent-header {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 0.5rem 0 !important;
    left: 0 !important;
    right: 0 !important;
  }

  .transparent-header .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Fix navbar brand and toggler alignment */
  .navbar {
    padding: 0 !important;
    width: 100% !important;
  }

  .navbar-brand {
    margin-right: auto !important;
    padding: 0 !important;
  }

  .navbar-brand img {
    height: 40px !important;
    max-width: 140px !important;
    width: auto !important;
  }

  /* Fix hamburger button position */
  .navbar-toggler {
    margin-left: auto !important;
    padding: 0.25rem 0.5rem !important;
    font-size: 1.1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
    right: 0 !important;
  }

  /* Ensure navbar content doesn't overflow */
  .navbar-collapse {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Fix dropdown menus on mobile */
  .navbar-nav {
    width: 100% !important;
    padding: 15px 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
  }

  /* Fix right menu container */
  .right-menu-container {
    width: 100% !important;
    margin: 15px 0 !important;
    padding: 0 15px !important;
  }

  .menu-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
  }

  .button-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .button-row .btn {
    width: 100% !important;
    padding: 10px 15px !important;
    font-size: 0.9rem !important;
  }

  /* Fix all sections */
  .who-we-are-section,
  .what-we-do-section,
  .platform-section,
  .additional-content-section,
  .join-us-section,
  .platform-support-section,
  .table-of-contents {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    overflow-x: hidden !important;
  }

  /* Fix images */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Fix hero section */
  .hero-section {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Fix content sections */
  .who-we-are-content,
  .what-we-do-content,
  .platform-content,
  .additional-content,
  .join-us-content {
    padding: 30px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .container, .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .transparent-header .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .navbar-brand img {
    height: 35px !important;
    max-width: 120px !important;
  }

  .navbar-toggler {
    padding: 0.2rem 0.4rem !important;
    font-size: 1rem !important;
  }

  [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .who-we-are-section,
  .what-we-do-section,
  .platform-section,
  .additional-content-section,
  .join-us-section,
  .platform-support-section,
  .table-of-contents {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}