:root {
  --ebb: #ffffff;
  --cannon-pink: #914876;
  --everglade: #224e2d;
  --olive-green: #99b24c;
  --body-bg: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  --text-dark: #1e293b;
  --gradient-primary: linear-gradient(135deg, #914876 0%, #b45a8a 50%, #914876 100%);
  --gradient-secondary: linear-gradient(135deg, #224e2d 0%, #2d6640 50%, #224e2d 100%);
  --gradient-accent: linear-gradient(135deg, #99b24c 0%, #a8c25a 50%, #99b24c 100%);
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--body-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Premium Navbar */
.custom-navbar {
  background: black;
  backdrop-filter: blur(20px);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.custom-navbar.scrolled {
  background: black;
  backdrop-filter: blur(30px);
}

.logo {
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

.nav-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 8px;
  margin: 4px 8px;
}

.dropdown-item:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateX(8px);
}

/* Hero Section */
#products-section {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bg-video {
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.6) contrast(1.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(145, 72, 118, 0.3) 0%, rgba(34, 78, 45, 0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 7rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

/* Feature Cards - Overlapping Section */
.feature-cards-section {
  position: relative;
  margin-top: -120px;
  z-index: 10;
  padding: 0 1rem 30px;
}

.feature-card {
  background: white;
  border-radius: 24px;
  padding: 0.5rem 0.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(145, 72, 118, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(145, 72, 118, 0.1);
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(145, 72, 118, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.feature-card:hover::after {
  width: 500px;
  height: 500px;
}

.feature-card:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 32px 80px rgba(145, 72, 118, 0.25);
  border-color: var(--cannon-pink);
}

.feature-icon {
  font-size: 3.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotateY(360deg);
}

.feature-title {
  font-weight: 700;
  color: var(--cannon-pink);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-text {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.map-container {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* Company Information Section */
.company-info-section {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.company-header {
  margin-bottom: 3rem;
}

.company-logo {
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.company-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cannon-pink);
  margin-bottom: 0.5rem;
}

.company-tagline {
  font-size: 1.3rem;
  color: var(--everglade);
  font-weight: 600;
  margin: 0;
}

.pharma-icon-large {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.company-intro {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid rgba(145, 72, 118, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.company-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.company-intro:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(145, 72, 118, 0.15);
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.heritage-section {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(153, 178, 76, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.heritage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-accent);
}

.heritage-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(153, 178, 76, 0.2);
}

.heritage-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--olive-green);
  margin-bottom: 1.5rem;
}

.heritage-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.heritage-icon {
  font-size: 6rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

/* Leadership Section */
.leadership-section {
  padding: 5rem 0;
}

.leadership-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cannon-pink);
  margin-bottom: 1rem;
}

.leadership-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin: 0;
}

.director-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(145, 72, 118, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.director-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-secondary);
  transition: left 0.6s ease;
}

.director-card:hover::before {
  left: 0;
}

.director-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(145, 72, 118, 0.2);
  border-color: var(--cannon-pink);
}

.director-icon {
  font-size: 4rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.director-card:hover .director-icon {
  transform: scale(1.15) rotateY(360deg);
}

.director-name {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.director-badge {
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.director-card:hover .director-badge {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(145, 72, 118, 0.4);
}

.global-mission {
  font-size: 2rem;
  font-weight: 700;
  color: var(--everglade);
  padding: 2rem;
  background: white;
  border-radius: 10px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); */
  /* border: 2px solid rgba(34, 78, 45, 0.2); */
  /* transition: all 0.4s ease; */
}

/* .global-mission:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(34, 78, 45, 0.15);
} */

/* Section Backgrounds */
.section-gradient-1 {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

.section-gradient-2 {
  background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 50%, #e6f2ff 100%);
}

/* Premium Footer */
.footer-section {
  background: black;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
}

.footer-logo {
  max-width: 120px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--gradient-accent);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(153, 178, 76, 0.3);
}

/* 3D Canvas */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* Animations */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* AOS Custom Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-down"] {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-down"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-cards-section {
    margin-top: -80px;
    padding-bottom: 80px;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-title {
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .custom-navbar {
    padding: 0.5rem 0;
  }
  
  .company-logo {
    height: 60px;
  }
  
  .company-title {
    font-size: 2rem;
  }
  
  .pharma-icon-large {
    font-size: 3rem;
  }
  
  .leadership-title {
    font-size: 2rem;
  }
  
  .director-icon {
    font-size: 3rem;
  }
  
 .global-mission {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

  
  .company-intro,
  .heritage-section {
    padding: 1.5rem;
  }
  
  .heritage-icon {
    font-size: 4rem;
  }
}

@media (max-width: 576px) {
  .feature-cards-section {
    padding: 0 0.5rem 60px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-top: 20px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
}




/* 1. Hero Section - Mobile Heights */
@media (max-width: 768px) {
  #products-section,
  #hero-section {
    min-height: 50vh !important;
    max-height: 500px;
  }
  
  .bg-video {
    min-height: 50vh !important;
    max-height: 500px;
    object-position: center;
  }
  
  .hero-content {
    padding: 2rem 1.5rem !important;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    margin-bottom: 0.75rem !important;
  }
  
  .hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem) !important;
  }
}

@media (max-width: 576px) {
  #products-section,
  #hero-section {
    min-height: 45vh !important;
    max-height: 400px;
  }
  
  .bg-video {
    min-height: 45vh !important;
    max-height: 400px;
  }
  
  .hero-content {
    padding: 1.5rem 1rem !important;
  }
  
  .hero-title {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 0.9rem !important;
  }
}

/* 2. Feature Cards Section - Mobile Overlap Fix */
@media (max-width: 768px) {
  .feature-cards-section {
    margin-top: -60px !important;
    padding: 0 1rem 40px !important;
  }
  
  .feature-card {
    padding: 1.5rem 1.25rem !important;
    margin-bottom: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .feature-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .feature-description,
  .feature-text {
    font-size: 0.875rem !important;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .feature-cards-section {
    margin-top: -40px !important;
    padding: 0 0.75rem 30px !important;
  }
  
  .feature-card {
    padding: 1.25rem 1rem !important;
  }
  
  .feature-icon {
    font-size: 2rem !important;
  }
  
  .feature-title {
    font-size: 1rem !important;
  }
}

/* 3. Company Info Section - Mobile */
@media (max-width: 768px) {
  .company-info-section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .company-header {
    margin-bottom: 2rem !important;
  }
  
  .company-logo {
    height: 60px !important;
  }
  
  .company-title {
    font-size: 1.5rem !important;
  }
  
  .company-tagline {
    font-size: 1rem !important;
  }
  
  .pharma-icon-large {
    font-size: 2.5rem !important;
  }
  
  .company-description .lead {
    font-size: 0.95rem !important;
    text-align: left !important;
  }
  
  .company-intro {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .lead-text {
    font-size: 0.95rem !important;
  }
}

@media (max-width: 576px) {
  .company-info-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .company-logo {
    height: 50px !important;
    margin-right: 0.75rem !important;
  }
  
  .company-intro {
    padding: 1.25rem !important;
  }
}

/* 4. Heritage Section - Mobile */
@media (max-width: 768px) {
  .heritage-section {
    padding: 1.5rem !important;
    margin-bottom: 1.5rem;
  }
  
  .heritage-title {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }
  
  .heritage-text {
    font-size: 0.9rem !important;
    line-height: 1.6;
  }
  
  .heritage-icon {
    font-size: 4rem !important;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .heritage-section {
    padding: 1.25rem !important;
  }
  
  .heritage-title {
    font-size: 1.15rem !important;
  }
  
  .heritage-text {
    font-size: 0.85rem !important;
  }
  
  .heritage-icon {
    font-size: 3rem !important;
  }
}

/* 5. Leadership Section - Mobile */
@media (max-width: 992px) {
  .leadership-section {
    padding: 3rem 0 !important;
  }
}

@media (max-width: 768px) {
  .leadership-section {
    padding: 2.5rem 0 !important;
  }
  
  .leadership-title {
    font-size: 1.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .leadership-subtitle {
    font-size: 1rem !important;
  }
  
  .director-card {
    padding: 1.75rem 1.5rem !important;
    margin-bottom: 1rem;
  }
  
  .director-icon {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
  }
  
  .director-name {
    font-size: 1.15rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .director-badge {
    padding: 6px 18px !important;
    font-size: 0.85rem !important;
  }
  
  .global-mission {
    font-size: 1.3rem !important;
    padding: 1.25rem !important;
    margin-top: 2rem !important;
  }
}

@media (max-width: 576px) {
  .leadership-section {
    padding: 2rem 0 !important;
  }
  
  .leadership-title {
    font-size: 1.5rem !important;
  }
  
  .director-card {
    padding: 1.5rem 1.25rem !important;
  }
  
  .director-icon {
    font-size: 2.5rem !important;
  }
  
  .director-name {
    font-size: 1rem !important;
  }
  
  .global-mission {
    font-size: 1.15rem !important;
    padding: 1rem !important;
  }
}

/* 6. Grid Adjustments */
@media (max-width: 768px) {
  .row.g-4 {
    gap: 1rem !important;
  }
  
  .row.gy-5 {
    row-gap: 2rem !important;
  }
}

@media (max-width: 576px) {
  .row.g-4 {
    gap: 0.75rem !important;
  }
}

/* 7. Typography - Mobile */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.3rem !important;
  }
  
  h4 {
    font-size: 1.1rem !important;
  }
  
  h5 {
    font-size: 1rem !important;
  }
  
  .lead {
    font-size: 0.95rem !important;
  }
  
  p {
    font-size: 0.9rem;
  }
}

/* 8. Navbar - Mobile */
@media (max-width: 992px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
  }
  
  .navbar-nav {
    gap: 0 !important;
  }
  
  .nav-item {
    margin: 5px 0;
  }
  
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .custom-navbar {
    padding: 0.5rem 0;
  }
  
  .logo {
    height: 36px;
  }
}

/* 9. Footer - Mobile */
@media (max-width: 768px) {
  .footer-section {
    padding: 2rem 0 !important;
  }
  
  .footer-logo {
    max-width: 80px;
  }
  
  .footer-section h5,
  .footer-section h6 {
    font-size: 1rem;
    margin-top: 1.5rem;
  }
  
  .footer-section p,
  .footer-section li {
    font-size: 0.875rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .map-container iframe {
    height: 150px;
  }
}

/* 10. Disable Heavy Animations on Mobile */
@media (max-width: 768px) {
  .feature-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
  }
  
  .director-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
  }
  
  .company-intro:hover,
  .heritage-section:hover {
    transform: translateY(-4px) !important;
  }
  
  .global-mission:hover {
    transform: scale(1.01) !important;
  }
  
  /* Reduce animation intensity */
  .director-card:hover .director-icon,
  .feature-card:hover .feature-icon {
    transform: scale(1.1) !important;
  }
}

/* 11. Video Background - Mobile Optimization */
@media (max-width: 768px) {
  .bg-video {
    filter: brightness(0.5) contrast(1.1);
  }
  
  .hero-overlay {
    background: linear-gradient(135deg, rgba(145, 72, 118, 0.5) 0%, rgba(34, 78, 45, 0.5) 100%);
  }
}

/* 12. Prevent Horizontal Scroll */
body {
  overflow-x: hidden !important;
  width: 100%;
}

.container-fluid,
.row {
  overflow-x: hidden;
}

#hero-section,
#products-section {
  overflow: hidden;
}

/* 13. Better Section Spacing */
@media (max-width: 768px) {
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

@media (max-width: 576px) {
  section {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* 14. Column Responsiveness */
@media (max-width: 768px) {
  .col-lg-3,
  .col-lg-4,
  .col-lg-8,
  .col-lg-10,
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* 15. Smooth Transitions */
@media (max-width: 768px) {
  * {
    transition-duration: 0.2s !important;
  }
  
  .feature-card,
  .director-card,
  .company-intro,
  .heritage-section {
    transition-duration: 0.3s !important;
  }
}

/* 16. Text Alignment Fix */
@media (max-width: 576px) {
  .text-center {
    text-align: center !important;
  }
  
  .company-description {
    text-align: left !important;
  }
}

/* 17. Logo Alignment */
@media (max-width: 576px) {
  .d-flex.align-items-center {
    flex-direction: column !important;
    text-align: center;
  }
  
  .text-start {
    text-align: center !important;
  }
  
  .company-logo {
    margin-right: 0 !important;
    margin-bottom: 0.75rem;
  }
}

/* 18. Improve Touch Targets */
@media (max-width: 768px) {
  .director-badge,
  .nav-link,
  .dropdown-item,
  .social-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* 19. Reduce Border Effects on Mobile */
@media (max-width: 768px) {
  .feature-card,
  .director-card,
  .company-intro,
  .heritage-section {
    border-width: 1px;
  }
  
  .feature-card::before,
  .director-card::before,
  .company-intro::before,
  .heritage-section::before {
    height: 3px;
  }
}

/* 20. Animation Delays - Remove on Mobile */
@media (max-width: 768px) {
  [data-delay] {
    animation-delay: 0s !important;
  }
  
  .feature-card,
  .director-card {
    animation-delay: 0s !important;
  }
}