/* ==========================================================================
  CSS VARIABLES
  ========================================================================== */
:root {
  --primary: #0056b3;
  --secondary: #FFD700;
  --accent: #000;
  --light: #fff;
  --text-light: #eeeeee;
  --text-dark: #333;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --border-radius: 8px;
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ==========================================================================
  RESET & BASE STYLES
  ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--light);
  background-color: var(--accent);
  overflow-x: hidden;
}

/* ==========================================================================
  TYPOGRAPHY
  ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* ==========================================================================
  LAYOUT: CONTAINER & GRID
  ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.col-md-6, .col-md-8, .col-md-4 {
  padding: 0 12px;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-md-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

/* ==========================================================================
  HEADER & NAVIGATION
  ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Dropdown Navigation --- */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--accent);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--box-shadow);
  list-style: none;
  padding: 8px 0;
  margin: 8px 0 0 0;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--light);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--secondary);
  background: rgba(255, 215, 0, 0.1);
  border-left-color: var(--secondary);
  padding-left: 24px;
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 4px;
}

.bar {
  width: 24px;
  height: 3px;
  background: var(--light);
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ==========================================================================
  PAGE HEADER & HERO SECTION
  ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.25rem;
  margin-bottom: 24px;
  opacity: 0.9;
}

.breadcrumb {
  font-size: 0.9rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--secondary);
}

.highlight {
  color: var(--secondary);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 86, 179, 0.6));
}

.hero-content {
  max-width: 800px;
  padding: 0 24px;
  z-index: 1;
  color: var(--light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 48px 0;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
  BUTTONS
  ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background: #004494;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 86, 179, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
}

.btn-large {
  height: 56px;
  padding: 0 32px;
  font-size: 1.125rem;
}

/* ==========================================================================
  SECTION STYLING
  ========================================================================== */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--light);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

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

/* ==========================================================================
  GRID LAYOUTS FOR CARDS & GALLERIES
  ========================================================================== */
.brands-grid,
.services-grid,
.products-grid,
.capacity-grid,
.machinery-grid,
.workforce-grid,
.achievements-grid,
.pillars-grid,
.initiatives-grid,
.certifications-grid,
.memberships-grid,
.registrations-grid,
.banking-grid,
.contact-grid,
.departments-grid,
.gallery-container {
  display: grid;
  gap: 24px;
}

.brands-grid { grid-template-columns: repeat(2, 1fr); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.products-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.capacity-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.machinery-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.workforce-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.achievements-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.pillars-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.initiatives-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.certifications-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.memberships-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.registrations-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.banking-grid { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.contact-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.departments-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gallery-container { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ==========================================================================
  CARD COMPONENTS (BRAND, SERVICE, PRODUCT, ETC.)
  ========================================================================== */
.brand-card,
.service-card,
.product-card,
.capacity-card,
.machinery-card,
.department-card,
.achievement-card,
.pillar-card,
.initiative-card,
.cert-card,
.membership-card,
.registration-card,
.bank-card,
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.brand-card:hover,
.service-card:hover,
.product-card:hover,
.capacity-card:hover,
.machinery-card:hover,
.department-card:hover,
.achievement-card:hover,
.pillar-card:hover,
.initiative-card:hover,
.cert-card:hover,
.membership-card:hover,
.registration-card:hover,
.bank-card:hover,
.contact-card:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.2);
  border-color: var(--secondary);
}

/* --- Brand Card --- */
.brand-logo {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(0, 86, 179, 0.1);
  border-radius: var(--border-radius);
}

.brand-logo h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 0;
}

.brand-content h4 {
  color: var(--light);
  margin-bottom: 12px;
}

.brand-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.8;
}

.brand-features {
  list-style: none;
  margin-bottom: 24px;
}

.brand-features li {
  padding: 4px 0 4px 16px;
  color: var(--text-light);
  position: relative;
}

.brand-features li::before {
  content: '•';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --- Service Card --- */
.service-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
  text-align: center;
}

