/* Dzire Page */
.dzire-page {
    font-family: 'Arial', sans-serif;
    position: relative;
    min-height: 100vh;
    background: #fff;
    /* overflow-x: hidden; */
  }
  
  .header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    height: 80px;
    width: auto;
    justify-self: start;
  }
  
  .center-text {
    justify-self: center;
    font-size: 24px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
  }
  
  .highlight {
    color: #1e88e5;
    font-weight: 700;
  }
  
  .right-section {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-self: end;
    font-size: 16px;
    color: #666;
  }
  
  .customer-care {
    cursor: pointer;
  }
  
  .nav-menu {
    position: relative;
  }
  
  .menu-icon {
    font-size: 24px;
    cursor: pointer;
    color: #666;
  }
  
  .menu-panel {
    position: fixed;
    top: 0;
    right: -300px; /* Hidden by default */
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .menu-panel.active {
    right: 0; /* Slide in when active */
  }
  
  .menu-close {
    font-size: 24px;
    color: #333;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
  }
  
  .menu-panel ul {
    list-style: none;
    padding: 0;
  }
  
  .menu-panel li {
    margin: 15px 0;
  }
  
  .menu-panel a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .menu-panel a:hover {
    color: #1e88e5;
  }
  
  /* Main Section */
  .main-section {
    position: relative;
    /* padding: 50px 0; */
    text-align: center;
  }
  
  .features-sidebar {
    position: absolute;
    top: 190px;
    left: 40px;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 30px 25px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    z-index: 2;
  }
  
  .feature-item {
    line-height: 1.3;
  }
  
  /* Car Image */
  .car-image {
    width: 100%;
    object-fit: cover;
    /* max-width: 800px; */
    display: block;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
  
  /* Title */
  .title {
    position: absolute;
    bottom: 490px;
    left: 80px;
    font-size: 36px;
    color: #444;
    text-align: left;
    z-index: 3;
    line-height: 1.2;
  }
  
  .dzire {
    font-size: 48px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
  }
  
  /* Color Circles */
  .color-options {
    position: absolute;
    right: 100px;
    bottom: 80px;
    display: flex;
    gap: 20px;
    z-index: 3;
  }
  
  .color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 3px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .grey { background: #b0b0b0; }
  .blue { background: #283593; }
  .white { background: #f5f5f5; }
  .red { background: #9c1000; }
  .active {
    border-color: #000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  }
  
  /* Triangle */
  .background-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
        border-left: 547px solid transparent;
    border-top: 0px solid #1d3b6f;
    z-index: 1;
    border-bottom: 257px solid #1d3b6f;
  }
  
  /* Featured Section */
  .featured-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
  }
  
  .featured-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  
  .featured-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .featured-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #1e88e5;
  }
  
  .card-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px;
  }
  
  .card-info {
    font-size: 14px;
    color: #666;
    padding: 0 15px 20px;
    line-height: 1.5;
  }
  
  /* About Us */
  .about-us {
    background: #f8f8f8;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
  }
  
  .about-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 40px;
  }
  
  .about-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-image {
    width: 100%;
    max-width: 520px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .about-text {
    max-width: 540px;
    text-align: left;
    background: #f1f1f1;
    padding: 25px 30px;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  /* Footer */
  .footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
  }
  
  .footer-section h3, .footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
  }
  
  .footer-section p, .footer-section a {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
  }
  
  .footer-section a:hover {
    color: #fff;
  }
  
  .footer-socials a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .footer-socials a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: #888;
    margin-top: 30px;
  }