:root {
  --primary-color: #80b007;
  --secondary-color: #18b0d1;
  --tertiary-color: #160f5c;
}

@font-face {
  font-family: "Poppins";
  src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

html,
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  text-align: left;
  color: #333333;
}

p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  transition: 0.5s;
}

h1, h2, h3, h4, h5, h6 {
  color: color-mix(in srgb, var(--tertiary-color) 70%, black);
  font-style: normal;
  margin: 20px 0 5px;
  line-height: 1.2;
  font-weight: 600;
  transition: 0.5s;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.25rem; margin-bottom: 20px; }
h6 { font-size: 0.875rem; }

a {
  color: #6a0dad;
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:focus,
.btn:focus {
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus {
  color: var(--secondary-color);
  text-decoration: none;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  transition: 0.5s;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

a, i, ol, li, ul {
  font-style: normal;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

*::-moz-selection {
  background: var(--secondary-color);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: var(--secondary-color);
  color: #fff;
  text-shadow: none;
}

::selection {
  background: var(--secondary-color);
  color: #fff;
  text-shadow: none;
}

.btn {
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: color-mix(in srgb, var(--primary-color) 65%, black);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}



.topbar {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.topbar::before {
  position: absolute;
  content: "";
  width: 73%;
  height: 100%;
  left: -20px;
  top: 0;
  background: var(--tertiary-color);
  z-index: -1;
  transform: skew(145deg);
}
.topbar .info-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.topbar .info-item i {
  color: #fff;
  margin-right: 0.5rem;
}

.topbar .social-icons a {
  color: rgba(255, 255, 255, 1);
  margin-left: 0.7rem;
  transition: color 0.3s ease;
  padding: 2px;
  border: 1px solid #eee;
  border-radius: 4px;
}

.topbar .social-icons a:hover {
  color: var(--primary-color);
}

.navbar {
  background-color: #ffffff;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 1030;
}

.navbar.static {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}


.navbar-brand img {
  height: 60px;
}


.navbar-nav .nav-link {
  color: #121621;
  font-weight: 500;
  margin: 2rem 0.9rem !important;
  padding: 0 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.navbar .dropdown:hover .dropdown-menu {
  display: block;
  background: var(--tertiary-color);
}
.navbar .dropdown-toggle::after {
  margin-left: 5px;
}

.navbar .dropdown .dropdown-menu .dropdown-item {
  color: #fff;
}

.navbar .dropdown .dropdown-menu .dropdown-item:hover,
.navbar .dropdown .dropdown-menu .dropdown-item.active {
  background: var(--primary-color);
}

.btn-book {
  padding: 0.65rem 1.5rem;
}

@media (min-width: 800px) {
  .static {
    background: var(--tertiary-color);
  }
}

.static .nav-link {
  color: white;
}

.mobile-menu {
  background-color: color-mix(in srgb, var(--tertiary-color) 75%, black);
  color: #ffffff;
  width: 75%;
}

.offcanvas-header {
  background-color: rgba(255, 255, 255, 1);
  padding-bottom: 0.7rem;
}

.offcanvas-title {
  color: #444 !important;
  font-weight: 700;
}

.offcanvas .btn-close {
  filter: invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
  color: #444 !important;
}

.offcanvas .btn-close:hover {
  opacity: 1;
}

.offcanvas-body .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 0 !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0;
}

.offcanvas-body .navbar-nav .nav-link:hover,
.offcanvas-body .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.mobile-menu .dropdown-menu {
  display: none;
  position: static;
  width: 100%;
  box-shadow: none;
  border: none;
  background-color: color-mix(in srgb, var(--tertiary-color) 95%, white);
  padding: 0;
}

.mobile-menu .nav-item.show .dropdown-menu {
  display: block !important;
}

.mobile-menu .dropdown-item {
  padding: 8px 24px;
  font-size: 14px;
  color: #ddd;
}

.mobile-menu .dropdown-item:hover {
  background-color: #46105B;
  color: #fff;
}

.offcanvas-body .offcanvas-buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.offcanvas-body .offcanvas-buttons .btn {
  width: 100%;
}

@media (max-width: 991.98px) {
  .topbar .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .topbar .info-item {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  .navbar .navbar-collapse {
    background-color: #ffffff;
  }
}





/*=======================================
   Hero Slider
========================================*/
.carousel {
  min-height: 500px;
}

.carousel-item {
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(106, 106, 106, 0.95) 0%, rgba(106, 106, 106, 0.65) 50%, transparent 100%);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 5%;
  left: 10%;
  /*transform: translateY(-50%);*/
  text-align: left;
  max-width: 600px;
  z-index: 2;
  color: white;
  padding: 3rem 0;
}

.carousel-caption h1 {
  color: white !important;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.carousel-caption p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-custom {
  padding: 0.75rem 1.75rem;
}

.carousel-indicators {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  margin: 0;
  z-index: 2;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 8px 0;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  background-color: var(--secondary-color);
  opacity: 1;
  width: 14px;
  height: 14px;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption {
    left: 8%;
    max-width: 90%;
  }
  .carousel-indicators {
    left: 3%;
  }
}




/*=======================================
   Breadcrumb Section
========================================*/
.header-section {
  position: relative;
  background: url("../images/bg/breadcrumb-bg.jpg") center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 15, 52, 0.75);
}

.header-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../images/bg/horizontal-bubble.webp") bottom/cover no-repeat;
  z-index: 2;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.header-content h1 {
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 1.3rem;
  color: white;
}
.header-content p {
  font-size: 1rem;
  font-weight: 400;
  color: #e6e6e6;
  margin-bottom: 20px;
}
.breadcrumb-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.breadcrumb-box a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb-box a:hover {
  color: var(--secondary-color);
}

.breadcrumb-box .active {
  color: var(--secondary-color);
  font-weight: 600;
}

.breadcrumb-box i {
  font-size: 0.8rem;
  margin: 0 8px;
  color: #bbb;
}

@media (max-width: 768px) {
  .header-content h1 {
    font-size: 1.9rem;
  }
  .header-section {
    height: 300px;
  }
}



.intro-section {
  border-bottom: 1px solid #f1f1f1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.intro-section h2 {
  line-height: 1.2;
}
.intro-section p {
  max-width: 1000px;
  margin: 5px auto;
  margin-bottom: 1.5rem;
}




.instagram-showcase {
  background: #fff;
  border-radius: 2rem;
  border: 1px solid #eee;
  padding: 0;
  height: 620px;
  transition: all 0.35s ease;
}

.instagram-showcase:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.insta-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 2rem;
  position: relative;
  z-index: 3;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 132, 255, 0.15),
    rgba(255, 0, 140, 0.15),
    transparent 70%
  );
  z-index: 1;
}



/*=======================================
   Services
========================================*/
.services {
  background-color: #f8f9fa;
  padding: 5rem 0;
}
.service-item {
  transition: 0.25s ease;
  align-items: center;
}
.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1)!important;
}
.service-item .icon i {
  transition: 0.3s ease;
}
.service-item:hover .icon i {
  transform: scale(1.15);
}




