@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0f223f;
  --primary-dark: #071324;
  --primary-light: #1b3860;
  --secondary: #ff6a00;
  --secondary-hover: #e05d00;
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --text-light: #ffffff;
  --text-muted: #a0aec0;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --accent: #ffd700;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
}

body {
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-hover);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-orange { color: var(--secondary); }
.text-navy { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: none;
  gap: 8px;
}

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

.btn-primary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Section Common Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

/* Top Utility Bar */
.top-bar {
  background-color: var(--bg-white);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  font-weight: 500;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.top-bar a {
  color: var(--text-medium);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.top-bar a:hover {
  color: var(--secondary);
}

/* Navigation Header */
header.main-header {
  background-color: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

header.main-header.scrolled {
  padding: 5px 0;
}

header.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

nav.nav-menu {
  display: flex;
  align-items: center;
}

nav.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav.nav-menu ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

nav.nav-menu ul li a:hover,
nav.nav-menu ul li a.active {
  color: var(--secondary);
}

nav.nav-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-normal);
}

nav.nav-menu ul li a:hover::after,
nav.nav-menu ul li a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary-dark);
  background-image: linear-gradient(135deg, rgba(7, 19, 36, 0.92) 40%, rgba(7, 19, 36, 0.5) 100%), url('assets/hero_machinery.png');
  background-size: cover;
  background-position: center;
  color: var(--text-light);
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-subtitle-tag {
  color: var(--secondary);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.global-markets-card {
  background: rgba(15, 34, 63, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 24px;
  align-self: flex-start;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.8s forwards 0.3s;
}

.global-markets-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.global-markets-header svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
}

.global-markets-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.global-markets-list {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.6;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Core Solutions Section */
.solutions {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solution-card {
  background-color: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.solution-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: var(--primary);
}

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

.solution-card:hover .solution-image img {
  transform: scale(1.08);
}

.solution-icon-overlay {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--secondary);
  width: 48px;
  height: 48px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--text-light);
  z-index: 2;
}

.solution-icon-overlay svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.solution-info {
  padding: 30px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.solution-info p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.solution-link {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: var(--transition-fast);
}

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

/* About Us Section */
.about {
  padding: 80px 0;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0,0,0,0.03);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.about-text h3 {
  font-size: 1.1rem;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

/* Stats panel */
.stats-panel {
  background-color: var(--primary);
  border-radius: 8px;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  color: var(--text-light);
  align-content: center;
  box-shadow: var(--shadow-lg);
}

.stat-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  margin-bottom: 10px;
  color: var(--secondary);
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Map Section */
.global-reach-panel {
  display: flex;
  flex-direction: column;
}

.global-reach-panel h3 {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.global-reach-panel p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 15px;
}

.map-container {
  background-color: #f0f4f8;
  border-radius: 8px;
  padding: 10px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.map-container svg {
  width: 100%;
  height: auto;
  max-height: 380px;
}

.map-container svg .land {
  transition: fill 0.3s ease;
}

.map-container svg #IN,
.map-container svg #AE,
.map-container svg #SA,
.map-container svg #ZA {
  cursor: pointer;
}

.map-container svg #IN:hover,
.map-container svg #AE:hover,
.map-container svg #SA:hover,
.map-container svg #ZA:hover {
  fill: var(--secondary) !important;
}

/* Products Section */
.products {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.products-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 160px;
  overflow: hidden;
  background-color: var(--primary-light);
}

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

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

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

.custom-products-card {
  background-color: var(--primary);
  border-radius: 8px;
  padding: 35px 25px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.custom-products-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(255, 106, 0, 0.1);
  border-radius: 50%;
}

.custom-products-icon {
  margin-bottom: 20px;
  color: var(--secondary);
}

.custom-products-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.custom-products-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.custom-products-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

/* Industries Section */
.industries {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.industries-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.industry-item {
  flex: 1 1 140px;
  max-width: 160px;
  background-color: var(--bg-light);
  padding: 25px 15px;
  border-radius: 6px;
  text-align: center;
  transition: var(--transition-normal);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.industry-item:hover {
  transform: translateY(-5px);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--secondary);
}

.industry-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.industry-item:hover .industry-icon {
  background-color: var(--secondary);
  color: var(--text-light);
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.industry-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* Bottom Call to Action Banner */
.cta-banner {
  background-color: var(--primary);
  background-image: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 40px 0;
  border-bottom: 3px solid var(--secondary);
}

.cta-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-text-icon {
  background-color: rgba(255, 106, 0, 0.1);
  color: var(--secondary);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-text-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.cta-title {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-contacts {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

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

.cta-contact-icon {
  color: var(--secondary);
}

.cta-contact-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
}

.cta-contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cta-contact-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.cta-contact-value:hover {
  color: var(--secondary);
}

/* Footer styling */
footer.main-footer {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 70px 0 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.social-links a {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.footer-contact-icon {
  color: var(--secondary);
  margin-top: 3px;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.footer-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-text a:hover {
  color: var(--secondary);
}

.qr-code-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.qr-wrapper {
  background-color: var(--bg-white);
  padding: 8px;
  border-radius: 4px;
  display: inline-flex;
  cursor: pointer;
  transition: var(--transition-normal);
}

.qr-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.2);
}

.qr-wrapper svg {
  width: 110px;
  height: 110px;
}

.qr-code-area span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.copyright-bar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 19, 36, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  padding: 35px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-normal);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-medium);
  transition: var(--transition-fast);
}

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

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Success notification toast */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateX(150%);
  width: max-content;
  max-width: calc(100vw - 40px);
  white-space: normal;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 15px 25px;
  border-radius: 4px;
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2500;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
  transform: translateX(0);
}

/* Mobile responsive breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid .global-reach-panel {
    grid-column: span 2;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav.nav-menu {
    position: fixed;
    top: 68px; /* adjusted based on header height */
    left: -100%;
    width: 80%;
    height: calc(100vh - 68px);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  nav.nav-menu.active {
    left: 0;
  }
  
  nav.nav-menu ul {
    flex-direction: column;
    padding: 40px;
    gap: 25px;
    width: 100%;
  }
  
  nav.nav-menu ul li a {
    font-size: 1.1rem;
    display: block;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-description {
    margin: 0 auto 30px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .global-markets-card {
    align-self: center;
    transform: none;
    opacity: 1;
    animation: none;
    margin-top: 20px;
    width: 100%;
    max-width: 450px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid .global-reach-panel {
    grid-column: span 1;
  }
  
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .custom-products-card {
    padding: 40px;
  }
  
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-text {
    flex-direction: column;
  }
  
  .cta-contacts {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .logo-title {
    font-size: 1.3rem;
  }
  
  .logo-icon {
    width: 38px;
    height: 38px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
}
