/* ============================================================
   A1Aqua Water Purifier — Site-wide custom styles (newstyle.css)
   ------------------------------------------------------------
   Consolidates ALL formerly inline (page-level) CSS:
     • index.html  : WhatsApp buttons, testimonials carousel,
                     floating WhatsApp, FAQ accordion
     • about.html  : intro/story, mission & vision, features band,
                     FAQ variant
   Plus new styles for: contact, gallery, products, projects,
   testimonials and all service detail pages.
   Brand palette: navy #0a2565 · blue #3197db · orange #ff9f1f
                  whatsapp green #25d366 · text #6b6b6b / #000
   ============================================================ */

/* ------------------------------------------------------------
   0. Base niceties
   ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Generic muted section background */
.bg-muted {
  background-color: #f7fafd;
}

/* Global sub-title used inside .section-title across new pages */
.section-title span.sub-title {
  display: inline-block;
  color: #3197db;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Page title banner fallback (matches theme asset) */
.page-title-area.bg-1 {
  background-image: url("../images/page-title-bg/breadcrumb-banner.png");
  background-position: center center;
  background-size: cover;
}

/* ------------------------------------------------------------
   1. Equal-height product/service slider cards
   ------------------------------------------------------------ */
.professional-services {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.professional-services-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.professional-services-content .read-more {
  margin-top: auto;
}

/* ------------------------------------------------------------
   2. WhatsApp inquiry button (next to "View Product")
   ------------------------------------------------------------ */
.professional-services-content .product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.professional-services-content .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  transition: all ease 0.3s;
}

.professional-services-content .whatsapp-btn:hover {
  background-color: #1ebe5b;
  color: #fff;
  transform: scale(1.08);
}

.professional-services-content .whatsapp-btn i {
  line-height: 1;
}

/* ------------------------------------------------------------
   3. Floating WhatsApp button (site-wide quick contact)
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  right: 3%;
  bottom: 95px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-float i {
  color: #fff;
  font-size: 28px;
}

/* Green WhatsApp pill button (service pages / product cards) */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 30px;
  transition: all ease 0.3s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5b;
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp i {
  font-size: 19px;
  line-height: 1;
}

/* ------------------------------------------------------------
   4. Testimonials carousel (single row, arrows, no images)
   ------------------------------------------------------------ */
.testimonials-carousel-area .single-testimonials.style-two {
  text-align: left;
  margin: 5px 10px 40px;
  height: calc(100% - 40px);
}

.testimonials-carousel-area .single-testimonials.style-two p {
  border-bottom: none;
  padding-bottom: 0;
  font-size: 15px;
  line-height: 1.8;
}

.testimonials-carousel-area .testimonials-name {
  margin-top: 15px;
  border-top: 1px solid #ebebeb;
  padding-top: 15px;
}

.testimonials-carousel-area .testimonials-name h3 {
  font-size: 17px;
  margin-bottom: 2px;
  color: #0a2565;
}

.testimonials-carousel-area .testimonials-name span {
  font-size: 14px;
  color: #6b6b6b;
}

.testimonials-carousel-area .quote-icon {
  font-size: 40px;
  color: #ff9f1f;
  margin-bottom: 10px;
  display: block;
}

.testimonials-carousel-area .owl-theme .owl-nav {
  margin-top: 0 !important;
}

.testimonials-carousel-area .owl-theme .owl-nav .owl-prev,
.testimonials-carousel-area .owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  background-color: transparent;
}

.testimonials-carousel-area .owl-theme .owl-nav .owl-prev {
  left: -15px;
}

.testimonials-carousel-area .owl-theme .owl-nav .owl-next {
  right: -15px;
}

.testimonials-carousel-area .owl-theme .owl-nav .owl-prev i,
.testimonials-carousel-area .owl-theme .owl-nav .owl-next i {
  color: #0a2565;
  border: 1px solid #0a2565;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  transition: all ease 0.5s;
}

.testimonials-carousel-area .owl-theme .owl-nav .owl-prev:hover i,
.testimonials-carousel-area .owl-theme .owl-nav .owl-next:hover i {
  background-color: #0a2565;
  color: #fff;
}

/* ------------------------------------------------------------
   5. FAQ accordion (site-wide)
   ------------------------------------------------------------ */
.a1aqua-faq-area {
  background-color: #fff;
}

