/* Utilities*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 00;
  font-style: normal;

  /* background-color: #0e6fe1; */
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.primary {
  color: #f5ae18;
}

.bg-primary {
  background: #f5ae18;
}

.bg-light {
  background: #3f5c70;
}

.btn-dark {
  background-color: #1158ac;
  padding: 15px;
}

.btn-primary {
  background-color: #0e6fe1;
  border: none;
  padding: 15px;
  color: #fff;
  margin-right: 20px;
}

.btn-primary:hover {
  background-color: #f5ae18;
}

.btn-light {
  background-color: #3f5c70;
  padding: 20px;
}

.btn-dark:hover,
.btn-light:hover {
  background-color: #f5ae18;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}

.clr {
  clear: both;
}

.l-font {
  font-size: 40px;
}

p {
  line-height: 1.7em;
}

.py-1 {
  padding: 10px 0;
}
.py-2 {
  padding: 20px 0;
}
.py-3 {
  padding: 30px 0;
}
.my-1 {
  margin: 10px 0;
}
.my-2 {
  margin: 20px 0;
}

/* Header Section */

.container {
  max-width: 1200px;
  margin: auto;
  overflow: auto;
  padding: 0 20px;
}

.services-section .container {
  max-width: 1350px;
}

header {
  background-color: white;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #1158ac;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

nav a:hover {
  color: #f9d834;
}

.nav-toggle {
  display: none;
  /* margin: 10px;
  padding: 10px;
  color: #1158ac;
  background: #1158ac;
  border: none; */
}
/* Hero section */
.hero {
  background: url("../images/source-1.jpg") no-repeat center center/cover;
  height: 550px;
  text-align: center;
  background-color: rgb(65, 140, 202);
  background-blend-mode: multiply;
  color: #fff;
}

.hero h1 {
  font-size: 50px;
  padding-top: 150px;
  padding-bottom: 20px;
}

.hero p {
  padding-bottom: 50px;
  font-size: 20px;
  line-height: 1.7em;
}

.hero a {
  font-size: 18px;
}

/* Home Info Section */

.home-info {
  height: 500px;
  padding: 80px;
}

.home-info .main-info {
  margin-top: 80px;
  float: right;
  width: 50%;
}

.home-info .home-info-img {
  float: left;
  width: 50%;
  min-height: 100%;
}

.home-info h1 {
  padding-bottom: 20px;
}

.home-info p {
  line-height: 1.7em;
}

.home-info a {
  font-size: 18px;
}

/* feature section */

.feature-section {
  color: #fff;
}

.feature-section .box {
  float: left;
  width: 33.3%;
  padding: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.feature-section .box i {
  margin-bottom: 10px;
}

.feature-section .box h3 {
  margin-bottom: 40px;
}

/* About info */

#about-info {
  background-color: #e3ecf9;
  color: rgb(51, 51, 51);
}

#about-info .info-left {
  float: left;
  width: 50%;
  min-height: 100%;
}

#about-info .info-right {
  float: right;
  width: 50%;
  min-height: 100%;
}

#about-info .info-right img {
  display: block;
  margin: auto;
  width: 45%;
  border-radius: 50%;
}

/* Abot - Testimonials */

#testimonials {
  height: 100%;
  padding-top: 70px;
  background: url("../images/d-10.jpg") no-repeat center center/cover;
  background-color: #1158ac;
  background-blend-mode: multiply;
}

#testimonials .testimonial {
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 5px;
  opacity: 0.9;
}

#testimonials h1 {
  text-align: center;
}

#testimonials .testimonial img {
  width: 100px;
  float: left;
  border-radius: 50%;
  margin-right: 20px;
}

/* Contact Form */
#contact-form {
  background-color: #e3ecf9;
  color: #021a36;
  padding: 20px;
}

#contact-form label {
  display: block;
  margin-bottom: 5px;
}

#contact-form .form-group textarea {
  height: 200px;
}

#contact-form .form-group textarea,
#contact-form .form-group input {
  padding: 10px;
  width: 100%;
  background: #e3ecf9;
  border: 1px #3f5c70 solid;
}

#contact-form .form-group input:focus,
#contact-form .form-group textarea:focus {
  outline: none;
  border-color: #f5ae18;
  color: #021a36;
}

#contact-form .btn {
  background-color: #011124;
  padding: 15px;
  font-size: 18px;
  border: none;
  color: #fff;
}

#contact-form .btn:hover {
  background-color: #f5ae18;
}

.checkbox-heading {
  margin-bottom: 10px;
}

