/* --- Header Styling (Sticky, Background Color, Class) --- */
.ashoka-wheels-header {
    background-color: #0c2a5c; 
    color: white;
    width: 100%;
    z-index: 1000;
    padding: 15px 0; 
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}

/* Logo Styling */
.header-logo img {
    height: 80px; 
    vertical-align: middle;
}

/* --- Main Navigation Menu (Desktop) --- */
.main-nav {
    flex-grow: 1; 
    text-align: center;
    margin: 0 20px; 
}

.main-nav ul {
    display: flex;
    justify-content: center;
}

.main-nav ul li {
    position: relative;
    padding: 0 20px; 
}

.main-nav ul li a {
    display: block;
    padding: 10px 0;
    font-weight: bold;
    transition: color 0.3s;
    color: white; 
    position: relative; 
}

/* 1. REMOVED: Underline effect CSS */

/* 1. Hover Effect (Color Change Only) */
.main-nav ul li:hover > a,
.main-nav ul li.active > a {
    color: #ffd700; /* Highlight color on hover/active */
}


/* Dropdown Menu Styling (Vertical) */
.main-nav ul li .hm-dropdown {
    position: absolute;
    top: 100%; 
    left: 50%; 
    transform: translateX(-50%);
    min-width: 200px; /* Fixed width for vertical stack */
    
    background-color: #0c2a5c;
    border-top: 3px solid #ffd700;
    padding: 10px 0;
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
    text-align: left;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    
    display: block; /* Ensures vertical stacking */
}

.main-nav ul li .hm-dropdown li {
    padding: 0; 
    width: 100%; 
}

.main-nav ul li .hm-dropdown li a {
    display: block; 
    padding: 10px 15px; 
    font-weight: normal;
    color: white; 
    white-space: nowrap; 
}

.main-nav ul li .hm-dropdown li:hover > a {
    background-color: #1a4282;
    color: #ffd700;
}

/* Sub-Dropdown Positioning */
.main-nav ul li .hm-sub_dropdown {
    top: 0;
    left: 100%;
    transform: translateX(0); 
    border-top: none;
    margin-left: -3px; 
}

/* Show Dropdown on Hover */
.main-nav ul li:hover > .hm-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Indicators */
.main-nav ul li a .ion-ios-arrow-down {
    margin-left: 5px;
    font-size: 12px;
}

.hm-sub_dropdown a .ion-ios-arrow-forward {
    float: right;
    margin-top: 4px;
}


/* --- Right Side Actions --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-item {
    position: relative;
    cursor: pointer;
}

.action-item i {
    font-size: 18px;
    transition: color 0.3s;
}

.action-item:hover i {
    color: #ffd700;
}

/* Enquiry Button */
.enquiry-btn {
    background-color: #ffd700;
    color: #0c2a5c;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    white-space: nowrap; 
}

.enquiry-btn:hover {
    background-color: #074583;
}

/* Hidden desktop search dropdown removed, replaced by full overlay */
/* ... */

/* User Account Dropdown (Login/Signup on Hover) */
.user-account:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 120px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(10px);
    z-index: 10;
}

.user-dropdown a {
    color: #333;
    padding: 8px 15px;
    transition: background-color 0.2s;
}

.user-dropdown a:hover {
    background-color: #f4f4f4;
    color: #0c2a5c;
}

/* Mobile Toggle Button (Hidden on Desktop) */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* --- 2. Full-Width Search Overlay Styling --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Black overlay color */
    background: rgba(0, 0, 0, 0.9); 
    z-index: 1050;
    /* Center the content */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Hidden by default, shown by JS */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.search-popup-content {
    width: 90%; /* Occupy most of the width */
    max-width: 700px; /* Max width for central alignment */
    display: flex;
    align-items: center;
}

.search-input {
    flex-grow: 1;
    padding: 15px 20px;
    font-size: 18px;
    border: none;
    border-bottom: 2px solid #ffd700;
    background: none;
    color: white;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-submit {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    transition: color 0.2s;
}

/* --- Mobile Menu (Off-canvas) --- */
/* (Keep previous mobile menu CSS for responsiveness) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px; 
    width: 300px;
    height: 100%;
    background-color: #0c2a5c;
    color: white;
    z-index: 1010;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.4s ease-in-out; 
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1005;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-close {
    text-align: right;
    margin-bottom: 20px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a {
    display: block;
    padding: 10px 0;
    color: white;
}

.mobile-menu ul li .hm-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-top: none;
    display: none; 
}

.mobile-menu ul li.open > .hm-dropdown {
    display: block;
}

.mobile-menu ul li .hm-dropdown li a {
    padding-left: 20px;
}

.mobile-menu ul li .hm-sub_dropdown {
    left: 0;
}

.mobile-menu ul li .hm-sub_dropdown li a {
    padding-left: 40px;
}

/* --- Media Queries for Responsiveness (Desktop to Mobile) --- */
@media (max-width: 992px) {
    .main-nav {
        display: none; 
    }

    .menu-toggle {
        display: block; 
        order: 4; 
        margin-left: 10px;
    }

    .header-actions {
        gap: 15px;
    }
    
    .enquiry-btn {
        padding: 6px 10px; 
        font-size: 14px;
    }

    #bookEnquiryBtn{
        display: block !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .header-actions {
        gap: 10px;
    }
    
    .enquiry-btn {
        display: none;
    }
}

#button{
    background-color: #ffd700;
    color: black;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 17px;
}