/*=======================================
   CTA Section
========================================*/
.cta-section {
  /*background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);*/
  background: linear-gradient(135deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color) 65%, black));
}
.cta-section h2 {
  color: white;
}




/*=======================================
   Service Page
========================================*/
.service-page {
  background-image: url("../images/bg/service-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 4rem 0;
  position: relative;
}

.service-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.75);
}
.service-page > * {
  position: relative;
  z-index: 2;
}

.service-page li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}
.service-page li::before {
  content: '\f058' !important;
  font-family: 'Font Awesome 7 Free' !important;
  font-weight: 900 !important;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

.service-list .service-underline {
  width: 40px;
  height: 2px;
  background-color: #003366;
  margin-top: 6px;
}

.service-list .list-group-item {
  background-color: #fff;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
}

.service-list .list-group-item.active,
.service-list .list-group-item:hover {
  background: linear-gradient(135deg, var(--secondary-color), color-mix(in srgb, var(--secondary-color) 65%, black));
  color: white;
}

.service-list .list-group-item.active i,
.service-list .list-group-item:hover i {
  color: #fff !important;
}




/*=======================================
   Service pricing
========================================*/
.gc-pricing-container {
  padding: 60px 15px;
  background-color: #ffffff;
}

.gc-table-wrapper {
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.gc-pricing-table {
  margin-bottom: 0;
}

.gc-pricing-table thead {
  background-color: #007bff; /* Adjust to GoCleaners primary Blue */
  color: white;
}

.gc-pricing-table th {
  padding: 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border: none;
}

.gc-pricing-table td {
  padding: 18px 20px;
  vertical-align: middle;
  color: #444;
  border-bottom: 1px solid #eee;
}

.gc-service-name {
  font-weight: 700;
  color: #222;
}

.gc-price-value {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #28a745; /* Professional Green for prices */
}

/* Mobile Responsive Card Style */
@media (max-width: 767.98px) {
  .gc-pricing-table thead {
    display: none; /* Hide headers on mobile */
  }
  
  .gc-pricing-table, 
  .gc-pricing-table tbody, 
  .gc-pricing-table tr, 
  .gc-pricing-table td {
    display: block;
    width: 100%;
  }

  .gc-pricing-table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
  }

  .gc-pricing-table td {
    text-align: right;
    position: relative;
    padding-left: 50%;
  }

  /* Add labels for mobile */
  .gc-pricing-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 20px;
    width: 45%;
    font-weight: 700;
    text-align: left;
    color: #888;
  }
}