.checkbox-wrapper {
  display: flex;
  align-items: left;
  gap: 8px;
}

.checkbox-wrapper input {
  width: 14px !important;
}

.checkbox-wrapper label {
  margin-top: 5px;
  /* font-weight: unset !important; */
}
/* Service Section */
.services-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  color: #021a36;
  text-align: center;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
}

.services-group {
  margin-bottom: 40px;
}

.services-group h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  text-align: left;
}

.services-title {
  font-size: 45px;
  color: #1158ac;
  margin-bottom: 10px;
  font-weight: 700;
}

.services-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  overflow: hidden;
}

.service-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  border: 1px solid #e1e7ec;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 20px;
  color: #1158ac;
  margin: 16px 20px 8px;
  font-weight: 700;
}

.service-card p {
  font-size: 15px;
  color: #4a4a4a;
  margin: 0 20px 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.card-cta {
  display: block;
  margin: auto 20px 20px;
  color: #1158ac;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-cta:hover {
  color: #0b3c75;
}

/* Responsive */

@media (max-width: 400px) {
  .checkbox-wrapper label {
    margin-top: 2px;
    /* font-weight: unset !important; */
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

/* FAQs */
.faq-section {
  background-color: #f4f8fb;
  padding: 60px 20px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-intro {
  margin: 0 auto 40px;
  font-size: 17px;
  color: #555;
  text-align: center;
  max-width: 75%;
  line-height: 1.6;
}

.faq-inner {
  background-color: #f4f8fb;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgb(195, 192, 192);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
  font-size: 36px;
  color: #1158ac;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-section details {
  background-color: #ffffff;
  border: 1px solid #dde5ee;
  border-radius: 8px;
  padding: 18px 24px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-section summary {
  font-size: 18px;
  font-weight: 600;
  color: #021a36;
  list-style: none;
  position: relative;
  padding-right: 30px;
}

.faq-section summary::marker {
  display: none;
}

.faq-section summary::after {
  content: "+";
  font-size: 20px;
  color: #1158ac;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.faq-section details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-section details p {
  margin-top: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.faq-contact {
  text-align: center;
  margin-top: 40px;
}

.faq-contact a {
  color: #1158ac;
  text-decoration: underline;
  font-weight: 500;
}

.faq-section details[open] {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Contact Form */
#contact-form {
  background-color: #e3ecf9;
  color: #021a36;
  padding: 60px 20px;
  text-align: center;
}

#contact-form h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #1158ac;
}

/* Form container */
#contact-form form {
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Form group */
#contact-form .form-group {
  margin-bottom: 20px;
}

#contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

#contact-form .form-group input,
#contact-form .form-group select,
#contact-form .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #3f5c70;
  border-radius: 4px;
  background-color: #f8f9fc;
  font-size: 16px;
}

#contact-form .form-group input:focus,
#contact-form .form-group select:focus {
  outline: none;
  border-color: #f5ae18;
  box-shadow: 0 0 5px rgba(245, 174, 24, 0.5);
}

/* Button */
#contact-form .btn {
  background-color: #1158ac;
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
}

#contact-form .btn:hover {
  background-color: #f5ae18;
  color: #021a36;
}

/* Strip */
.divider-banner {
  background-color: #3f5c70;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-style: italic;
  font-size: 22px;
}

/* About */
.about-section {
  background-color: #f9f9f9;
  padding: 70px 10px;
  color: #021a36;
  overflow: hidden !important;
}

.about-header {
  text-align: center;
  margin-bottom: 30px;
}

.about-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0e6fe1;
}

.about-header p {
  font-size: 18px;
  font-style: italic;
  color: #555;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1200px;
  overflow: hidden;
}

.about-text {
  flex: 1 1 50%;
  padding: 10px;
  overflow: hidden;
}

.about-text h3 {
  font-size: 50px;
  margin-bottom: 15px;
  color: #0e6fe1;
  color: #1158ac;
}

