/* Services Page Specific Styles */
@import url("base.css");

/* Services Hero Section */
.services-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.services-hero p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Enhanced Service Cards */
.services .service-card {
  position: relative;
  overflow: hidden;
}

.services .service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.services .service-card:hover::after {
  opacity: 1;
  animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #f9fafb;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.process-step i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.process-step p {
  color: #6b7280;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #2563eb;
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.pricing-card .price-period {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features i {
  color: #10b981;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 60px;
  }

  .services-hero h1 {
    font-size: 2.5rem;
  }

  .process-section,
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card.featured {
    transform: none;
  }
}


/* Detailed Services Section Styles */
.detailed-services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.detailed-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.detailed-services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.detailed-services .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.detailed-services .section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.detailed-services .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.detailed-services .highlight {
  color: #2563eb;
  position: relative;
}

.detailed-services .highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #eb1c22);
  border-radius: 2px;
}

.detailed-services .section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.detailed-service {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.detailed-service:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

.detailed-service .service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.detailed-service .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.detailed-service:hover .service-image img {
  transform: scale(1.05);
}

.detailed-service .service-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(235, 28, 34, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detailed-service:hover .service-image::after {
  opacity: 1;
}

.detailed-service .service-content {
  padding: 30px;
}

.detailed-service .service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  position: relative;
}

.detailed-service .service-content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #eb1c22);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.detailed-service:hover .service-content h3::after {
  width: 60px;
}

.detailed-service .service-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1rem;
}

.detailed-service .service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detailed-service .service-content ul li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.detailed-service .service-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2563eb;
  font-weight: bold;
  font-size: 14px;
}

.detailed-service:hover .service-content ul li {
  color: #334155;
}

.detailed-service .service-content ul li:hover {
  color: #2563eb;
}
section.process {
    padding: 75px 0;
}

.about-banner {
    padding-top: 95px;
    height: 350px;
    background: #0955ac;
    align-items: center;
    display: block;
    background-image: url(images/bim-image-02.jpg);
    position: relative;
}
.about-banner h1 {
    color: #ffffff;
    font-weight: 500;
}
.about-banner p {
    color: #fff;
}
nav.breadcrumb {
    color: #fff;
}
nav.breadcrumb a {
    color: #fff;
}
.page-header-content {
    display: inline-block;
    background: #00000087;
    padding: 20px;
    margin-top: 70px;
    font-weight: 300;
    border-radius: 7px;
}
section.values {
    margin-bottom: 50px;
}










/* Responsive Design */
@media (max-width: 768px) {
  .detailed-services {
    padding: 60px 0;
  }

  .detailed-services .section-header h2 {
    font-size: 2rem;
  }

  .detailed-services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .detailed-service .service-content {
    padding: 24px;
  }

  .detailed-service .service-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .detailed-services .container {
    padding: 0 16px;
  }

  .detailed-services .section-header {
    margin-bottom: 40px;
  }

  .detailed-services .section-header h2 {
    font-size: 1.8rem;
  }

  .detailed-service .service-image {
    height: 200px;
  }

  .detailed-service .service-content {
    padding: 20px;
  }
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detailed-service {
  animation: fadeInUp 0.6s ease forwards;
}

.detailed-service:nth-child(1) {
  animation-delay: 0.1s;
}
.detailed-service:nth-child(2) {
  animation-delay: 0.2s;
}
.detailed-service:nth-child(3) {
  animation-delay: 0.3s;
}
.detailed-service:nth-child(4) {
  animation-delay: 0.4s;
}
