* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #253f71;
    position: relative;
  }
  
  .animate-border {
    display: block;
    width: 80px;
    height: 4px;
    background: #253f71;
    margin: 0 auto 40px;
    position: relative;
    border-radius: 2px;
  }
  
  .animate-border::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: #f58220;
    animation: border-move 3s infinite ease-in-out;
    border-radius: 2px;
  }
  
  @keyframes border-move {
    0% { left: 0; }
    50% { left: 50px; }
    100% { left: 0; }
  }
  
  /* Header Styles */
  .top-strip {
    background-color: #253f71;
    color: white;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
  }
  
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header img {
    height: 50px;
  }
  
  #navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
    position: relative;
  }
  
  #navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  #navbar a:hover {
    color: #253f71;
  }
  
  /* Enhanced Dropdown Menu Styles */
  .dropdown {
    position: relative;
  }
  
  .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }
  
  .dropdown:hover > a::after {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    border-top: 3px solid #253f71;
    overflow: hidden;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
  }
  
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #253f71;
  }
  
  .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
  }
  
  .dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(37, 63, 113, 0.05), rgba(37, 63, 113, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
  }
  
  .dropdown-menu a:hover::before {
    width: 100%;
  }
  
  .dropdown-menu a:hover {
    color: #253f71;
    border-left-color: #253f71;
    padding-left: 25px;
  }
  
  .dropdown-menu a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #253f71;
    font-size: 0.9rem;
  }
  
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Product Hero Section */
  .product-hero {
    background: linear-gradient(rgba(37, 63, 113, 0.8), rgba(37, 63, 113, 0.8));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  .product-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .product-hero p {
    font-size: 1.2rem;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 20px 0;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .breadcrumb a {
    color: #253f71;
    text-decoration: none;
  }
  
  .breadcrumb span {
    color: #666;
  }
  
  /* Product Overview */
  .product-overview {
    padding: 60px 0;
    background: white;
  }
  
  .overview-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }
  
  .product-image {
    flex: 1;
    text-align: center;
  }
  
  .product-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .product-details {
    flex: 1;
  }
  
  .product-details h2 {
    color: #253f71;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  
  .product-details p {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.8;
  }
  
  .key-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .feature i {
    color: #253f71;
    font-size: 1.2rem;
  }
  
  .product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #253f71;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background: #1a2c52;
  }
  
  .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: #f58220;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .btn-secondary:hover {
    background: #e07210;
  }
  
  .btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #253f71;
    color: #253f71;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .btn-outline:hover {
    background: #253f71;
    color: white;
  }
  
  /* Specifications Section */
  .specifications {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .specs-container {
    display: flex;
    gap: 40px;
  }
  
  .specs-content {
    flex: 1;
  }
  
  .specs-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .specs-table {
    width: 100%;
    min-width: 1200px;
    border-collapse: collapse;
    background: white;
  }
  
  .specs-table th, .specs-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
  }
  
  .specs-table th {
    background: #253f71;
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .specs-table th:first-child,
  .specs-table td:first-child {
    text-align: left;
    padding-left: 15px;
    background: #f1f5f9;
    font-weight: 600;
    position: sticky;
    left: 0;
    z-index: 5;
  }
  
  .specs-table th:first-child {
    background: #1a2c52;
    z-index: 15;
  }
  
  .specs-table tr:nth-child(even) {
    background: #f9f9f9;
  }
  
  .specs-table tr:hover {
    background: #f0f4ff;
  }
  
  .specs-table td:first-child {
    min-width: 200px;
  }
  
  .specs-table .ratio-cell {
    font-weight: 600;
    color: #253f71;
  }
  
  .specs-image {
    flex: 1;
    text-align: center;
  }
  
  .specs-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Applications Section */
  .applications {
    padding: 60px 0;
    background: white;
  }
  
  .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .application-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .application-card:hover {
    transform: translateY(-5px);
  }
  
  .application-card i {
    font-size: 2.5rem;
    color: #253f71;
    margin-bottom: 20px;
  }
  
  .application-card h3 {
    margin-bottom: 15px;
    color: #253f71;
  }
  
  /* Customization Section */
  .customization {
    padding: 60px 0;
    background: #f8f9fa;
  }
  
  .customization-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #253f71;
  }
  
  .form-group select, 
  .form-group input, 
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  .form-row .form-group {
    flex: 1;
  }
  
  /* Related Products */
  .related-products {
    padding: 60px 0;
    background: white;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
  }
  
  .product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
  
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }
  
  .product-card-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 15px;
  }
  
  .product-card-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
  }
  
  .product-card:hover .product-card-image img {
    transform: scale(1.05);
  }
  
  .product-card-info {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  
  .product-card-info h3 {
    color: #253f71;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }
  
  .product-card-info p {
    color: #666;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
  }
  
  /* Footer Styles */
  footer {
    background: #253f71;
    color: white;
    padding: 50px 0 20px;
    margin-top: 40px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background 0.3s;
  }
  
  .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
    
    #navbar {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: right 0.3s;
      z-index: 1001;
      padding: 80px 20px 20px;
    }
    
    #navbar.active {
      right: 0;
    }
    
    #navbar ul {
      flex-direction: column;
    }
    
    .dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      padding-left: 20px;
      margin-top: 10px;
      background: rgba(0, 0, 0, 0.02);
      border-radius: 5px;
      border-top: none;
    }
    
    .dropdown-menu::before {
      display: none;
    }
    
    .dropdown > a::after {
      transform: rotate(0);
    }
    
    .dropdown.active > a::after {
      transform: rotate(180deg);
    }
    
    .product-hero h1 {
      font-size: 2.2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .overview-content {
      flex-direction: column;
    }
    
    .specs-container {
      flex-direction: column;
    }
    
    .specs-table-wrapper {
      margin: 10px -20px;
      border-radius: 0;
    }
    
    .specs-table {
      font-size: 0.8rem;
    }
    
    .specs-table th, .specs-table td {
      padding: 8px 6px;
    }
    
    .specs-table td:first-child {
      min-width: 150px;
    }
    
    .key-features {
      grid-template-columns: 1fr;
    }
    
    .product-actions {
      flex-direction: column;
    }
    
    .form-row {
      flex-direction: column;
      gap: 0;
    }
    
    .products-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Custom Modal Styles - Fixed Window, No Scrollbar */
  .product-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2000 !important;
  }
  
  .close-modal {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    z-index: 10 !important;
    color: #333 !important;
    background: white !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    transition: all 0.3s !important;
  }
  
  .close-modal:hover {
    background: #f58220 !important;
    color: white !important;
    transform: scale(1.1) !important;
  }
  
  .modal-content {
    width: 95% !important;
    max-width: 1400px !important;
    max-height: 95vh !important;
    height: 95vh !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  
  .modal-body {
    display: flex !important;
    flex: 1 !important;
    overflow: hidden !important;
    min-height: 0 !important;
    gap: 20px !important;
  }
  
  .modal-left {
    flex: 0 0 45% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 15px !important;
    max-height: 100% !important;
  }
  
  .modal-right {
    flex: 0 0 55% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 15px !important;
    max-height: 100% !important;
    background: #f8f9fa !important;
  }
  
  .modal-image {
    height: 180px !important;
    margin-bottom: 15px !important;
  }
  
  .modal-details h2 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
  }
  
  .modal-details p {
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
  }
  
  .modal-details h3 {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
  
  /* Keep specs-table styling same as Products.html - use productpage.css defaults */
  .modal-details .specs-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    font-size: 0.9rem !important;
  }
  
  .modal-details .specs-table th,
  .modal-details .specs-table td {
    padding: 10px !important;
    text-align: left !important;
    border-bottom: 1px solid #eee !important;
  }
  
  .modal-details .specs-table th {
    background: #f9f9f9 !important;
    color: #253f71 !important;
    width: 40% !important;
  }
  
  .motor-image-section {
    margin-bottom: 15px !important;
  }
  
  .motor-image img {
    max-width: 100% !important;
    max-height: 150px !important;
    width: auto !important;
    height: auto !important;
  }
  
  .spec-form {
    margin-top: 0 !important;
  }
  
  .spec-form h3 {
    font-size: 1.2rem !important;
    margin-bottom: 15px !important;
    padding-bottom: 8px !important;
  }
  
  .form-group {
    margin-bottom: 12px !important;
  }
  
  .form-group label {
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
  }
  
  .form-group select,
  .form-group input,
  .form-group textarea {
    padding: 8px 10px !important;
    font-size: 0.9rem !important;
  }
  
  .form-group textarea {
    min-height: 80px !important;
  }
  
  .contact-section {
    margin-top: 15px !important;
    padding-top: 15px !important;
  }
  
  .contact-section h3 {
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
  }
  
  .form-row {
    gap: 10px !important;
  }
  
  .modal-actions {
    margin-top: 15px !important;
  }
  
  .modal-actions .btn-primary {
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
  }
  
  @media (max-width: 992px) {
    .modal-body {
      flex-direction: column !important;
    }
    
    .modal-left,
    .modal-right {
      flex: 1 1 auto !important;
      max-height: 50% !important;
    }
    
    .modal-content {
      height: 98vh !important;
      max-height: 98vh !important;
    }
  }