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

:root {
  --primary-color: #0c1527; /* Very dark blue from the image */
  --secondary-color: #1e293b;
  --text-dark: #334155;
  --text-light: #64748b;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --primary-hover: #1e293b;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Utility Top Bar
   ========================================================================== */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  font-size: 1rem;
}

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

.social-icons a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.navbar {
  background-color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-dark);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  /* Using a gradient that mimics the floral background vibe */
  background: linear-gradient(135deg, #eef2ff 0%, #fce7f3 100%);
  padding: 60px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 500px;
  z-index: 2;
}

.hero-brand-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.hero-subtitle-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.hero-subtitle-bar::before, .hero-subtitle-bar::after {
  content: '';
  height: 2px;
  background-color: var(--primary-color);
  flex: 1;
  max-width: 40px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-color);
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  color: #3b82f6; /* Adjust color based on image */
  background: -webkit-linear-gradient(0deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.hero-slogan {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-description {
  color: var(--text-dark);
  margin-bottom: 30px;
  font-size: 1rem;
}

.hero-images {
  flex: 1.5;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.product-showcase {
  position: absolute;
  /* These will be refined once we have the images */
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transition: transform 0.5s ease;
}

.product-showcase:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 10;
}

.ps-1 { left: 10%; top: 50px; z-index: 2; transform: scale(0.9); }
.ps-2 { left: 35%; top: 20px; z-index: 3; }
.ps-3 { left: 60%; top: 50px; z-index: 2; transform: scale(0.9); }

/* Beautiful flower accent in hero */
.hero-flower-accent {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 400px;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   Features Strip
   ========================================================================== */
.features-strip {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a273b 100%);
  color: var(--white);
  padding: 35px 0;
  margin-top: 30px;
}

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

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--white);
}

.feature-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
  padding: 100px 0;
  background-color: var(--bg-light);
  background-image: radial-gradient(rgba(0, 180, 216, 0.15) 1.5px, transparent 1.5px);
  background-size: 35px 35px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, rgba(248, 250, 252, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.products-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(2, 62, 138, 0.1) 0%, rgba(248, 250, 252, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.section-subtitle::before, .section-subtitle::after {
  content: '';
  height: 2px;
  width: 60px;
  background-color: var(--primary-color);
  opacity: 0.3;
  border-radius: 2px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 800;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin: 50px auto 0;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-card-img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

.product-card-info h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.product-card-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-secondary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

/* Page specific content wrapper for subpages */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
}

.page-content {
  padding: 80px 0;
  min-height: 50vh;
}

/* ==========================================================================
   Brochure / Features Page Specific Styles
   ========================================================================== */
.brochure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #f8fafc;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
}

.brochure-header {
  text-align: center;
  margin-bottom: 30px;
}

.b-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e3a8a;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 5px;
}

.b-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b91c1c;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.b-tagline {
  background-color: #1e3a8a;
  color: white;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-block;
  border-radius: 4px;
}

