@charset "utf-8";
/* CSS Document */

.services-section {
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  padding: 80px 20px;
}

.services-section .section-title {
  text-align: center;
  font-size: 36px;
  color: #002855;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Card Styling */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Icon Styling */
.service-card .icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 20px;
}

.service-card .icon i {
  font-size: 36px;
  color: #fff;
}

/* Individual Icon Colors */
.icon-blue {
  background-color: #007bff;
}

.icon-purple {
  background-color: #6f42c1;
}

.icon-pink {
  background-color: #e83e8c;
}

.icon-orange {
  background-color: #fd7e14;
}

.icon-green {
  background-color: #28a745;
}

.icon-red {
  background-color: #dc3545;
}

/* Text Styling */
.service-card h3 {
  font-size: 20px;
  color: #002855;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Link */
.read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056b3;
}
		.who-we-are {
  background: #f9f9f9;
  padding: 80px 20px;
}

.who-we-are {
  background: #f9f9f9;
  padding: 80px 20px;
}

.who-we-are .who-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}

.who-left, .who-right {
  flex: 1 1 500px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-left:hover, .who-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.who-we-are h2 {
  font-size: 28px;
  color: #002855;
  margin-bottom: 20px;
}

.who-we-are p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.who-right ul {
  list-style: none;
  padding: 0;
}

.who-right ul li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.who-right ul li i {
  color: #007bff;
  margin-right: 10px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
  .who-we-are .who-content {
    flex-direction: column;
  }
}
		
		.choose-us-section {
  background: linear-gradient(to bottom, #fff, #f9f9f9);
  padding: 80px 20px;
  text-align: center;
}

/* Titles */
.choose-us-section .section-title {
  font-size: 38px;
  color: #002855;
  font-weight: 700;
  margin-bottom: 10px;
}

.choose-us-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Card Styling */
.choose-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.choose-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.choose-card h3 {
  font-size: 20px;
  color: #002855;
  margin-top: 20px;
  margin-bottom: 15px;
}

.choose-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Icon Box */
.choose-card .icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.choose-card .icon i {
  color: #fff;
  font-size: 36px;
}

/* Icon Colors */
.icon-blue {
  background-color: #007bff;
}

.icon-purple {
  background-color: #6f42c1;
}

.icon-pink {
  background-color: #e83e8c;
}

.icon-orange {
  background-color: #fd7e14;
}

.icon-green {
  background-color: #28a745;
}

.icon-red {
  background-color: #dc3545;
}

/* Responsive */
@media (max-width: 991px) {
  .choose-us-section {
    padding: 60px 15px;
  }
}
	.solutions-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: #002855;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Grid Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Solution Card */
.solution-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
  font-size: 18px;
  color: #002855;
  margin: 20px 0 10px;
}

.solution-card p {
  color: #000000;
  font-size: 13px;
  xline-height: 1.6;
	font-weight: normal;
}

/* Icon Box */
.solution-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.solution-card .icon i {
  color: #fff;
  font-size: 24px;
}

/* Icon Colors */
.icon-blue { background-color: #007bff; }
.icon-purple { background-color: #6f42c1; }
.icon-pink { background-color: #e83e8c; }
.icon-orange { background-color: #fd7e14; }
.icon-green { background-color: #28a745; }
.icon-red { background-color: #dc3545; }

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}	