#button:hover{
    color: white;
    background-color: #0c2a5c;
}



.Ashoka-faqs {
  background: #f9fafb;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.Ashoka-faqs .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 32px;
  color: #0e1d40;
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-header p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #f2bf33;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  color: #0e1d40;
  font-weight: 500;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease;
}

.faq-icon {
  font-size: 22px;
  font-weight: 600;
  color: #f2bf33;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #0e1d40;
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 26px;
  }
  .faq-question {
    font-size: 16px;
    padding: 18px;
  }
  .faq-answer p {
    font-size: 14px;
  }
}

.ashoka-why {
  background: #fff;
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.ashoka-why .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 {
  font-size: 32px;
  color: #0e1d40;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-header h2 span {
  color: #f2bf33;
}

.why-header p {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.why-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-item {
  background: #f9fafb;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}

.why-item:hover {
  background: #0e1d40;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.why-item:hover .why-icon {
  background: #f2bf33;
  color: #0e1d40;
  transform: scale(1.1);
}

.why-icon {
  background: #0e1d40;
  color: #f2bf33;
  font-size: 26px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0e1d40;
  transition: 0.3s ease;
}

.why-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  transition: 0.3s ease;
}

.why-item:hover h4,
.why-item:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .why-header h2 {
    font-size: 28px;
  }
  .why-wrapper {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .why-item {
    padding: 30px 20px;
  }
  .why-icon {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
  .why-item h4 {
    font-size: 17px;
  }
  .why-item p {
    font-size: 14px;
  }
}



.ashoka-about-section {
  font-family: "Poppins", sans-serif;
  color: #0e1d40;
}

/* ===== Section 1: Intro ===== */
.about-intro {
  background: #fff;
  padding: 80px 0;
}

.about-intro-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.about-content {
  flex: 1 1 50%;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0e1d40;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  background: #f2bf33;
  color: #0e1d40;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #0e1d40;
  color: #fff;
}

/* ===== Section 2: Values ===== */
.about-values {
  background: #f9fafb;
  padding: 80px 0;
  text-align: center;
}

.values-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #0e1d40;
}

.values-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  border: 1px solid #eee;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: #f2bf33;
}

.value-icon {
  background: #0e1d40;
  color: #f2bf33;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* ===== Section 3: Journey ===== */
.about-journey {
  background: #fff;
  padding: 80px 0;
}

.journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.journey-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: #0e1d40;
  margin-bottom: 10px;
}

.journey-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #f2bf33;
}

.timeline-item {
  position: relative;
  margin: 40px 0;
}

.timeline-content {
  background: #f9fafb;
  border-radius: 10px;
  padding: 25px 30px;
  position: relative;
  width: 45%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content.left {
  left: 0;
}

.timeline-content.right {
  left: 55%;
}

.timeline-content h4 {
  color: #0e1d40;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #0e1d40;
  border: 3px solid #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 992px) {
  .about-intro-wrapper {
    flex-direction: column;
  }
  .timeline-content,
  .timeline-content.right,
  .timeline-content.left {
    width: 100%;
    left: 0;
  }
  .timeline::before {
    left: 8px;
  }
  .timeline-item::after {
    left: 8px;
    transform: none;
  }
}




.ashoka-contact-us {
  background: #fff;
  padding: 80px 0;
  color: #0e1d40;
}

.ashoka-contact-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0e1d40;
  margin-bottom: 10px;
}

.contact-header h2 span {
  color: #f2bf33;
}

.contact-header p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Layout ===== */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* ===== Left Info ===== */
.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9fafb;
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.4s ease;
}

.info-card:hover {
  background: #0e1d40;
  color: #fff;
  border-color: #f2bf33;
}

.info-icon {
  font-size: 22px;
  background: #f2bf33;
  color: #0e1d40;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s ease;
}

.info-card:hover .info-icon {
  background: #fff;
  color: #0e1d40;
}

