.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;
}


.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: 20px 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('../images/Breadcrumimage.jpg') 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 {

  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;
}



/* services */

/* From Uiverse.io by SouravBandyopadhyay */
.servicecard-title {
  color: #262626;
  font-size: 1.5em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.small-desc {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  color: #452c2c;
}

.small-desc {
  font-size: 1em;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2em;
  height: 2em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #8e8b8b, #ff0009);
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.servicecard {
  display: block;
  position: relative;
  max-width: 300px;
  max-height: 320px;
  background-color: #f2f8f9;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
  font-family: Arial, Helvetica, sans-serif;
}

.servicecard:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #364a60, #384c6c);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.servicecard:hover:before {
  transform: scale(28);
}

.servicecard:hover .small-desc {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.servicecard:hover .servicecard-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}

.testimonials {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  position: relative;
}

.testimonials h2 {
  font-size: 32px;
  color: #136d9b;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.testimonials h2::after {
  content: "";
  display: block;
  margin: 8px auto 0;
  width: 60px;
  height: 3px;
  background: #136d9b;
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-style: italic;
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial i {
  font-size: 30px;
  color: #136d9b;
  margin-bottom: 15px;
}

.testimonial p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.testimonial h4 {
  font-size: 15px;
  color: #136d9b;
  font-weight: bold;
}

.testimonial-nav {
  margin-top: 20px;
}

.testimonial-nav span {
  cursor: pointer;
  font-size: 28px;
  margin: 0 15px;
  color: #136d9b;
  transition: color 0.3s;
}

.testimonial-nav span:hover {
  color: #0f577d;
}


/* cudtom footer */

.custom-footer {
    background: url('../images/footerbg.jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-overlay {
    background: rgb(27 60 83 / 76%); /* Adds opacity layer */
    padding: 60px 0 20px 0;
}

.custom-footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #234C6A;
    display: inline-block;
    padding-bottom: 5px;
}

.custom-footer p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #234C6A;
    transform: scale(1.2);
}

.footer-bottom {
    background: #234C6A;
    text-align: center;
    padding: 12px 0;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #fff;
}
/* === COMMON SERVICE PAGE STYLE === */
.service-section {
    padding: 60px 0;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.service-section .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-header h2 {
    color: #1B3C53;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

/* Two-column section with image + text */
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1 1 50%;
}

.service-text h3 {
    color: #234C6A;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #1B3C53;
    padding-left: 10px;
}

.service-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.service-img {
    flex: 1 1 45%;
    text-align: center;
}

.service-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Benefits, Lists, Why Choose Us */
.service-benefits,
.service-list,
.service-whyus {
    margin-bottom: 40px;
}

.service-benefits h3,
.service-list h3,
.service-whyus h3 {
    color: #234C6A;
    margin-bottom: 15px;
    font-weight: 600;
    border-left: 4px solid #1B3C53;
    padding-left: 10px;
}

.service-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-section ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 12px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.6;
}

.service-section ul li strong {
    color: #1B3C53;
}

/* Full-width bottom image */
.service-img-full {
    text-align: center;
    margin-top: 40px;
}

.service-img-full img {
    width: 100%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* AOS animations smooth transitions */
[data-aos] {
    transition: all 0.6s ease-in-out;
}

/* Responsive */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }

    .service-text, .service-img {
        flex: 1 1 100%;
        text-align: left;
    }

    .service-header h2 {
        font-size: 24px;
    }

    .service-section ul li {
        font-size: 14px;
    }
}


/* About Services Section */
.about-services {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
}

.about-services .service-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-services .service-header h2 {
  color: #1B3C53;
  font-size: 28px;
  font-weight: 700;
}

.about-services .service-header p {
  color: #555;
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

/* Services Grid */
.about-services .services-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Service Card */
.about-services .service-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.about-services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-services .service-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.about-services .service-card h3 {
  color: #234C6A;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-services .service-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
}

.about-services .service-link {
  text-decoration: none;
  color: #fff;
  background: #1B3C53;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s;
}

.about-services .service-link:hover {
  background: #234C6A;
}


ul li a {
  position: relative;
  color: #234C6A;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 500;
  transition: color 0.3s;
}

ul li a:hover {
  color: #1B3C53;
}

ul li a.active {
  color: #1B3C53;
  font-weight: 600;
}

ul li a.active::before,
ul li a.active::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 15px;
  border: 3px solid #1B3C53;
}

ul li a.active::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

ul li a.active::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