/* Muted variant (About page) */
.a1aqua-faq-area.faq-muted {
  background-color: #f7fafd;
  padding: 50px 0;
}

.a1aqua-faq-area .section-title {
  margin-bottom: 45px;
}

.a1aqua-faq-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}

.a1aqua-faq-item {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow ease 0.3s;
}

.a1aqua-faq-item:last-child {
  margin-bottom: 0;
}

.a1aqua-faq-item.active {
  box-shadow: 0 5px 25px 3px rgba(10, 37, 101, 0.12);
}

.a1aqua-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 25px;
  cursor: pointer;
  user-select: none;
}

.a1aqua-faq-question h3 {
  font-size: 17px;
  margin: 0;
  color: #0a2565;
  font-weight: 600;
  line-height: 1.5;
}

.a1aqua-faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #0a2565;
  color: #0a2565;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all ease 0.3s;
}

.a1aqua-faq-item.active .a1aqua-faq-icon {
  background-color: #0a2565;
  color: #fff;
  transform: rotate(135deg);
}

.a1aqua-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height ease 0.35s;
}

.a1aqua-faq-answer p {
  margin: 0;
  padding: 0 25px 22px;
  color: #000;
  font-size: 15px;
  line-height: 1.8;
}

/* ------------------------------------------------------------
   6. About page — Company introduction / Our story
   ------------------------------------------------------------ */
.a1aqua-intro-area {
  background-color: #f7fafd;
  padding: 50px 0 50px;
}

.a1aqua-intro-content span.sub-title {
  display: inline-block;
  color: #3197db;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}

.a1aqua-intro-content span.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background-color: #3197db;
}

.a1aqua-intro-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a2565;
  margin-bottom: 18px;
  line-height: 1.35;
}

.a1aqua-intro-content p {
  color: #000;
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.a1aqua-intro-content .badge-since {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0a2565;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.a1aqua-intro-content .badge-since i {
  color: #3197db;
  font-size: 18px;
}

.a1aqua-intro-highlight {
  background-color: #fff;
  border-left: 4px solid #3197db;
  border-radius: 6px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 22px 25px;
  margin-top: 10px;
}

.a1aqua-intro-highlight h4 {
  font-size: 16.5px;
  color: #0a2565;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.a1aqua-intro-highlight h4 i {
  color: #3197db;
  font-size: 20px;
}

.a1aqua-intro-highlight p {
  margin-bottom: 0;
  font-size: 14.5px;
}

/* Application / customization chips (also reused on service pages) */
.a1aqua-customization-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.a1aqua-customization-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #eef2fb;
  color: #0a2565;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 30px;
}

.a1aqua-customization-tags span i {
  color: #25d366;
  font-size: 17px;
}

/* ------------------------------------------------------------
   7. About page — Mission & Vision
   ------------------------------------------------------------ */
.a1aqua-mission-vision-area {
  padding: 50px 0 50px;
  background-color: #fff;
}

.a1aqua-mv-card {
  background-color: #f7fafd;
  border-radius: 8px;
  padding: 35px 30px;
  height: 100%;
  margin-bottom: 30px;
  transition: all ease 0.3s;
  border-top: 3px solid transparent;
}

.a1aqua-mv-card:hover {
  box-shadow: 0 10px 30px rgba(10, 37, 101, 0.1);
  border-top: 3px solid #3197db;
  transform: translateY(-5px);
}

.a1aqua-mv-card .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #0a2565;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.a1aqua-mv-card .icon i {
  color: #fff;
  font-size: 30px;
}

.a1aqua-mv-card h3 {
  font-size: 21px;
  color: #0a2565;
  font-weight: 700;
  margin-bottom: 14px;
}

.a1aqua-mv-card p {
  color: #000;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   8. About page — Dark features band (experience / technicians /
      genuine spare parts). Reused on service pages too.
   ------------------------------------------------------------ */
.a1aqua-features-area {
  background-color: #0a2565;
  padding: 90px 0 60px;
  position: relative;
}

.a1aqua-features-area .section-title span.sub-title {
  color: #3197db;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.a1aqua-features-area .section-title h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

.a1aqua-feature-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  margin-bottom: 30px;
  transition: all ease 0.3s;
}

.a1aqua-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.a1aqua-feature-box .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #eef2fb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.a1aqua-feature-box .icon i {
  color: #3197db;
  font-size: 34px;
}