.about-text p {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-stats .stat h4 {
  font-size: 28px;
  color: #f5ae18;
}

.about-stats .stat p {
  font-size: 14px;
  color: #333;
}

.about-img {
  flex: 1 1 50%;
  padding: 20px;
  position: relative;
  text-align: center;
}

.about-img img {
  width: 95%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-img blockquote {
  margin-top: 10px;
  font-style: italic;
  font-size: 13px;
  color: #666;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Why us */
.why-us-banner {
  background-color: #1158ac;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.why-us-content h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.why-us-content .primary {
  color: #f5ae18;
}

.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.why-box {
  background-color: #ffffff10;
  padding: 30px 20px;
  border-radius: 8px;
  max-width: 250px;
  flex: 1 1 200px;
  text-align: center;
}

.why-box i {
  color: #f5ae18;
  margin-bottom: 15px;
}

.why-box h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 15px;
  line-height: 1.6em;
}

.why-box {
  background-color: #ffffff10;
  padding: 30px 20px;
  border-radius: 8px;
  max-width: 250px;
  flex: 1 1 200px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #ffffff20;
}
.why-box:hover i {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* form */
#contact-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  color: #021a36;
}

#contact-section h2 {
  font-size: 36px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 200px;
  justify-content: center;
  margin-top: 40px;
}

.form-box {
  background-color: #fff;
  padding: 30px;
  overflow-y: hidden;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.form-box h3 {
  margin-bottom: 20px;
  color: #1158ac;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 7px;
  border: 1px solid #3f5c70;
  border-radius: 2px;
  background-color: #f8f9fc;
  font-size: 14px;
}

.btn {
  background-color: #1158ac;
  color: #fff;
  border: none;
  padding: 15px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.btn:hover {
  background-color: #f5ae18;
  color: #fff;
}

@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .why-box {
    max-width: 280px;
  }
  .form-box {
    width: 100%;
  }

  .service-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 1%;
    box-sizing: border-box;
  }
  .services-group h3 {
    text-align: center !important;
  }

  .hero h1,
  .about-text h3 {
    font-size: 36px;
  }
  .hero h1 {
    font-size: 36px;
    padding-top: 120px;
    padding-bottom: 50px;
  }

  .hero p {
    font-size: 16px;
  }

  .about-img img {
    width: 100%;
  }
  .about-img {
    flex: 1 1 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 30px; /* Space for the button */
  }

  .a-t {
    margin-top: 30px;
  }
  /* Hamburger Button */
  .nav-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    align-self: flex-end;
    color: #fff;
  }

  nav a {
    display: none;
  }

  /* Show nav links only when nav has class "show" */
  nav.show a {
    display: block;
  }
}

/* Footer */

.site-footer {
  background-color: #021a36;
  color: #fff;
  padding: 40px 20px;
  padding-bottom: 0px;
  font-size: 16px;
}

.favourite-verse {
  color: #021a36;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info,
.footer-social {
  /* flex: 1 1 300px; */
  margin: 20px 0;
}

.footer-info h4,
.footer-social h4 {
  font-size: 23px;
  color: #f5ae18;
  margin-bottom: 15px;
}

.footer-info a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-info a:hover,
.footer-social a:hover {
  color: #f5ae18;
}

.social-icons a {
  font-size: 32px;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #3f5c70;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #f5ae18;
  text-decoration: underline;
}

.footer-info.links {
  margin: 20px 0;
  font-size: 16px;
}

.footer-info.links a {
  display: inline-block;
  width: 48%;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer-info.links a:hover {
  color: #f5ae18;
}

/* Testimonials */
.testimonials-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(2, 26, 54, 0.1);
  padding: 30px 20px;
  max-width: 320px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

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

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f5ae18;
}

.testimonial-name {
  color: #021a36;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 16px;
  line-height: 1.4;
}
.testimonial-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f5ae18;
  color: #021a36;
  font-weight: 700;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  user-select: none;
  box-shadow: 0 2px 8px rgba(245, 174, 24, 0.5);
}

/* Lisa Additions */

/* Blog Tips */
.blog-tips-section {
  background-color: #1158ac;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden !important;
}

.blog-tips-section.container {
  overflow: hidden !important;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.tip-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.tip-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tip-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1158ac;
  font-weight: 600;
}

.tip-card p {
  color: #555;
  font-size: 15px;
}

.tip-card ul {
  list-style-type: none;
  margin: 0;
  padding-left: 20px;
  text-align: left;
}

.tip-card ul li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #555;
  font-size: 15px;
}

.tip-card ul li strong {
  color: #021a36;
}

.tip-card ul li i.icon {
  color: #1158ac;
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background-color: #1158ac;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.cta-banner h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cta-banner .btn-dark {
  background-color: #021a36;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.cta-banner .btn-dark:hover {
  background-color: #0a2b65;
  color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  text-align: center;
  line-height: 56px;
  cursor: pointer;
  display: inline-block;
}

.whatsapp-float:hover {
  background-color: #1ebe57;
  transform: scale(1.1);
}
