/* ========================================
   FORBENEXT GROUP - PREMIUM STYLESHEET
   ======================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========== RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Georgia', 'Garamond', serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========== CONTAINER & SECTIONS ========== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* ========== HEADER / NAVIGATION ========== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.8) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  padding: 1.5rem 0;
}

header.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.logo img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #bbb;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  margin-bottom: 3rem;
  animation: fadeInDown 1.2s ease-out;
}

.hero-logo img {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
  animation: logoGlow 3s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero p {
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 700px;
  margin: 2rem auto;
  animation: fadeInUp 1.2s ease-out 0.4s both;
  color: #ccc;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid #fff;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: 2rem;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.cta-button:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

.cta-button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-button.secondary:hover {
  background: #fff;
  color: #000;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s ease-in-out infinite;
  z-index: 10;
}

.scroll-indicator svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

/* ========== CONTENT SECTIONS ========== */
section {
  background: #000;
}

section:nth-child(odd) {
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 1rem auto 0;
}

.section-subtitle {
  color: #999;
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 1rem;
}

/* ========== CARDS & GRIDS ========== */
.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  animation: fadeInUp 0.8s ease-out;
}

.card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::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;
}

.card:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,255,255,0.1);
}

.card:hover::before {
  left: 100%;
}

.card h3 {
  margin-bottom: 1rem;
  color: #fff;
}

.card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-meta {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* ========== COMPANY CARDS ========== */
.company-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.company-card-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.company-card-industry {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.company-card-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.company-card-desc {
  flex-grow: 1;
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.company-card-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.25rem;
}

.company-card-link:hover {
  border-bottom-color: #fff;
  transform: translateX(5px);
}

/* ========== INDUSTRIES SECTION ========== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.industry-item {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.industry-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
  transform: translateY(-10px);
}

.industry-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.industry-desc {
  font-size: 0.95rem;
  color: #999;
}

/* ========== LEADERSHIP GRID ========== */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.profile-card {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.profile-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card:hover .profile-avatar {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 15px 50px rgba(255,255,255,0.15);
  transform: scale(1.05);
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.profile-title {
  font-size: 0.9rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.profile-bio {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1.2rem;
  min-height: 60px;
}

.profile-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.profile-link:hover {
  border-bottom-color: #fff;
  transform: translateX(3px);
}

/* ========== FOUNDER SHOWCASE ========== */
.founder-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.founder-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
}

.founder-content h2 {
  margin-bottom: 1.5rem;
}

.founder-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #ccc;
  border-left: 3px solid #fff;
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.8;
}

.founder-cta {
  margin-top: 2rem;
}

/* ========== CEO MESSAGE ========== */
.ceo-message {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.ceo-message::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 6rem;
  color: rgba(255,255,255,0.05);
  font-family: 'Playfair Display';
}

.message-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #bbb;
  margin-bottom: 1.5rem;
}

.message-author {
  font-weight: 600;
  color: #fff;
}

.message-author-title {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* ========== BOARD GRID ========== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.board-member {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  transition: all 0.3s ease;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.board-member::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.board-member:hover {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 10px 40px rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.board-member:hover::before {
  opacity: 1;
}

.board-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.board-member:hover .board-avatar {
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

.board-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.board-designation {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.board-expertise {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

/* ========== CAREERS SECTION ========== */
.careers-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.careers-hero h2 {
  margin-bottom: 1rem;
}

.careers-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.career-value {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.career-value:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,255,255,0.1);
}

.career-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.career-value h3 {
  margin-bottom: 0.8rem;
}

.career-value p {
  color: #999;
  font-size: 0.95rem;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  font-size: 16px;
}

.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #000;
  color: #fff;
  padding: 0.5rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========== CONTACT INFO ========== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-label {
  font-size: 0.85rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.contact-detail {
  color: #fff;
  font-weight: 500;
  word-break: break-word;
}

/* ========== FOOTER ========== */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Unique animation for social icons */
@keyframes socialPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255,255,255,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

@keyframes socialFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
}

.social-icon:nth-child(1) {
  animation: socialFloat 2.5s ease-in-out infinite;
}

.social-icon:nth-child(2) {
  animation: socialFloat 2.5s ease-in-out 0.2s infinite;
}

.social-icon:nth-child(3) {
  animation: socialFloat 2.5s ease-in-out 0.4s infinite;
}

.social-icon:nth-child(4) {
  animation: socialFloat 2.5s ease-in-out 0.6s infinite;
}

.social-icon:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  animation: socialPulse 0.6s ease-out;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255,255,255,0.2)); }
  50% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.4)); }
}

