/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background-color: #fafafa;
  color: #333;
}


/* Hero Section */
.hero {
  background: url("../images/about.png") no-repeat center/cover;
  color: #fff;
  padding: 100px 40px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 80px 40px;
  background: #fff;
  text-align: center;
}

.section:nth-child(even) {
  background: #f5f5f5;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.section p {
  font-size: 18px;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
}

/* Values Section */
.values {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.value-card .icon {
  font-size: 36px;
  margin-bottom: 15px;
  background: #0066cc;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.value-card h3 {
  color: #0066cc;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.value-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-item {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #0066cc;
  text-align: left;
  border-radius: 8px;
}

/* Team Section */
.team {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  max-width: 220px;
}

.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #222;
  color: #eee;
  padding: 40px;
  text-align: center;
}
/* What We Do Section */
.what-we-do {
  background: linear-gradient(135deg, #f9f9f9, #eef5ff);
  padding: 100px 40px;
  text-align: center;
}

.what-we-do h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 800;
}

.what-we-do .subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card i {
  font-size: 45px;
  color: #0066cc;
  margin-bottom: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 16px;
  color: #666;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card:hover i {
  color: #004d99;
  transform: scale(1.2);
}

/* Fancy Background Hover */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(0,102,204,0.1), transparent 70%);
  transition: opacity 0.4s;
  opacity: 0;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card * {
  position: relative;
  z-index: 1;
}
.services-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9fafc;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.12);
}

.service-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #007bff;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}.about-section {
  padding: 70px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content {
  text-align: left;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
  position: relative;
}

.about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #007bff;
  margin-top: 8px;
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

.highlight {
  color: #007bff;
  font-weight: 600;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content {
    text-align: center;
  }
}