body {
  background: #f8f9fa; 
}
.top-bar-link {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}

.top-bar-link:hover {
color: #f8f9fa;
text-decoration: none;
}

.request-quote-btn {
background: linear-gradient(145deg, #ffffff, #f0f4f8);
color: #2c3e50 !important;
padding: 8px 25px;
border-radius: 25px;
text-decoration: none;
display: inline-block;
margin-top: 4px;
transition: all 0.3s ease;
border: 2px solid #e0e7ed;
font-weight: 600;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}

.request-quote-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
border-color: #8c031a;
background: linear-gradient(145deg, #f8f9fa, #e9ecef);
}

.request-quote-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,0.3),
  transparent
);
transition: all 0.5s;
}

.request-quote-btn:hover::before {
left: 100%;
}

@media (max-width: 991px) {
.request-quote-btn {
  margin-top: 10px;
  padding: 8px 20px;
  font-size: 0.9em;
}
}
.top-bar {
  background: #333;
  color: #fff;
  padding: 12px 0;
  font-size: 0.9rem;
}

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

.icon-circle {
  background: #444;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 18px;
  height: 18px;
}

.top-bar-content p {
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .top-bar {
      display: none;
  }
}


.history-section {
padding: 80px 20px;
background: #f8fafc;
}

.container {
max-width: 1200px;
margin: 0 auto;
}

.section-heading {
text-align: center;
font-size: 2.5rem;
color: #2d3748;
margin-bottom: 50px;
position: relative;
}

.section-heading::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: #c00;
}

.history-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
}

.image-container {
position: relative;
border-radius: 15px;
overflow: hidden;
aspect-ratio: 1/1;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}

.foundation-year {
position: absolute;
bottom: 20px;
left: 20px;
background: rgba(197, 48, 48, 0.9);
color: white;
padding: 10px 25px;
border-radius: 30px;
font-weight: 600;
}

.timeline {
position: relative;
padding-left: 30px;
}

.timeline::before {
content: '';
position: absolute;
left: 6px;
top: 10px;
height: calc(100% - 20px);
width: 2px;
background: #e2e8f0;
}

.timeline-item {
position: relative;
margin-bottom: 40px;
}

.timeline-marker {
position: absolute;
left: -34px;
top: 5px;
width: 20px;
height: 20px;
border: 3px solid #c00;
background: white;
border-radius: 50%;
}

.timeline-title {
color: #1a202c;
font-size: 1.4rem;
margin-bottom: 10px;
}

.timeline-text {
color: #4a5568;
line-height: 1.7;
margin: 0;
}

.journey-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 50px;
}

.stat-card {
background: white;
padding: 25px;
border-radius: 10px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
}

.stat-card:hover {
transform: translateY(-5px);
}

.stat-number {
color: #c00;
font-size: 2rem;
font-weight: 700;
margin-bottom: 5px;
}

.stat-label {
color: #718096;
font-size: 0.9rem;
}

@media (max-width: 1024px) {
.history-grid {
gap: 30px;
}
}

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

.section-heading {
font-size: 2rem;
}

.journey-stats {
grid-template-columns: 1fr;
}

.timeline::before {
left: 0;
}

.timeline-marker {
left: -24px;
}
}

@media (max-width: 480px) {
.history-section {
padding: 60px 15px;
}

.section-heading {
font-size: 1.8rem;
}

.foundation-year {
font-size: 0.9rem;
padding: 8px 20px;
}

.timeline {
padding-left: 25px;
}
}