/* ========== RESPONSIVE DESIGN ========== */

/* TABLET BREAKPOINT: 768px - 1199px */
@media (max-width: 1199px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  h1 {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
  }

  .nav-menu {
    gap: 2rem;
  }

  /* Tablet menu - Full blur effect */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.91);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    width: 100%;
    text-align: center;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
  }

  .nav-menu li:hover {
    background: rgba(255,255,255,0.06);
  }

  .nav-menu a {
    font-size: 1.05rem;
    padding: 1rem 2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 12px rgba(255,255,255,0.3);
  }

  section {
    padding: 5rem 0;
  }

  .grid {
    gap: 1.5rem;
  }

  .founder-showcase {
    gap: 3rem;
  }

  .footer-content {
    gap: 2.5rem;
  }

  .leadership-grid {
    gap: 2rem;
  }

  .industry-grid {
    gap: 2.5rem;
  }

  /* Tablet specific adjustments */
  .board-grid {
    gap: 1.8rem;
  }

  .contact-info {
    gap: 1.8rem;
  }

  .careers-content {
    gap: 1.5rem;
  }

  .card {
    padding: 1.8rem;
  }

  .profile-card {
    padding: 1.2rem;
  }

  .cta-button {
    padding: 0.95rem 2rem;
    font-size: 0.92rem;
  }
}