.brochure-main {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.b-machine-img {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.b-machine-img img {
  max-height: 500px;
  object-fit: contain;
}

.b-features-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.b-feature-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.b-f-icon {
  font-size: 2rem;
  color: #1e3a8a;
  background: #eff6ff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.b-f-text h4 {
  font-size: 0.9rem;
  color: #1e3a8a;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.b-f-text p {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.3;
}

.b-materials {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.b-material-item {
  text-align: center;
  width: 80px;
}

.b-material-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 5px;
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.b-material-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-material-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1e293b;
  text-transform: uppercase;
}

.b-details-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.b-panel {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.b-panel-header {
  background: #1e3a8a;
  color: white;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.b-panel-content {
  padding: 15px;
}

.b-list li {
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.b-list li i {
  color: #1e3a8a;
  margin-top: 3px;
}

.b-table {
  width: 100%;
  font-size: 0.8rem;
}

.b-table td {
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
}

.b-table td:first-child {
  font-weight: 500;
  color: #475569;
  width: 45%;
}

.b-table td:last-child {
  color: #1e293b;
}

.b-jali-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.b-jali-img {
  background: #f1f5f9;
  border-radius: 4px;
  padding: 5px;
  text-align: center;
}

.b-bottom-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 20px;
}

.b-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.b-trust-item i {
  font-size: 2rem;
  color: #1e293b;
}

.b-trust-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.b-footer-bar {
  background: #1e3a8a;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 15px 0;
  font-size: 0.9rem;
}
.b-footer-bar a {
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .brochure-main {
    flex-direction: column;
  }
  .b-details-section {
    grid-template-columns: 1fr;
  }
  .b-materials {
    justify-content: center;
  }
  .b-bottom-trust {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .b-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Features Tabs & Domestic Brochure Layout
   ========================================================================== */
.features-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 30px 0;
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #64748b;
  background: white;
  border: 2px solid #cbd5e1;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #1e3a8a;
  color: #1e3a8a;
}

.tab-btn.active {
  background: #1e3a8a;
  color: white;
  border-color: #1e3a8a;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

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

/* Domestic Hero Banner */
.domestic-hero {
  position: relative;
  background: url('../assets/images/family.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 4px solid #e2e8f0;
  min-height: 400px;
}

.domestic-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0.2) 100%);
  z-index: 1;
}

.dh-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.dh-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 10px;
}

.dh-title span {
  color: #0369a1;
}

.dh-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 30px;
}

.dh-icons-row {
  display: flex;
  gap: 20px;
}

.dh-icon-box {
  text-align: center;
}

.dh-icon {
  width: 50px; height: 50px;
  background: white;
  border: 2px solid #0369a1;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  margin: 0 auto 10px;
  font-size: 1.5rem;
  color: #0369a1;
}

.dh-icon-text {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.dh-machines {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.dh-machine-img {
  width: 180px;
  box-shadow: -10px 10px 20px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.dh-badge {
  position: relative;
  z-index: 2;
  text-align: right;
}

.dh-badge h3 {
  font-size: 1.8rem;
  color: #0f172a;
  line-height: 1.1;
}

.dh-badge .series {
  display: inline-block;
  background: #0369a1;
  color: white;
  padding: 5px 15px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 10px;
  border-radius: 4px;
}

.dh-trust {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 30px;
}

/* Domestic Feature Strips */
.dom-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f1f5f9;
  border-bottom: 2px solid white;
}

.dom-f-box {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
  border-right: 2px solid white;
}
.dom-f-box:last-child { border-right: none; }

.dom-f-content h4 {
  font-size: 1rem;
  color: #0369a1;
  margin-bottom: 5px;
  line-height: 1.2;
}
.dom-f-content p {
  font-size: 0.8rem;
  line-height: 1.3;
}
.dom-f-img {
  width: 80px; height: 80px;
  object-fit: contain;
}

/* Features in Detail (Dark Section) */
.dom-detail-section {
  background: #1e293b;
  color: white;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dom-detail-title {
  width: 25%;
}
.dom-detail-title h2 {
  font-size: 2.2rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 10px;
}
.dom-detail-title p {
  color: #94a3b8;
  font-size: 1.1rem;
}

.dom-detail-grid {
  display: flex;
  width: 75%;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.dom-detail-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dom-d-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.dom-d-item.reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.dom-d-icon {
  width: 50px; height: 50px;
  border: 1px solid #475569;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-size: 1.2rem;
  color: #cbd5e1;
}

.dom-d-text h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 2px;
}
.dom-d-text p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.dom-detail-center-img {
  width: 200px;
}

/* Comparison Table */
.dom-compare {
  display: flex;
  padding: 20px;
  background: white;
}

.dom-compare-title {
  width: 25%;
  display: flex;
  align-items: center;
}
.dom-compare-title h2 {
  font-size: 1.8rem;
  color: #0f172a;
}

.dom-compare-table {
  width: 75%;
  border-collapse: collapse;
}

.dom-compare-table th, .dom-compare-table td {
  border: 1px solid #e2e8f0;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}
.dom-compare-table th {
  background: #0369a1;
  color: white;
  text-transform: uppercase;
}
.dom-compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
}
.dom-compare-table i.fa-check {
  color: #0369a1;
  font-size: 1.2rem;
}

/* Domestic Trust Banner */
.dom-trust-banner {
  background: #f1f5f9;
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
}

.dom-trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.dom-trust-item i {
  font-size: 2rem;
  color: #475569;
}
.dom-trust-text h5 {
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 2px;
}
.dom-trust-text p {
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 992px) {
  .domestic-hero { flex-direction: column; text-align: center; }
  .domestic-hero::before { background: rgba(255,255,255,0.9); }
  .dh-icons-row, .dh-trust { justify-content: center; }
  .dom-feature-strip { grid-template-columns: 1fr 1fr; }
  .dom-detail-section { flex-direction: column; }
  .dom-detail-title, .dom-detail-grid { width: 100%; text-align: center; margin-bottom: 20px; }
  .dom-compare { flex-direction: column; }
  .dom-compare-title, .dom-compare-table { width: 100%; }
  .dom-trust-banner { flex-direction: column; gap: 20px; padding: 20px; }
}

/* ==========================================================================
   Commercial Brochure Layout
   ========================================================================== */
.commercial-layout {
  background-color: #f8fafc;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  position: relative;
}

/* Commercial Hero */
.comm-hero {
  display: flex;
  min-height: 500px;
  position: relative;
}

.comm-hero-left {
  flex: 1.2;
  background-color: #f8fafc;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
}

.comm-hero-right {
  flex: 1;
  background: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?w=1200&q=80') no-repeat center center;
  background-size: cover;
  position: relative;
}

.comm-hero-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.7);
}

.comm-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #0c1527;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.comm-badge-top i {
  font-size: 2.5rem;
}

.comm-badge-top-text h4 {
  font-size: 1.1rem;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.comm-badge-top-text p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

.comm-title-section {
  margin-top: 40px;
}

.comm-title-main {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #0c1527;
  line-height: 1.1;
  text-transform: uppercase;
}

.comm-title-sub1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: #334155;
  margin-top: 10px;
}

.comm-title-sub2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0c1527;
  line-height: 1.2;
}

.comm-desc {
  font-size: 1.05rem;
  color: #475569;
  margin-top: 20px;
  max-width: 90%;
  line-height: 1.6;
}

.comm-icons-row {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.comm-icon-box {
  text-align: center;
  width: 90px;
}

.comm-icon-circle {
  width: 60px;
  height: 60px;
  background-color: #0c1527;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  margin: 0 auto 10px;
  box-shadow: 0 4px 10px rgba(12,21,39,0.2);
}

.comm-icon-box p {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.2;
}

.comm-machine-img {
  position: absolute;
  bottom: -40px;
  left: -50px;
  height: 110%;
  z-index: 5;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* Applications Grid */
.comm-apps-section {
  background-color: #0c1527;
  padding: 30px;
  border-radius: 12px;
  margin: 40px 20px 20px;
  position: relative;
  z-index: 10;
}

.comm-apps-title {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comm-apps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.comm-app-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.comm-app-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.comm-app-card p {
  text-align: center;
  padding: 10px 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0c1527;
  text-transform: uppercase;
  margin: 0;
}

/* Bottom Strip */
.comm-bottom-strip {
  display: flex;
  align-items: stretch;
  margin: 0 20px 40px;
  gap: 15px;
}

.comm-b-feature {
  flex: 1;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 15px;
  gap: 15px;
}

.comm-b-feature i {
  font-size: 2rem;
  color: #0c1527;
}

.comm-b-feature p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin: 0;
  line-height: 1.2;
}

.comm-b-title-box {
  flex: 1.5;
  background: #0c1527;
  color: white;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comm-b-title-box h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 5px;
}

.comm-b-title-box p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
}

@media (max-width: 992px) {
  .comm-hero { flex-direction: column; }
  .comm-hero-right { min-height: 400px; }
  .comm-machine-img { position: relative; left: auto; bottom: auto; height: 300px; display: block; margin: -50px auto 0; }
  .comm-badge-top { position: relative; top: 0; right: 0; margin-bottom: 20px; justify-content: center; }
  .comm-apps-grid { grid-template-columns: repeat(2, 1fr); }
  .comm-bottom-strip { flex-direction: column; }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */
.about-hero {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}
.about-hero-text {
  flex: 1;
}
.about-hero-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about-hero-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-vision {
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}
.mv-card {
  flex: 1;
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border-bottom: 4px solid var(--primary-color);
}
.mv-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.mv-card p {
  color: var(--text-light);
}

.core-values {
  margin-bottom: 60px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-box {
  text-align: center;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.value-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}
.value-box i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.value-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.value-box p {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .about-hero, .mission-vision {
    flex-direction: column;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Gallery Page Styles
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: contain; /* or cover if you want them filled */
  padding: 10px;
  background-color: #f8fafc;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Enquiry Drawer Styles
   ========================================================================== */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.drawer-overlay.active .drawer-content {
  right: 0;
}

.drawer-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.drawer-close:hover {
  color: var(--primary-color);
  transform: translateX(-5px);
}

.drawer-header {
  margin-top: 20px;
  margin-bottom: 30px;
}

.drawer-header h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
}

.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.form-floating {
  position: relative;
}

.drawer-input {
  width: 100%;
  padding: 15px 0 5px 0;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.3s;
}

.drawer-input:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.form-floating label {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 1rem;
  color: var(--text-light);
  pointer-events: none;
  transition: 0.3s ease all;
}

.drawer-input:focus ~ label,
.drawer-input:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

.drawer-btn-submit {
  margin-top: 10px;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s, transform 0.2s;
}

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

.drawer-footer {
  margin-top: 40px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.drawer-footer p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.drawer-phone {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Mobile Menu Button (Hidden by default) */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
  /* Utility Top Bar */
  .top-bar-left {
    display: none;
  }
  
  .top-bar .container {
    justify-content: center;
  }

  .top-bar-right {
    flex-direction: column;
    gap: 8px;
    padding: 5px 0;
  }
  
  .top-bar-item {
    white-space: nowrap;
  }
  
  /* Navbar */
  .navbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  .navbar .btn-primary {
    display: none; /* Hide Enquiry Now on mobile to save space */
  }
  
  .nav-links {
    display: none; /* Hidden by default on mobile */
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
  }

  /* Mobile Typography & Spacing Fixes */
  .section-title {
    font-size: 1.8rem;
  }
  
  .page-header {
    padding: 30px 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  /* About Page Fixes */
  .about-hero {
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .mission-vision {
    gap: 20px;
    margin-bottom: 40px;
  }

  /* Contact Page Fixes */
  .contact-wrapper {
    flex-direction: column;
  }
  
  .contact-info, .contact-form-container {
    padding: 30px !important;
    min-width: 100% !important;
  }
  
  .contact-info h3, .contact-form-container h3 {
    font-size: 1.6rem !important;
  }
  
  .mv-card {
    padding: 25px;
  }
  
  .values-grid {
    gap: 15px;
  }
  
  .value-box {
    padding: 20px;
  }
  
  .df-row, .df-row.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .df-text h3 {
    justify-content: center;
  }
  
  /* Features Strip */
  .features-strip {
    padding: 25px 0;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 20px 15px;
  }
  
  .feature-box {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  /* Products Grid */
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  /* Tabs */
  .features-tabs {
    flex-direction: column;
    gap: 10px;
  }
  
  .tab-btn {
    width: 100%;
  }
  
  /* Domestic Feature Strip */
  .dom-feature-strip {
    display: flex;
    flex-direction: column;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .dom-f-box, .dom-feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
  }
  
  /* Detail Grid */
  .dom-detail-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .dom-detail-center-img {
    margin: 20px 0;
  }
  
  .dom-d-item, .dom-d-item.reverse {
    flex-direction: column;
    text-align: center;
  }
  
  /* Compare Table */
  .dom-compare {
    overflow-x: auto;
  }
  
  /* Commercial Apps Grid */
  .comm-apps-grid {
    grid-template-columns: 1fr;
  }
  
  /* Available On Section */
  .available-on-section > .container > div {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  /* Trust Banner */
  .dom-trust-banner {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Page Header Mobile */
  .page-header {
    padding: 30px 15px !important;
  }
  .page-header h1 {
    font-size: 2rem !important;
  }
  .page-header p {
    font-size: 1rem !important;
  }
}
