/* Looking Ahead - Balanced */
.looking-ahead-balanced {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #E8E9EB;
}

.ahead-box {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(90, 97, 105, 0.1);
  border: 2px solid #E8E9EB;
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8559 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.icon-circle i {
  font-size: 2rem;
  color: #ffffff;
}

.ahead-box .top-label {
  color: #5A6169;
}

.ahead-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2B2D30;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.ahead-box p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5A6169;
  margin-bottom: 1.2rem;
  text-align: left;
}

.ahead-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .image-box {
    margin-bottom: 2rem;
  }
  
  .content-box h2,
  .ahead-box h2 {
    font-size: 2rem;
  }
  
  .year-badge {
    bottom: 15px;
    right: 15px;
    padding: 1.2rem 1.5rem;
  }
  
  .year-badge span {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {

  .content-box h2,
  .ahead-box h2 {
    font-size: 1.75rem;
  }
  
  .feature {
    padding: 0.8rem;
  }
  
  .feature i {
    font-size: 1.3rem;
  }
  
  .feature p {
    font-size: 0.95rem;
  }
  
  .ahead-box {
    padding: 1.5rem;
  }
  
  .icon-circle {
    width: 65px;
    height: 65px;
  }
  
  .icon-circle i {
    font-size: 1.75rem;
  }
  
  .ahead-box p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  
  .content-box {
    padding: 0;
  }
  
  .content-box h2,
  .ahead-box h2 {
    font-size: 1.5rem;
  }
}




  
    /* Minimal Journey Section */
.journey-minimal {
  background: #ffffff;
  padding: 5rem 0;
  position: relative;
}

.journey-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35 0%, #5A6169 100%);
}

/* Minimal Timeline */
.minimal-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 180px;
}

/* Vertical Line */
.minimal-timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #E8E9EB;
}

/* Timeline Entry */
.timeline-entry {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.timeline-entry:nth-child(1) { animation-delay: 0.1s; }
.timeline-entry:nth-child(2) { animation-delay: 0.2s; }
.timeline-entry:nth-child(3) { animation-delay: 0.3s; }
.timeline-entry:nth-child(4) { animation-delay: 0.4s; }
.timeline-entry:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

/* Entry Year */
.entry-year {
  position: absolute;
  left: -185px;
  top: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #5A6169;
  width: 120px;
  text-align: right;
}

.timeline-entry.current .entry-year {
  color: #FF6B35;
}

/* Timeline Dot */
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #5A6169;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #E8E9EB;
}

.timeline-entry.current::before {
  background: #FF6B35;
  width: 16px;
  height: 16px;
  top: 6px;
  left: -52px;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
  }
}

/* Entry Content */
.entry-content {
  background: #ffffff;
  padding: 0.5rem 0;
}

.entry-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #2B2D30;
  margin-bottom: 0.8rem;
}

.entry-content p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #5A6169;
  margin-bottom: 0;
}

/* Journey Footer */
.journey-footer {
  border-top: 2px solid #E8E9EB;
}

.journey-footer p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .minimal-timeline {
    padding-left: 140px;
  }
  
  .entry-year {
    left: -160px;
    width: 100px;
    font-size: 1.3rem;
  }
  
  .minimal-timeline::before {
    left: 100px;
  }
  
  .timeline-entry::before {
    left: -44px;
  }
  
  .timeline-entry.current::before {
    left: -46px;
  }
}

@media (max-width: 767.98px) {
  .minimal-timeline {
    padding-left: 50px;
  }
  
  .minimal-timeline::before {
    left: 20px;
  }
  
  .entry-year {
    position: relative;
    left: 0;
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
  
  .timeline-entry::before {
    left: -36px;
  }
  
  .timeline-entry.current::before {
    left: -38px;
  }
  
  .entry-content h4 {
    font-size: 1.25rem;
  }
  
  .entry-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .journey-minimal {
    padding: 3rem 0;
  }
  
  .minimal-timeline {
    padding-left: 40px;
  }
  
  .minimal-timeline::before {
    left: 15px;
  }
  
  .timeline-entry::before {
    left: -31px;
    width: 10px;
    height: 10px;
  }
  
  .timeline-entry.current::before {
    left: -33px;
    width: 14px;
    height: 14px;
  }
  
  .entry-year {
    font-size: 1.1rem;
  }
}




    /* Map Container */
.contact .map-container {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(244, 196, 48, 0.2);
  width: 100%;
}

.contact .map-container iframe {
  display: block;
  filter: grayscale(30%) brightness(0.7);
  transition: filter 0.3s ease;
  width: 100%;
}

.contact .map-container:hover iframe {
  filter: grayscale(0%) brightness(1);
}

.contact .map-overlay-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9rem;
  border: 1px solid rgba(228, 126, 32, 0.3);
}

.contact .map-overlay-label i {
  color: var(--accent-color);
  font-size: 1.125rem;
}




    /* *********************** */
/* Our Clients section */
/* *********************** */

/* Client Categories */
.client-category {
  margin-bottom: 60px;
}

/* Category Headers */
.category-header {
  margin-bottom: 40px;
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #d19000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-title {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.category-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 1rem;
}

/* Client Cards */
.clients-grid {
  margin-bottom: 20px;
}

.client-card {
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(242, 169, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color);
}

.client-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}

.client-logo img {
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover .client-logo img {
  transform: scale(1.1);
}

.client-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.3;
  margin-top: auto;
}

