/* style.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #111; background: #fff; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; }
.btn { display: inline-block; padding: 12px 30px; border-radius: 4px; font-weight: 600; transition: 0.3s; cursor: pointer; border: none; font-size: 1rem; }
.btn-red { background: #cc0000; color: white; }
.btn-red:hover { background: #a00000; }
.btn-outline { border: 2px solid #cc0000; color: #cc0000; background: transparent; padding: 8px 20px; border-radius: 4px; display: inline-block; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background: #cc0000; color: white; }

/* Header */
header { background: #000; color: white; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo a { font-size: 1.8rem; font-weight: bold; }
.logo-red { color: #cc0000; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: white; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #cc0000; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; width: 100%; background: #111; padding: 1rem; position: absolute; top: 70px; left: 0; gap: 1rem; text-align: center; z-index: 99; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .header-container { flex-wrap: wrap; }
}
/* Hero */
.hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1600x600?text=LogiDist+Group'); background-size: cover; background-position: center; color: white; text-align: center; padding: 100px 0; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.overview, .highlights, .commitment { padding: 80px 0; }
.overview h2, .highlights h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; color: #cc0000; }
.stats-grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 3rem; }
.stat-card { background: #f5f5f5; padding: 2rem; border-radius: 8px; text-align: center; flex: 1; min-width: 180px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.stat-card i { font-size: 2.5rem; color: #cc0000; margin-bottom: 1rem; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card { background: white; border: 1px solid #eee; padding: 2rem; border-radius: 8px; text-align: center; transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.card i { font-size: 2.5rem; color: #cc0000; margin-bottom: 1rem; }
.card h3 { margin-bottom: 1rem; }
.card p { margin-bottom: 1.5rem; }
.commitment .container { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; background: #f9f9f9; padding: 3rem; border-radius: 12px; }
.commitment-text { flex: 1; }
.commitment-text h2 { color: #cc0000; margin-bottom: 1rem; }
.commitment-image i { font-size: 6rem; color: #cc0000; }

/* Page Hero */
.page-hero { background: #111; color: white; text-align: center; padding: 60px 0; margin-bottom: 40px; }
.page-hero h1 { font-size: 2.5rem; color: #cc0000; margin-bottom: 0.5rem; }

/* About, Subsidiary Detail, Portfolio */
.about-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: 2rem 0; }
.values-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
.value { background: #f0f0f0; padding: 1rem 2rem; border-radius: 40px; font-weight: 500; }
.value i { color: #cc0000; margin-right: 8px; }
.founder-card { background: #fafafa; padding: 2rem; border-radius: 12px; text-align: center; max-width: 700px; margin: 2rem auto; }
.founder-card i { font-size: 3rem; color: #cc0000; margin-bottom: 1rem; }
.portfolio-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: center; background: #fff; padding: 1.5rem; border-left: 4px solid #cc0000; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.portfolio-item i { font-size: 2.5rem; color: #cc0000; min-width: 60px; text-align: center; }
.subsidiary-detail ul { margin: 1rem 0 1rem 2rem; }
.subsidiary-detail h2 { color: #cc0000; margin: 1.5rem 0 0.5rem; }
.contact-section { padding: 60px 0; background: #fefefe; }
.contact-details p { margin-bottom: 1rem; }
.contact-details i { width: 30px; color: #cc0000; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 4px; }
.contact-form button { width: 100%; }
.alert { padding: 12px; margin-bottom: 1rem; border-radius: 4px; }
.alert.success { background: #d4edda; color: #155724; }
.alert.error { background: #f8d7da; color: #721c24; }

/* Footer */
footer { background: #000; color: #aaa; padding: 3rem 0 1rem; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.footer-col h3, .footer-col h4 { color: white; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: #aaa; transition: 0.3s; }
.footer-col a:hover { color: #cc0000; }
.social a { display: inline-block; margin-right: 1rem; font-size: 1.2rem; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #222; font-size: 0.9rem; }
@media (max-width: 768px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; }
    .commitment .container { flex-direction: column; text-align: center; }
}

/* Custom Theme: Red, Black, White */
.text-red {
  color: #cc0000 !important;
}
.bg-red {
  background-color: #cc0000 !important;
}
.btn-red {
  background-color: #cc0000;
  color: #fff;
  border: none;
}
.btn-red:hover,
.btn-red:focus {
  background-color: #a00000;
  color: #fff;
}
.btn-outline-red {
  border: 2px solid #cc0000;
  color: #cc0000;
  background: transparent;
}
.btn-outline-red:hover {
  background-color: #cc0000;
  color: #fff;
}
.bg-black {
  background-color: #000 !important;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #cc0000;
}
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
}
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
a {
  transition: color 0.2s;
}

/* Add this to existing CSS */
.grayscale-hover {
  transition: filter 0.3s;
}
.grayscale-hover:hover {
  filter: grayscale(0%);
}
.grayscale-hover {
  filter: grayscale(100%);
}501

/* Google Font */
body {
  font-family: 'Inter', sans-serif;
  color: #212529;
  line-height: 1.6;
}

/* Theme Colors */
.text-red {
  color: #cc0000 !important;
}
.bg-red {
  background-color: #cc0000 !important;
}
.btn-red {
  background-color: #cc0000;
  color: #fff;
  border: none;
  transition: all 0.3s;
}
.btn-red:hover,
.btn-red:focus {
  background-color: #a00000;
  color: #fff;
}
.btn-outline-red {
  border: 2px solid #cc0000;
  color: #cc0000;
  background: transparent;
  transition: all 0.3s;
}
.btn-outline-red:hover {
  background-color: #cc0000;
  color: #fff;
}
.bg-black {
  background-color: #000 !important;
}
.navbar-dark .navbar-nav .nav-link {
  font-weight: 500;
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #cc0000;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1534430480872-3498386e7856?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.hover-card {
  transition: all 0.3s;
}
.hover-card:hover {
  transform: translateY(-5px);
}

/* Stat Cards */
.stat-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.stat-card:hover {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Affiliate Logos */
.grayscale-hover {
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.grayscale-hover:hover {
  filter: grayscale(0%);
}

/* Form Controls */
.form-control:focus {
  border-color: #cc0000;
  box-shadow: 0 0 0 0.2rem rgba(204,0,0,0.25);
}

/* Footer Links */
footer a:hover {
  color: #cc0000 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}

    