/*=======================================
   Customer Testimonials
========================================*/
.testimonials-section {
  background: linear-gradient(to right, var(--primary-color), color-mix(in srgb, var(--primary-color) 65%, black));
  padding: 6rem 0;
}

.testimonials-section .testi-div {
  position: relative;
  z-index: 0;
}

.testimonials-section .testi-div::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg/globe2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.09;
  z-index: -1;
}

.testimonial-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.testimonial-header,
.testimonial-content,
.testimonial-carousel-indicators {
  padding-left: 12px;
}

.testimonial-header h6 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

.testimonial-header h3 {
  color: color-mix(in srgb, var(--secondary-color) 45%, white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #eee;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-author-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #fff;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: #eee;
  margin: 0;
  font-style: normal;
}

.testimonial-carousel-indicators {
  position: static;
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
}

.testimonial-carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #B0BEC5;
  border: none;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.testimonial-carousel-indicators .active {
  background-color: var(--secondary-color);
}




.about-us-section {
  padding: 3rem 0;
}

.about-us-content {
  padding: 1rem;
}

.about-us-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about-us-content h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 1rem 0;
}

.about-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.mv-section {
  background-image: url("../images/bg/pattern-7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
  position: relative;
}

.mv-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(128, 176, 7, 0.55);
}
.mv-section > * {
  position: relative;
  z-index: 2;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 25px 0;
}

.mission, .vision {
  padding: 10px 20px;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid var(--secondary-color);
}

.mission-vision h3 {
  font-size: 1.1rem;
}


.commitment-section {
  background-image: url("../images/bg/pattern-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0;
  position: relative;
}

.commitment-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
}
.commitment-section > * {
  position: relative;
  z-index: 2;
}

.commitment-content {
  padding: 1rem;
}

.commitment-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.commitment-content p {
  color: #6c757d;
}

.commitment-content .btn {
  padding: 0.7rem 1.5rem;
}

.commitment-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}



/*==============================================
 Booking Page
==============================================*/
.booking-page .btn.active {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
}
.booking-section {
  padding: 5rem 0;
}
.booking-info h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: #00332E;
  margin: 1rem 0;
}
.booking-info p {
  font-size: 17px;
}
.booking-form {
  background: white;
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
}
.booking-form h4 {
  font-size: 1.1rem;
}
.booking-form label span {
  color: #ff0000;
}
.booking-form input.form-control {
  height: 45px;
}
.select2-selection__rendered {
  line-height: 40px !important;
}

.select2-container .select2-selection--single {
  height: 40px !important;
}

.select2-selection__arrow {
  height: 40px !important;
}
.booking-form input,
.booking-form select,
.booking-form textarea,
.select2-selection__rendered {
  background-color: #f8f9fa !important;
  border: 1px solid rgba(0, 43, 69, 0.35);
}
.booking-form .btn {
  padding: 1rem 2.7rem;
}



/*==============================================
 Contact Us Page
==============================================*/
.contact-section {
  padding: 60px 0;
}
.contact-info {
  color: #00332E;
}

.contact-title {
  font-size: 16px;
  color: #00332E;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-title::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #00332E;
  display: inline-block;
}

.contact-info .icon {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-form input, .contact-form textarea {
  background-color: #f8f9fa;
  border: 1px solid rgba(0, 43, 69, 0.35);
  padding: 12px;
  width: 100%;
  border-radius: 9px;
  margin-bottom: 15px;
}
.contact-form textarea {
  height: 150px;
  resize: none;
}
.contact-form .btn {
  padding: 1rem 3rem;
}
.contact-section .social-icons {
  border-top: 1px dashed #333;
  padding: 20px 0;
}
.contact-section .social-icons a {
  color: #00332E;
  font-size: 18px;
  margin-right: 10px;
  text-decoration: none;
}



/*=======================================
   Blog List
========================================*/
.blog-section {
  padding: 60px 0;
}
.blog-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-meta {
  font-size: 14px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.blog-meta i {
  color: inherit; 
}
.blog-title {
  font-size: 16px;
  color: #222;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.blog-card .read-more {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.blog-card .read-more i {
  margin-left: 5px;
}
.blog-card .read-more:hover {
  color: #c62b2b;
}

.pagination .page-item {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  background: #f8f9fa;
  color: #333;
  transition: all 0.3s ease;
}
.pagination .page-item.active,
.pagination .page-item:hover {
  background: var(--secondary-color);
  color: white;
}




/*==============================================
 Blog Post Page
==============================================*/
.post-area {
  position: relative;
  padding: 30px 0;
}
.post-container {
  max-width: 1200px;
}
.post-content {
  padding: 0;
}
.post-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 0;
}
.post-meta-info i {
  color: #024d2e;
  font-size: 14px;
}
.post-title {
  font-weight: bold;
  margin-top: 10px;
}
.post-content .content {
  padding: 20px;
}
.post-content .content h2 {
  font-size: 1.3rem;
}
.post-content .content h3 {
  font-size: 1.2rem;
}
.post-content .content h4 {
  font-size: 1.1rem;
}
.post-content ul, .post-content ol {
  padding-left: 20px;
}
.post-content ul li {
  list-style: disc;
}
.post-content a:hover {
  color: #024d2e;
}
.blog-sidebar {
  padding-left: 20px;
}
.blog-sidebar .searchbox {
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.blog-sidebar .searchbox form {
  display: flex;
  align-items: center;
  position: relative;
}
.blog-sidebar .searchbox input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}
.blog-sidebar .searchbox button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
}
.blog-sidebar .searchbox button:hover {
  background-color: #DDBA67;
}