.a1aqua-feature-box h3 {
  font-size: 19px;
  color: #0a2565;
  font-weight: 700;
  margin-bottom: 12px;
}

.a1aqua-feature-box p {
  color: #6b6b6b;
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 0;
}

.a1aqua-feature-box .stat-number {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #0a2565;
  margin-bottom: 6px;
}

.a1aqua-feature-box .stat-number span {
  color: #3197db;
}

/* Light version of feature boxes on muted background */
.bg-muted .a1aqua-feature-box {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.04);
}

/* ------------------------------------------------------------
   9. Service detail pages
   ------------------------------------------------------------ */
/* Lead paragraph under page headings */
.service-lead {
  color: #000;
  font-size: 15.5px;
  line-height: 1.9;
}

/* Two-column checklist */
.check-list-2col {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
}

.check-list-2col li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #000;
  font-size: 15px;
  line-height: 1.7;
}

.check-list-2col li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #25d366;
  font-size: 19px;
}

/* Navy side card beside service overview */
.service-side-card {
  background-color: #0a2565;
  border-radius: 8px;
  padding: 40px 30px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.service-side-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.service-side-card .big-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #ff9f1f;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.service-side-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-side-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  position: relative;
  z-index: 1;
}

.service-side-card ul li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14.5px;
  color: #dbe6ff;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.service-side-card ul li:last-child {
  border-bottom: none;
}

.service-side-card ul li i {
  color: #25d366;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.service-side-card .btn-whatsapp {
  position: relative;
  z-index: 1;
}

/* Numbered process steps */
.process-step {
  position: relative;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 30px;
}

.process-step .step-num {
  width: 58px;
  height: 58px;
  line-height: 58px;
  border-radius: 50%;
  background-color: #0a2565;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 16px;
  transition: all ease 0.3s;
}

.process-step:hover .step-num {
  background-color: #ff9f1f;
  transform: scale(1.06);
}

.process-step h4 {
  font-size: 17px;
  color: #0a2565;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14.5px;
  color: #6b6b6b;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Related services mini cards */
.related-card {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  padding: 26px 24px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all ease 0.3s;
  height: 100%;
  margin-bottom: 30px;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(10, 37, 101, 0.12);
}

.related-card i {
  font-size: 30px;
  color: #3197db;
}

.related-card h4 {
  font-size: 16.5px;
  color: #0a2565;
  font-weight: 700;
  margin: 12px 0 8px;
}

.related-card p {
  font-size: 13.5px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Navy gradient CTA band */
.a1aqua-cta-band {
  background: linear-gradient(180deg, #0a2565 0%, #16459e 100%);
  color: #fff;
  padding: 60px 0;
}

.a1aqua-cta-band h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.a1aqua-cta-band p {
  color: #dbe6ff;
  font-size: 15.5px;
  margin-bottom: 0;
}

.a1aqua-cta-band .cta-actions {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .a1aqua-cta-band .cta-actions {
    text-align: left;
    margin-top: 20px;
  }
}

/* ------------------------------------------------------------
   10. Products page
   ------------------------------------------------------------ */
.category-block-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.category-block-title span.sub-title {
  display: inline-block;
  color: #3197db;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.category-block-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0a2565;
  margin-bottom: 12px;
}

.category-block-title p {
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
}

.a1aqua-product-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  transition: all ease 0.3s;
  overflow: hidden;
}

.a1aqua-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10, 37, 101, 0.14);
}

.a1aqua-product-card .product-thumb {
  padding: 25px;
  text-align: center;
  background-color: #f7fafd;
}

.a1aqua-product-card .product-thumb img {
  max-height: 210px;
  width: auto;
  max-width: 100%;
  display: inline-block;
}

.a1aqua-product-card .product-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.a1aqua-product-card .product-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a2565;
  margin-bottom: 6px;
}

.a1aqua-product-card .product-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3197db;
  background-color: #eef2fb;
  border-radius: 30px;
  padding: 4px 14px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.price-badge {
  display: inline-block;
  background-color: #ff9f1f;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.product-specs li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed #e8eef7;
  font-size: 14.5px;
  color: #000;
  line-height: 1.6;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs li i {
  color: #25d366;
  font-size: 17px;
  margin-top: 3px;
  flex-shrink: 0;
}

.product-specs li strong {
  color: #0a2565;
  font-weight: 600;
}

.product-cta-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 6px;
}

.product-cta-row .read-more {
  font-weight: 600;
  color: #0a2565;
}