.info-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
}

.info-content p,
.info-content a {
  font-size: 15px;
  color: inherit;
  line-height: 1.7;
  text-decoration: none;
}

/* ===== Right Form ===== */
.contact-form {
  flex: 1 1 55%;
  background: #f9fafb;
  padding: 40px 35px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  color: #333;
  transition: 0.3s ease;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f2bf33;
  box-shadow: 0 0 6px rgba(242, 191, 51, 0.3);
}

.contact-btn {
  background: #f2bf33;
  color: #0e1d40;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #0e1d40;
  color: #fff;
}

/* ===== Map ===== */
.contact-map {
  margin-top: 70px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== Responsive Fixes ===== */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }
  .info-card {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 26px;
  }
  .contact-form {
    padding: 30px 20px;
    width: 100%;
  }
  .info-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .contact-btn {
    width: 100%;
    padding: 14px;
  }
}


.ashoka-wheels-blog {
  background: #fff;
  padding: 80px 0;
  color: #0e1d40;
}

.ashoka-wheels-blog .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: #0e1d40;
  margin-bottom: 12px;
}

.blog-header h2 span {
  color: #f2bf33;
}

.blog-header p {
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== Blog Grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.blog-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== Image ===== */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

/* ===== Overlay ===== */
.blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 29, 64, 0.75);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.read-more {
  background: #f2bf33;
  color: #0e1d40;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

.read-more:hover {
  background: #fff;
  color: #0e1d40;
}

/* ===== Content ===== */
.blog-content {
  padding: 25px 20px 30px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-meta i {
  color: #f2bf33;
  margin-right: 5px;
}

.blog-title a {
  color: #0e1d40;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.blog-title a:hover {
  color: #f2bf33;
}

.blog-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .blog-header h2 {
    font-size: 28px;
  }
  .blog-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .blog-image img {
    height: 200px;
  }
  .blog-title a {
    font-size: 17px;
  }
  .read-more {
    font-size: 14px;
    padding: 8px 18px;
  }
}





.ashoka-blog-detail {
  background: #fff;
  color: #0e1d40;
  padding: 80px 0;
}

.ashoka-blog-detail .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-header h1 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0e1d40;
  line-height: 1.4;
}

.blog-meta {
  color: #777;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blog-meta i {
  color: #f2bf33;
  margin-right: 5px;
}

/* ===== Featured Image ===== */
.blog-featured img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== Blog Content ===== */
.blog-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 10px;
  color: #0e1d40;
}

.blog-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.blog-content blockquote {
  background: #f9fafb;
  border-left: 4px solid #f2bf33;
  padding: 20px;
  font-style: italic;
  color: #0e1d40;
  border-radius: 8px;
  margin: 25px 0;
}

/* ===== Share ===== */
.blog-share {
  margin: 50px 0;
  text-align: center;
}

.blog-share span {
  font-weight: 600;
  margin-right: 15px;
  font-size: 16px;
}

.blog-share a {
  color: #fff;
  background: #0e1d40;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 6px;
  transition: 0.3s ease;
}

.blog-share a:hover {
  background: #f2bf33;
  color: #0e1d40;
}

/* ===== Related Posts ===== */
.related-posts {
  margin-top: 70px;
}

.related-posts h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.related-card {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-content {
  padding: 20px;
}

.related-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.related-content h4 a {
  color: #0e1d40;
  text-decoration: none;
  transition: 0.3s ease;
}

.related-content h4 a:hover {
  color: #f2bf33;
}

.related-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== Comment Form ===== */
.blog-comments {
  margin-top: 70px;
  background: #f9fafb;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.blog-comments h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0e1d40;
}

.comment-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #f2bf33;
  box-shadow: 0 0 6px rgba(242, 191, 51, 0.3);
}

.comment-btn {
  margin-top: 20px;
  background: #f2bf33;
  color: #0e1d40;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.comment-btn:hover {
  background: #0e1d40;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .blog-header h1 {
    font-size: 28px;
  }
  .related-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 24px;
  }
  .blog-content p {
    font-size: 15px;
  }
  .related-card img {
    height: 160px;
  }
  .comment-form .form-row {
    flex-direction: column;
  }
}


.ashoka-tyres {
  width: 100%;
  margin: 0;
  padding: 0;
}

.ashoka-tyres .container-fluid {
  padding: 0;
}

.ashoka-tyres img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==== Desktop View ==== */
.tyres-desktop {
  display: block;
}

.tyres-mobile {
  display: none;
}

/* ==== Mobile & Tablet View ==== */
@media (max-width: 991px) {
  .tyres-desktop {
    display: none;
  }
  .tyres-mobile {
    display: block;
  }
}