.recent-posts {  
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.recent-posts .recent-underline {
  width: 40px;
  height: 2px;
  background-color: #003366;
  margin-top: 6px;
}

.recent-posts .recent-post a {
  font-size: 14px;
}

.recent-posts .recent-post a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline;
}

.recent-posts small i {
  color: #004796;
}




/*=======================================
   FAQs
========================================*/
.faq-section {
  padding: 3rem 0;
}

.accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 10px;
}

.accordion-button {
  background-color: #ffffff;
  border-radius: 12px !important;
  font-weight: 500;
  color: #0b132b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #2196f3;
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: transparent;
  color: #6c757d;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
}



/*=======================================
   Privacy
========================================*/
.privacy-policy .content {
  background-color: white;
  padding: 4rem 0;
}

.privacy-policy h2 {
  font-size: 1.2rem;
}

.privacy-policy ul {
  margin: 15px 0 15px 12px;
  list-style: disc;
}

.privacy-policy li {
  margin-bottom: 10px;
}

.privacy-policy .last-updated {
  font-style: italic;
  color: #7f8c8d;
}
.privacy-policy .contact-info {
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 4px solid #3498db;
  margin: 20px 0;
}




/*=======================================
   Footer
========================================*/
.footer {
  background-color: var(--tertiary-color);
  padding-top: 5rem;
  position: relative;
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/bg/map5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.45;
  z-index: 1;
}

/* ensure footer content stays above overlay */
.footer > * {
  position: relative;
  z-index: 2;
}

.footer img {
  max-height: 55px;
}

.footer h5 {
  font-weight: 600;
  color: #ffffff;
  position: relative;
  margin-bottom: 1.5rem;
  margin-top: 0;
  padding-top: 0;
}

.footer .footer-heading {
  color: #ffffff;
  border-bottom: 2px solid color-mix(in srgb, var(--secondary-color) 30%, var(--tertiary-color));
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer .list-unstyled li {
  margin-bottom: 0.7rem;
}

.footer .list-unstyled a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer .list-unstyled a:hover {
  color: var(--secondary-color) !important;
}

.footer .list-unstyled a .fa-chevron-right {
  font-size: 0.75rem;
  margin-right: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .list-unstyled a:hover .fa-chevron-right {
  transform: translateX(5px);
  color: var(--secondary-color);
}

.footer .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer .social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: color-mix(in srgb, var(--tertiary-color) 90%, white);
  color: #ffffff;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.footer .contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer .contact-info i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-right: 0.75rem;
  padding-top: 3px;
}

.footer .contact-info span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.copyright-bar {
  background-color: color-mix(in srgb, var(--tertiary-color) 75%, black);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 3rem;
  }
  .footer .footer-heading {
    margin-top: 1.5rem;
  }
}

.scroll-to-top,
.whatsapp-button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #46105B;
  border: none;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover,
.whatsapp-button:hover {
  background-color: #ffffff;
}

.whatsapp-button {
  bottom: 60px;
  background-color: var(--secondary-color);
  color: white;
}

.whatsapp-button:hover {
  background-color: color-mix(in srgb, var(--secondary-color) 95%, black);
}


/*=======================================
   Loader
========================================*/
.loader {
  display: none;
}

.spinner {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 40px;
}

.spinner div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 7px;
  background: #160F5C;
  color: #160F5C;
  -webkanimation: spinner 1.2s infinite ease-in-out;
  animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
  left: 6px;
  animation-delay: -0.16s;
}

.spinner div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
  left: 45px;
  animation-delay: -0.8s;
}

.spinner div:nth-child(4) {
  left: 65px;
  animation-delay: -0.4s;
}

.spinner div:nth-child(5) {
  left: 85px;
  animation-delay: 0;
}

@keyframes spinner {
  0% {
    top: 6px;
    height: 51px;
  }

  50%,
  100% {
    top: 19px;
    height: 26px;
  }
}

@-webkkeyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webktransform: scaleY(0.4)
  }

  20% {
    -webktransform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webktransform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webktransform: scaleY(1.0);
  }
}