.product-cta-row .read-more i {
  transition: all ease 0.3s;
}

.product-cta-row .read-more:hover i {
  transform: translateX(4px);
}

/* Spec table (industrial plants) */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
}

.spec-table th,
.spec-table td {
  border: 1px solid #e8eef7;
  padding: 9px 14px;
  font-size: 14px;
  text-align: left;
  color: #000;
  vertical-align: top;
}

.spec-table th {
  background-color: #eef2fb;
  color: #0a2565;
  font-weight: 600;
  width: 42%;
}

.products-note {
  text-align: center;
  color: #6b6b6b;
  font-size: 14px;
  margin-top: 10px;
}

/* ------------------------------------------------------------
   11. Gallery page
   ------------------------------------------------------------ */
.gallery-toolbar {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #f7fafd;
}

.gallery-item img {
  width: 100%;
  /* height: 240px; */
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 37, 101, 0.94), transparent);
  color: #fff;
  padding: 45px 18px 14px;
  font-size: 14.5px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all ease 0.35s;
  pointer-events: none;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Simple lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 15, 40, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 25px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
}

.lightbox-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  color: #e8eef7;
  font-size: 14.5px;
}

/* ------------------------------------------------------------
   12. Contact page
   ------------------------------------------------------------ */
.contact-info-card {
  text-align: center;
  padding: 35px 25px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 30px;
  transition: all ease 0.3s;
}

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

.contact-info-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #0a2565;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.contact-info-card h3 {
  font-size: 19px;
  color: #0a2565;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14.5px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 0;
  word-break: break-word;
}

.contact-info-card a:hover {
  color: #3197db;
}

.contact-form-wrap {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 40px 35px;
  height: 100%;
}

.contact-form-wrap h3 {
  font-size: 24px;
  color: #0a2565;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrap .form-text-muted {
  color: #6b6b6b;
  font-size: 14.5px;
  margin-bottom: 25px;
}

.contact-form-wrap .form-control {
  border-radius: 6px;
  border: 1px solid #e0e6f0;
  padding: 12px 15px;
  font-size: 14.5px;
}

.contact-form-wrap .form-control:focus {
  border-color: #3197db;
  box-shadow: 0 0 0 3px rgba(49, 151, 219, 0.12);
}

.contact-form-wrap label {
  font-size: 14px;
  font-weight: 600;
  color: #0a2565;
  margin-bottom: 6px;
}

.form-note {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
}

.form-note.success {
  display: block;
  background-color: #e6f9ee;
  color: #157347;
  border: 1px solid #b6ecd0;
}

.form-note.error {
  display: block;
  background-color: #fdecec;
  color: #b02a37;
  border: 1px solid #f5c2c7;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  line-height: 0;
  height: 100%;
  min-height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ------------------------------------------------------------
   13. Projects page helpers
   ------------------------------------------------------------ */
.projects-grid .project-item {
  margin-bottom: 30px;
}

.projects-grid .project-item img {
  width: 100%;
}

/* ------------------------------------------------------------
   14. Responsive adjustments
   ------------------------------------------------------------ */
@media only screen and (max-width: 991px) {
  .a1aqua-intro-content h2,
  .a1aqua-features-area .section-title h2,
  .a1aqua-faq-area .section-title h2,
  .category-block-title h2 {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .a1aqua-intro-area,
  .a1aqua-mission-vision-area,
  .a1aqua-faq-area.faq-muted {
    padding: 70px 0 40px;
  }

  .a1aqua-features-area {
    padding: 60px 0 30px;
  }

  .a1aqua-intro-content h2 {
    font-size: 23px;
  }

  .a1aqua-features-area .section-title h2,
  .a1aqua-faq-area .section-title h2,
  .category-block-title h2 {
    font-size: 24px;
  }

  .a1aqua-faq-question {
    padding: 16px 18px;
  }

  .a1aqua-faq-question h3 {
    font-size: 15px;
  }

  .a1aqua-faq-icon {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .a1aqua-faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .contact-form-wrap {
    padding: 30px 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 220px;
  }
}

@media only screen and (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .a1aqua-faq-question {
    flex-direction: row;
    align-items: flex-start;
  }

  .a1aqua-faq-question h3 {
    font-size: 14.5px;
  }
}


.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.copyright-content p {
  margin: 0;
}

.copyright-content a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .copyright-content {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}