.service-card h3 {
  color: var(--light);
  text-align: center;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
  opacity: 0.8;
}

/* --- Product Card --- */
.product-image {
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-content h4 {
  color: var(--light);
  margin-bottom: 12px;
}

.product-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.8;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
}

.product-features li {
  padding: 4px 0 4px 16px;
  color: var(--text-light);
  position: relative;
}

.product-features li::before {
  content: '✓';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.product-capacity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.capacity-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.capacity-value {
  color: var(--secondary);
  font-weight: 600;
}

/* --- Capacity Card --- */
.capacity-card h3,
.capacity-card h4 {
  color: var(--light);
  text-align: center;
  margin-bottom: 20px;
}

.capacity-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.stat .label {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* --- Machinery Card --- */
.machinery-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.machine-info h4 {
  color: var(--light);
  font-size: 1rem;
  margin-bottom: 4px;
}

.machine-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.quantity {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- Department Card --- */
.department-card {
  text-align: center;
}

.department-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.department-card h4 {
  color: var(--light);
  margin-bottom: 8px;
  font-size: 1rem;
}

.personnel-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.department-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.department-card.highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
}

.department-card.highlight h4,
.department-card.highlight .personnel-count {
  color: var(--light);
}

/* ==========================================================================
  TABS
  ========================================================================== */
.capacity-tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary);
  color: var(--light);
}

.tab-content {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 32px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  color: var(--light);
  margin-bottom: 24px;
  text-align: center;
}

/* ==========================================================================
  TIMELINE
  ========================================================================== */
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 5%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
  transform: translateX(-45%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: var(--secondary);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 215, 0, 0.2);
  margin: 0 40px;
  flex: 1;
}

.timeline-content h3 {
  color: var(--light);
  margin-bottom: 12px;
}

.timeline-content p {
  color: var(--text-light);
  opacity: 0.8;
  margin: 0;
}

/* ==========================================================================
  PROCESS TIMELINE
  ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
}

.step-number {
  background: var(--secondary);
  color: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-content h3 {
  color: var(--light);
  margin-bottom: 16px;
}

.step-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: 0.8;
}

.step-content ul {
  list-style: none;
  text-align: left;
}

.step-content ul li {
  padding: 4px 0 4px 16px;
  color: var(--text-light);
  position: relative;
}

.step-content ul li::before {
  content: '•';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ==========================================================================
  FORMS
  ========================================================================== */
