 
/* =======================
   BEAUTIFUL TESTIMONIAL SECTION
======================= */
.testimonial-section {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
}

.testimonial-section h2 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.testimonial-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #233d80;
  margin: 15px auto 0;
  border-radius: 2px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-card .quote-icon {
  font-size: 40px;
  color: #233d80;
  opacity: 0.2;
  position: absolute;
  top: 5px;
  right: 30px;
}

.testimonial-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .by {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #00709e;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 15px;
  border: 3px solid #233d80;
}

@media (max-width: 767px) {
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-card {
    margin-bottom: 30px;
  }
}




/* ============================
   ABOUT G SQUARE SECTION
============================ */
.about-section {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.about-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
  position: relative;
}

.about-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #233d80;
  margin: 15px auto 0;
  border-radius: 2px;
}

.about-counter {
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-counter:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: #233d80;
  transition: all 0.4s ease;
}

.about-counter:hover::before {
  left: 0;
}

.about-counter i {
  font-size: 40px;
  color: #00709e;
  margin-bottom: 15px;
  display: block;
}

.about-counter h3 {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.about-counter p {
  font-size: 15px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

@media (max-width: 767px) {
  .about-counter {
    margin-bottom: 30px;
  }
}



.salient-section {
  background: #f9fafb;
  padding: 80px 0;
}

.salient-section h2 {
  font-weight: 700;
  font-size: 36px;
  color: #222;
  margin-bottom: 50px;
  position: relative;
}

.salient-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #233d80;
  margin: 15px auto 0;
  border-radius: 2px;
}

.salient-box {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.salient-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.salient-box img {
  width:45px;
  height: 45px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.salient-box:hover img {
  transform: scale(1.1);
}

.salient-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .salient-section {
    padding: 60px 0;
  }
  .salient-box {
    margin-bottom: 30px;
  }
}



.section-heading {
  text-align: center;
  margin-bottom: 40px;
  
}

.section-title {
  position: relative;
  display: inline-block;  
  font-weight: 700;
  color: #0b1d4d; /* dark navy */
  line-height: 1.2;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px; /* distance below text */
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #233d80; /* blue underline */
  border-radius: 2px;
}