/* Client Stats */
.client-stats {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Alternative Layout - Logo Carousel Style */
.client-carousel {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.carousel-track {
  display: inline-flex;
  animation: scroll 30s linear infinite;
  gap: 40px;
  align-items: center;
}

.carousel-item {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(242, 169, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.carousel-item img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-150px * 10 - 400px)); }
}

/* Responsive Design */
@media (max-width: 992px) {
  .category-title {
    font-size: 1.5rem;
  }
  
  .client-card {
    padding: 20px 10px;
  }
  
  .client-logo {
    height: 70px;
    margin-bottom: 12px;
  }
  
  .client-logo img {
    max-height: 60px;
  }
  
  .client-name {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .category-icon {
    width: 60px;
    height: 60px;
  }
  
  .category-icon i {
    font-size: 1.5rem;
  }
  
  .category-title {
    font-size: 1.3rem;
  }
  
  .category-subtitle {
    font-size: 0.9rem;
  }
  
  .client-card {
    padding: 15px 8px;
  }
  
  .client-logo {
    height: 60px;
    margin-bottom: 10px;
  }
  
  .client-logo img {
    max-height: 50px;
  }
  
  .client-name {
    font-size: 0.75rem;
  }
  
  .stat-number {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .client-category {
    margin-bottom: 40px;
  }
  
  .category-header {
    margin-bottom: 30px;
  }
  
  .client-card {
    margin-bottom: 15px;
  }
  
  .client-stats {
    padding: 2rem !important;
  }
}

/* Loading Animation for Images */
.client-logo img {
  opacity: 0;
  animation: fadeInLogo 0.5s ease forwards;
}

@keyframes fadeInLogo {
  to {
    opacity: 1;
  }
}

/* Staggered Animation Delays */
.client-card:nth-child(1) .client-logo img { animation-delay: 0.1s; }
.client-card:nth-child(2) .client-logo img { animation-delay: 0.2s; }
.client-card:nth-child(3) .client-logo img { animation-delay: 0.3s; }
.client-card:nth-child(4) .client-logo img { animation-delay: 0.4s; }
.client-card:nth-child(5) .client-logo img { animation-delay: 0.5s; }
.client-card:nth-child(6) .client-logo img { animation-delay: 0.6s; }


.card-gray:hover{
  background-color: #2B2D30 !important;
}

.card-gray:hover h5{
  color: #F9F7F7 !important;
}


.card-orange:hover{
  background: #F7672E !important;
  border-color: #2B2D30 !important;
}

.card-orange:hover i{
  color: #F9F7F7 !important;
}





        /* Services Section */
#services {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* #services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #5A6169 100%);
} */

/* Service Card */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(90, 97, 105, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(90, 97, 105, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.2);
}

/* Service Media */
.service-media {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #5A6169 0%, #2B2D30 100%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-card:hover .service-media img {
  transform: scale(1.1) rotate(2deg);
}

/* Gradient Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 45, 48, 0) 0%,
    rgba(43, 45, 48, 0.4) 50%,
    rgba(43, 45, 48, 0.8) 100%
  );
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 0.85;
}

/* Service Tag */
.service-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8559 100%);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
  letter-spacing: 0.5px;
  z-index: 2;
  transition: all 0.3s ease;
}

.service-tag.alt {
  background: linear-gradient(135deg, #5A6169 0%, #2B2D30 100%);
  box-shadow: 0 8px 24px rgba(90, 97, 105, 0.35);
}

.service-card:hover .service-tag {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.45);
}

.service-card:hover .service-tag.alt {
  box-shadow: 0 12px 30px rgba(90, 97, 105, 0.45);
}

/* Service Body */
.service-body {
  padding: 2.5rem 2rem;
  position: relative;
  background: #ffffff;
}

/* Service Icon */
.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35 0%, #ff8559 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.service-icon.alt {
  background: linear-gradient(135deg, #5A6169 0%, #2B2D30 100%);
  box-shadow: 0 8px 20px rgba(90, 97, 105, 0.25);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.05);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
}

.service-card:hover .service-icon.alt {
  box-shadow: 0 12px 28px rgba(90, 97, 105, 0.35);
}

/* Service Title */
.service-body h3 {
  position: relative;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2B2D30;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.service-body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #FF6B35 0%, #ff8559 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.service-card:hover .service-body h3::after {
  width: 120px;
}

/* Service Description */
.service-body p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #5A6169;
}

.service-body h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.service-body h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #FF6B35;
  border-radius: 2px;
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #5A6169;
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.service-list li i {
  color: #FF6B35;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.service-list li:hover {
  padding-left: 8px;
  color: #2B2D30;
}

.service-list li:hover i {
  color: #ff8559;
  transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .service-media {
    min-height: 280px;
  }
  
  .service-body {
    padding: 2rem 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .service-media {
    min-height: 240px;
  }
  
  .service-body {
    padding: 1.5rem 1.25rem;
  }
  
  .service-tag {
    padding: 8px 16px;
    font-size: 0.8rem;
    left: 15px;
    bottom: 15px;
  }
  
  .service-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  #services {
    padding: 3rem 0 !important;
  }
  
  .service-body h3 {
    font-size: 1.25rem;
  }
  
  .service-icon {
    width: 55px;
    height: 55px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
}

/* Accessibility */
.service-card:focus-within {
  outline: 3px solid #FF6B35;
  outline-offset: 4px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}