.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-form {
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group .row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* ==========================================================================
  GALLERY
  ========================================================================== */
.gallery-filters {
  padding: 40px 0;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: var(--light);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-content {
  text-align: center;
  color: var(--light);
  padding: 20px;
}

.gallery-content h3 {
  margin-bottom: 8px;
}

.gallery-content p {
  margin-bottom: 16px;
  opacity: 0.8;
}

.gallery-content i {
  font-size: 2rem;
  color: var(--secondary);
}

/* ==========================================================================
  MODAL
  ========================================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 800px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.modal-content img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: var(--light);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: var(--secondary);
}

#modalCaption {
  color: var(--light);
  padding: 20px;
  font-size: 1.1rem;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-btn {
  background: rgba(0, 0, 0, 0.5);
  color: var(--light);
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--secondary);
  color: var(--accent);
}

/* ==========================================================================
  OWL CAROUSEL CUSTOMIZATION
  ========================================================================== */
.owl-carousel .owl-nav {
  margin-top: 20px;
  text-align: center;
}

.owl-carousel .owl-nav button {
  background: var(--primary) !important;
  color: var(--light) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 10px !important;
  font-size: 1.2rem !important;
}

.owl-carousel .owl-nav button:hover {
  background: var(--secondary) !important;
  color: var(--accent) !important;
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.owl-carousel .owl-dot span {
  background: rgba(255, 215, 0, 0.3) !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
}

.owl-carousel .owl-dot.active span {
  background: var(--secondary) !important;
}

/* --- Awards Carousel --- */
.awards-slider .award-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 20px;
  margin: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: var(--transition);
}

.awards-slider .award-item:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
}

.award-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  cursor: pointer;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.award-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.award-image:hover .award-overlay {
  opacity: 1;
}

.award-image:hover img {
  transform: scale(1.1);
}

.award-overlay i {
  font-size: 2rem;
  color: var(--secondary);
}

.award-content h3 {
  color: var(--light);
  margin-bottom: 8px;
}

.award-year {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

.award-content p {
  color: var(--text-light);
  opacity: 0.8;
  margin: 0;
}

/* ==========================================================================
  STATISTICS
  ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
}

.stat-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  opacity: 0.8;
}

/* ==========================================================================
  FOOTER
  ========================================================================== */
.footer {
  background: var(--accent);
  color: var(--light);
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-section p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-section h4 {
  color: var(--light);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

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

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

.footer-section ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-section ul li a:hover {
  color: var(--secondary);
  opacity: 1;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition);
  color: var(--light);
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  opacity: 0.8;
  margin: 0;
}

/* ==========================================================================
  ANIMATIONS & UTILITIES
  ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
}

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

/* ==========================================================================
  RESPONSIVE DESIGN
  ========================================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .brands-grid, .services-grid { grid-template-columns: 1fr; }
  .tab-buttons { flex-direction: column; align-items: center; }
  .tab-btn { width: 100%; max-width: 300px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; z-index: 1001; }
  .nav-menu {
   position: fixed;
   left: -100%;
   top: 70px;
   flex-direction: column;
   background-color: rgba(0, 0, 0, 0.98);
   backdrop-filter: blur(10px);
   width: 100%;
   height: calc(100vh - 70px);
   overflow-y: auto;
   text-align: center;
   transition: 0.3s;
   border-top: 1px solid rgba(255, 215, 0, 0.2);
  }
  .nav-menu.active { left: 0; }
  .nav-list { flex-direction: column; padding: 24px 0; gap: 0; }
  .nav-item { margin: 0; width: 100%; border-bottom: 1px solid rgba(255, 215, 0, 0.1); }
  .nav-item:last-child { border-bottom: none; }
  .nav-link { padding: 16px 24px; justify-content: center; width: 100%; }
  .dropdown-toggle { justify-content: space-between; padding: 16px 32px; }
  .dropdown-menu {
   position: static;
   opacity: 1;
   visibility: visible;
   transform: none;
   background: rgba(0, 86, 179, 0.1);
   border: none;
   border-radius: 0;
   box-shadow: none;
   margin: 0;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
  }
  .dropdown.active .dropdown-menu { max-height: 300px; }
  .hero-title { font-size: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .col-md-6, .col-md-8, .col-md-4 { flex: 0 0 100%; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .timeline-container::before { left: 20px; }
  .timeline-item { flex-direction: row !important; padding-left: 50px; }
  .timeline-year { position: absolute; left: 0; min-width: 60px; font-size: 0.9rem; padding: 6px 12px; }
  .timeline-content { margin: 0; }
}

@media (max-width: 480px) {
  .hero-title, .section-title { font-size: 2rem; }
  .btn { width: 100%; max-width: 280px; }
  .nav-container { padding: 12px 16px; }
  .section-padding { padding: 48px 0; }
  .section-header { margin-bottom: 40px; }
  .gallery-container { grid-template-columns: 1fr; }
  .contact-form-container { padding: 24px; }
}

/* ==========================================================================
  PERFORMANCE & PRINT
  ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
   animation-duration: 0.01ms !important;
   animation-iteration-count: 1 !important;
   transition-duration: 0.01ms !important;
  }
}

@media print {
  .header, .hamburger, .hero-buttons, .btn { display: none; }
  body { font-size: 12pt; line-height: 1.4; color: #000; background: #fff; }
  .hero { height: auto; padding: 2cm 0; }
}
