.page-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.page-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;   /* underline length */
    height: 3px;   /* underline thickness */
    background-color: #3498db; /* underline color */
    border-radius: 2px;
}

.services {
    text-align: center;
    padding: 0px 0px;
    background: #f9f9f9;
}

.services h2 {
    font-size: 32px;
    color: #136d9b;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 60px;
    height: 3px;
    background: #136d9b;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card h3 a {
    text-decoration: none;
    color: #136d9b;
}

.service-card h3 a:hover {
    text-decoration: underline;
}

.service-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #333;
    margin-bottom: 20px;
}

.service-card ul li {
    margin-bottom: 2px;
    font-size: 15px;
}

.btn-service {
    display: inline-block;
    background: #136d9b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #0f577d;
}


.team {
    text-align: center;
    padding: 50px 20px;
    background: #fdfdfd;
}

.team h2 {
    font-size: 32px;
    color: #136d9b;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.team h2::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 60px;
    height: 3px;
    background: #136d9b;
}

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

.team-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #136d9b;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 20px;
    color: #136d9b;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
}

.team-card span {
    font-size: 14px;
    color: #555;
    display: block;
}


.why-choose {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
}

.why-choose h2 {
    font-size: 32px;
    color: #136d9b;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.why-choose h2::after {
    content: "";
    display: block;
    margin: 8px auto 0;
    width: 60px;
    height: 3px;
    background: #136d9b;
}

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

.why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.why-choose .icon {
    font-size: 40px;
    color: #136d9b;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    color: #136d9b;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #333;
}


.breadcrumb-section {
  background: url('../slides/Slider1.png') center/cover no-repeat;
  height: 170px;
  display: flex;
  align-items: center;

  margin-top: 100px;
}

.breadcrumb {
  font-size: 15px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.85); /* semi-transparent for readability */
  border-radius: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  text-decoration: none;
  color: #136d9b;
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #0f577d;
}

.breadcrumb span {
  margin: 0 8px;
  color: #555;
}

.breadcrumb .current {
  color: #333;
  font-weight: 600;
}


.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #136d9b;
  font-weight: bold;
}

.faq-container {
  border-radius: 8px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #136d9b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f5faff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.4s ease, padding 0.3s;
  background: #fafafa;
}

.faq-answer p, .faq-answer ul {
  margin: 15px 0;
  font-size: 16px;
  color: #333;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  transition: transform 0.3s;
}


.testimonials {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 28px;
  color: #136d9b;
  margin-bottom: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin: 15px auto;
  max-width: 600px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 16px;
  color: #444;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-rating {
  color: #f5a623; /* star gold */
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-author {
  font-size: 16px;
  color: #136d9b;
  font-weight: bold;
  margin: 0;
}

.features-list {
  list-style: none;
  max-width: 700px;
 
  padding: 0;
}

.features-list li {
  font-size: 16px;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.features-list i {
  color: #136d9b;
  margin-right: 10px;
}

.highlight-text {
  text-align: center;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.highlight-text h3 {
  color: #444;
  margin-bottom: 15px;
}

.highlight-text p {
  font-size: 16px;
  color: #555;
}

.consultation-cta {
  text-align: center;
  background: #136d9b;
  color: #fff;
  padding: 25px;
  border-radius: 12px;
}

.consultation-cta h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.consultation-cta a {
  color: #ffdd57;
  font-weight: bold;
  text-decoration: none;
}
.consultation-cta a:hover {
  text-decoration: underline;
}


.contact-us {
  background: #f9f9f9;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #136d9b;
  text-align: center;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-info h3 {
  color: #136d9b;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
  color: #333;
}

.contact-info a {
  color: #136d9b;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form button {
  background: #136d9b;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0f5578;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.service-section {
  background: #ffffff;
  padding: 60px 40px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.8;
  color: #2c2c2c;
  border-bottom: 1px solid #e5e5e5;
}

.service-section .section-title {
  font-size: 28px;
  font-weight: 700;
  color: #136d9b;
  margin-bottom: 20px;
  text-align: left;   /* aligned left */
}

.service-section h3 {
  font-size: 22px;
  color: #0f5578;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: left;   /* aligned left */
}

.service-section p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  text-align: left;   /* aligned left */
}

.service-section .services-list,
.service-section .why-choose {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.service-section .services-list li,
.service-section .why-choose li {
  background: #f9fcfd;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-left: 4px solid #136d9b;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: left;   /* aligned left */
}

.service-section .services-list li:hover,
.service-section .why-choose li:hover {
  background: #e6f3f9;
  transform: translateX(4px);
}

.service-section .services-list li strong {
  color: #136d9b;
  font-size: 15.5px;
}

.service-section .cta-box {
  margin-top: 50px;
  padding: 25px 30px;
  background: #136d9b;
  color: #fff;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-section .cta-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.service-section .cta-box p {
  font-size: 16px;
  margin: 0;
}

.service-section .cta-box a {
  color: #ffdf5c;
  font-weight: 600;
  text-decoration: none;
}

.service-section .cta-box a:hover {
  text-decoration: underline;
}

.tick-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.tick-list li::before {
  content: "\f00c"; /* Font Awesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #2e8b57; /* green tick */
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
}