/* MOBILE BREAKPOINT: ≤ 767px */
@media (max-width: 767px) {
  /* ===== BASE MOBILE STYLES ===== */
  html {
    scroll-behavior: smooth;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  section {
    padding: 3.5rem 0;
  }

  /* ===== TYPOGRAPHY - MOBILE ===== */
  h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  h2 {
    font-size: clamp(1.25rem, 5vw, 2rem);
    margin-bottom: 1.2rem;
  }

  h3 {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 0.8rem;
  }

  p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  /* ===== HEADER & NAVIGATION - MOBILE ===== */
  header {
    padding: 1rem 0;
  }

  nav {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  /* Mobile menu toggle */
  .mobile-toggle {
    display: flex;
    z-index: 1002;
  }

  .mobile-toggle span {
    width: 22px;
    height: 2px;
  }

  .mobile-toggle span:nth-child(1) {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-toggle span:nth-child(2) {
    transition: opacity 0.3s ease;
  }

  .mobile-toggle span:nth-child(3) {
    transition: transform 0.3s ease;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /* Mobile menu slide-in */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    width: 100%;
    text-align: center;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
  }

  .nav-menu li:hover {
    background: rgba(255,255,255,0.06);
    border-left: 3px solid rgba(255,255,255,0.3);
    border-right: 3px solid rgba(255,255,255,0.3);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    font-size: 1.08rem;
    padding: 1rem 2rem;
    display: block;
    letter-spacing: 0.01em;
    font-weight: 500;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.9);
  }

  .nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:active {
    color: #ddd;
  }

  /* ===== HERO SECTION - MOBILE ===== */
  .hero {
    min-height: 85vh;
    margin-top: 50px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-logo {
    margin-bottom: 2rem;
  }

  .hero-logo img,
  .hero-logo div {
    width: 80px !important;
    height: 80px !important;
    font-size: 2rem !important;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    max-width: 100%;
    margin: 1.5rem auto;
    color: #ddd;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-indicator svg {
    width: 24px;
    height: 24px;
  }

  /* ===== CTA BUTTONS - MOBILE ===== */
  .cta-button {
    display: block;
    width: calc(100% - 2rem);
    max-width: 300px;
    padding: 0.9rem 1.5rem;
    margin: 0.75rem auto;
    font-size: 0.9rem;
    border-radius: 4px;
  }

  .cta-button:first-of-type {
    margin-top: 1.5rem;
  }

  /* ===== SECTIONS - MOBILE ===== */
  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 1.3rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* ===== GRIDS - MOBILE (Single Column) ===== */
  .grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .board-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .careers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ===== CARDS - MOBILE ===== */
  .card {
    padding: 1.5rem;
    border-radius: 4px;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  /* ===== PROFILE CARDS - MOBILE ===== */
  .profile-card {
    padding: 1rem;
  }

  .profile-avatar {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem;
    aspect-ratio: 1;
  }

  .profile-name {
    font-size: 1.1rem;
  }

  .profile-title {
    font-size: 0.8rem;
  }

  .profile-bio {
    font-size: 0.85rem;
    min-height: auto;
  }

  .profile-link {
    font-size: 0.8rem;
  }

  /* ===== BOARD MEMBER CARDS - MOBILE ===== */
  .board-member {
    padding: 1.2rem;
    border-radius: 4px;
  }

  .board-avatar {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .board-name {
    font-size: 1rem;
  }

  .board-designation {
    font-size: 0.8rem;
  }

  .board-expertise {
    font-size: 0.85rem;
  }

  /* ===== FOUNDER SHOWCASE - MOBILE ===== */
  .founder-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-image {
    width: 100%;
    max-height: 400px;
    aspect-ratio: auto;
  }

  .founder-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .founder-quote {
    font-size: 1rem;
    padding-left: 1rem;
    border-left-width: 2px;
    margin: 1.5rem 0;
  }

  .founder-cta {
    margin-top: 1.5rem;
  }

  /* ===== CEO MESSAGE - MOBILE ===== */
  .ceo-message {
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
  }

  .ceo-message::before {
    font-size: 3rem;
    top: -10px;
    left: 15px;
  }

  .message-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .message-author {
    font-size: 0.95rem;
  }

  .message-author-title {
    font-size: 0.8rem;
  }

  /* ===== ABOUT SECTION - MOBILE ===== */
  .responsive-about-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ===== FORMS - MOBILE ===== */
  .contact-form {
    max-width: 100%;
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 4px;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 4px;
    min-height: 44px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-group select {
    padding-right: 0.5rem;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 0.9rem;
  }

  /* Select element responsive */
  select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.5em 1.5em;
  }

  select::-ms-expand {
    display: none;
  }

  .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* ===== FOOTER - MOBILE ===== */
  footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .footer-section a {
    font-size: 0.9rem;
  }

  .footer-section ul li {
    margin-bottom: 0.6rem;
  }

  .social-icons {
    gap: 0.8rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 1.5rem;
  }

  /* ===== CONTACT ITEMS - MOBILE ===== */
  .contact-item {
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
  }

  .contact-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .contact-label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .contact-detail {
    font-size: 0.95rem;
  }

  /* ===== CAREER VALUES - MOBILE ===== */
  .career-value {
    padding: 1.5rem;
    border-radius: 4px;
  }

  .career-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .career-value h3 {
    font-size: 1.1rem;
  }

  .career-value p {
    font-size: 0.9rem;
  }

  /* ===== INDUSTRY ITEMS - MOBILE ===== */
  .industry-item {
    padding: 1.5rem;
  }

  .industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
  }

  .industry-name {
    font-size: 1.1rem;
  }

  .industry-desc {
    font-size: 0.9rem;
  }

  /* ===== ANIMATIONS OPTIMIZATION ===== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
}

/* EXTRA SMALL DEVICES: ≤ 480px */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: 1.3rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-logo img,
  .hero-logo div {
    width: 70px !important;
    height: 70px !important;
    font-size: 1.8rem !important;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }

  .section-title h2 {
    font-size: 1.1rem;
  }

  .card {
    padding: 1.2rem;
  }

  .contact-form {
    padding: 1.2rem;
  }

  .footer-section h4 {
    font-size: 0.9rem;
  }

  .modal-content {
    width: 95%;
    padding: 1.5rem;
    margin: 10% auto;
  }

  .close-modal {
    width: 35px;
    height: 35px;
    font-size: 1.8rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.65rem;
  }

  .profile-avatar {
    max-width: 150px;
  }

  .board-avatar {
    width: 90px;
    height: 90px;
    font-size: 1.8rem;
  }
}

/* ===== ADDITIONAL RESPONSIVE UTILITIES ===== */

/* Breadcrumb responsive */
@media (max-width: 767px) {
  div[style*="padding: 2rem 0; background: rgba(0,0,0,0.5)"] {
    padding: 1.5rem 0 !important;
  }

  div[style*="padding: 2rem 0; background: rgba(0,0,0,0.5)"] p {
    font-size: 0.85rem !important;
  }
}

/* Hero section with inline styles responsive */
@media (max-width: 767px) {
  section[style*="min-height: 60vh"] {
    min-height: auto !important;
    padding: 3rem 0 !important;
  }

  section[style*="min-height: 60vh"] h1 {
    font-size: 1.3rem !important;
    margin-bottom: 0.8rem !important;
  }

  section[style*="min-height: 60vh"] p {
    font-size: 0.95rem !important;
  }

  section[style*="min-height: 60vh"] > div > p:last-of-type {
    font-size: 0.9rem !important;
  }
}

/* About section responsive grids */
@media (max-width: 767px) {
  .responsive-about-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .responsive-about-grid > div:last-child {
    padding: 1.5rem !important;
  }

  .responsive-about-grid li {
    margin-bottom: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}

/* Two-column grid to single column on mobile */
@media (max-width: 767px) {
  div[style*="grid-template-columns: 1fr 1fr"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  div[style*="grid-template-columns: repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  div[style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* Job position cards - stack flex items */
  div[style*="display: flex; justify-content: space-between"] {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  div[style*="gap: 2rem"] {
    gap: 1.5rem !important;
  }

  div[style*="gap: 3rem"] {
    gap: 2rem !important;
  }

  div[style*="gap: 4rem"] {
    gap: 2.5rem !important;
  }

  /* Button alignment in flex containers */
  .cta-button[style*="white-space: nowrap"] {
    white-space: normal !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Form grids responsive */
@media (max-width: 767px) {
  .form-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

/* Centered text containers */
@media (max-width: 767px) {
  div[style*="text-align: center"] {
    text-align: center !important;
  }

  /* Tag/Badge elements on mobile */
  span[style*="display: inline-block; padding: 0.5rem 1rem"] {
    display: inline-block !important;
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
    margin-right: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Padding responsive utilities */
  div[style*="padding: 3rem"] {
    padding: 1.5rem !important;
  }

  div[style*="padding: 2rem"] {
    padding: 1.2rem !important;
  }

  div[style*="padding: 4rem"] {
    padding: 2rem !important;
  }

  div[style*="padding: 6rem"] {
    padding: 3rem !important;
  }

  /* Min-height adjustments */
  section[style*="min-height: 100vh"] {
    min-height: auto !important;
  }

  /* Margin adjustments */
  div[style*="margin: 3rem"] {
    margin: 1.5rem auto !important;
  }

  div[style*="margin: 4rem"] {
    margin: 2rem auto !important;
  }

  /* Flexbox wrap utilities */
  div[style*="display: flex; gap: 1rem; flex-wrap: wrap"] {
    display: flex !important;
    gap: 0.8rem !important;
    flex-wrap: wrap !important;
  }

  /* List responsive */
  ul[style*="list-style: none; margin-top: 2rem"] {
    margin-top: 1.5rem !important;
  }

  ul[style*="list-style: none"] li {
    padding-left: 0 !important;
  }

  /* Profile and biography sections responsive */
  div[style*="max-width: 900px"] {
    max-width: 100% !important;
  }

  /* Message boxes responsive */
  div[style*="background: linear-gradient(135deg, #1a1a1a"] {
    padding: 1.5rem !important;
  }

  /* Position-relative z-index containers */
  div[style*="position: relative; z-index: 10"] {
    position: relative !important;
  }

  /* Max-width utilities */
  div[style*="max-width: 600px"],
  div[style*="max-width: 700px"] {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
