 body {
       font-family: "Raleway", sans-serif;
       font-optical-sizing: auto;
       font-weight: weight;
       font-style: normal;
       margin: 0;
       padding: 0;
    }
    .navbar-brand {
      font-family: "Savate", sans-serif;
      font-optical-sizing: auto;
      font-weight: weight;
      font-style: normal;
      font-size: 1.3rem;
      color: #1f4759;
    }
    .nav-link {
      color: #1f4759 !important;
      
    }
    .btn-playbook {
      background-color: #1f4759;
      color: #ffffff;
      border-radius: 50px;
      padding: 0.5rem 1rem;
      white-space: nowrap;
    }
    .btn-playbook:hover {
      background-color: #ffffff;
    }
    .navbar {
      background-color: #f7f2ee;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    .custom-toggler {
      border: none;
      background: transparent;
      font-size: 1.8rem;
      color: #1e2630;
    }
    .custom-toggler:focus {
      box-shadow: none;
    }
    .offcanvas-collapse {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 100%;
      width: 250px;
      padding: 1rem;
      background-color: #f7f2ee;
      transition: left 0.3s ease-in-out;
      z-index: 1045;
    }
    .offcanvas-collapse.open {
      left: calc(100% - 250px);
    }
    .offcanvas-header {
      display: flex;
      justify-content: flex-end;
    }
    .close-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #1f4759;
    }

    .menuopen{
      color: #1f4759;
    }

    @media (min-width: 992px) {
      .offcanvas-collapse {
        position: static;
        width: auto;
        background: none;
        padding: 0;
        transition: none;
        left: auto;
        display: flex;
        align-items: center;
        gap: 1rem;
      }
      .offcanvas-header, .close-btn {
        display: none;
      }
    }

    /* landing */

 .landing {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 2rem;
     background: linear-gradient(90deg, #b8c6db 0%, #f5f7fa 100%);


      position: relative;
      flex-wrap: wrap;
    }
    .landing-text {
      flex: 1 1 400px;
      z-index: 2;
      padding: 1rem;
    }
    .landing-text h1 {
      font-size: 2.5rem;
      color: #1f4759;
    }
    .landing-text p {
      font-size: 1.25rem;
      margin-top: 1rem;
      color: #1e2630;
    }
    .landing-img {
      flex: 1 1 400px;
      padding: 1rem;
      display: flex;
      justify-content: center;
      align-items: center;

    }

    .landing-img img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  clip-path: polygon(
    50% 0%,
    93% 25%,
    93% 75%,
    50% 100%,
    7% 75%,
    7% 25%
  );
}


   .btn-book {
  background-color: #1f4759;
  color: #ffffff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  border: 1px solid #1f4759;
  outline: none !important;
  cursor: pointer;

  /* Breathing animation */
  animation: breathe 3s ease-in-out infinite;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-book:hover {
  background-color: #ffffff;
  color: black;
}

@keyframes breathe {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31, 71, 89, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px 5px rgba(31, 71, 89, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(31, 71, 89, 0.5);
  }
}

  
    
    @media (max-width: 768px) {
      .landing {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1rem;
      }

    .landing-img img {
      width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #1f4759; 
    }

    .landing-text h1 {
      font-size: 25px;
      color: #1f4759;
    }
      .landing-text p {
      font-size: 15px;
      margin-top: 1rem;
      color: #1e2630;
    }

    .landing-text {
      flex: 1 1 10px;
      z-index: 2;
      padding: 1rem;
    
    }
    }

   /* about */

.about-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  border-radius: 16px;
  color: #333333;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-section h2 {
  font-size: 1.5rem;
  color: #1e2630;
  margin-bottom: 1.2rem;
  position: relative;
}

.about-section h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background-color: #1f4759;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.about-section p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-section.visible p {
  opacity: 1;
  transform: translateY(0);
}

.about-section.visible p:nth-of-type(2) {
  transition-delay: 0.15s;
}
.about-section.visible p:nth-of-type(3) {
  transition-delay: 0.3s;
}

.highlight {
  font-weight: bold;
  color: #1e2630;
}

@media (max-width: 768px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-section h2 {
  font-size: 1.2rem;
  color: #1e2630;
  margin-bottom: 1.2rem;
  position: relative;
}

.about-section h2::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 4px;
  background-color: #1f4759;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}
}

/* SERVICES */

.servicewrap{
background: linear-gradient(180deg, #b8c6db 0%, #f5f7fa 100%);
padding-top: 10px;
padding-bottom: 20px;
}
 .services-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    
    
  }

  .services-section h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #1e2630;
    margin-bottom: 2rem;
    position: relative;
  }
  .services-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #1f4759;
    margin: 0.5rem auto 0;
    border-radius: 3px;
  }

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

  .service-card {
    background: #f7f2ee; 
 padding: 1.8rem 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  cursor: default;

  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay);
  }
  .service-card.visible {
      opacity: 1;
  transform: translateY(0);
  }

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

  .icon-wrapper {
    font-size: 1.5rem;
    color: #1f4759; 
  margin-bottom: 1rem;
  text-align: center;
  transition: color 0.4s ease;
  }

  .service-card:hover .icon-wrapper {
  
  animation: pulse 1.6s infinite ease-in-out;
}


  .service-card h3 {
    font-size: 1rem;
    color: black;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 600;
  }

  .service-card p {
     font-size: 1rem;
  color: #444;
  line-height: 1.6;
  user-select: text;
  }

  @keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  
  }
  50% {
    transform: scale(1.1);
  
  }
}


@media (max-width: 768px) {
  .service-card h3 {
    font-size: 1.2rem;
  }
}

  @media (max-width: 768px) {
    .services-section h2 {
      font-size: 2.4rem;
    }
      .services-section h2 {
    text-align: center;
    font-size: 1.2rem;
    color: #1e2630;
    margin-bottom: 2rem;
    position: relative;
  }
  .services-section h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 5px;
    background: #1f4759;
    margin: 0.5rem auto 0;
    border-radius: 3px;
  }
  }

  /* faq */

 .faq-wrapper {
   max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
 
}

.faq-box {
 
   background-color: #f5f7fa;
  border: 1px solid #dbe0e5;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.faq-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
 
  font-size: 1rem;
  color: #3f4d7a;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: #3f4d7a;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  padding-top: 0.5rem;
}

.faq-answer.show {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0;
}

 .faq-wrapper h2{
  font-size: 20px;
}


/* section waves */

.section-top-wave {
  position: relative;
  top: -1px;
  overflow: hidden;
  line-height: 0;
}
.section-top-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.section-top-wave2 {
  position: relative;
  top: -1px;
  overflow: hidden;
  line-height: 0;
   background: linear-gradient(90deg, #b8c6db 0%, #f5f7fa 100%);
}
.section-top-wave2 svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* reviews */

 .reviews2 {
   max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
 
} 

.reviews-section {
      background: #f5f7fa;
      /* background-color: #f7f2ee; */
      padding: 4rem 1rem;
    }

    .reviews-section h2 {
      color: #1f4759;
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 3rem;
    }

    .review-card {
      /* background: #f7f2ee; */
      background: #1f4759;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .review-header h5 {
      font-size: 1rem;
      color: #f5f7fa;
      font-weight: 600;
      margin: 0;
    }

    .review-text {
      font-size: 0.95rem;
      color: #f5f7fabb;
      line-height: 1.6;
      max-height: 90px;
      overflow: hidden;
      position: relative;
      transition: max-height 0.4s ease;
    }

    .review-text.expanded {
      max-height: 1000px;
    }

    .review-stars {
      display: flex;
      gap: 4px;
    }

    .review-stars span {
      font-size: 1rem;
      color: gold;
      animation: starPulse 1.6s ease-in-out infinite;
      transform-origin: center;
      display: inline-block;
    }

    @keyframes starPulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
        text-shadow: 0 0 2px gold, 0 0 5px rgba(255, 166, 0, 0.16);
        
      }
      50% {
        transform: scale(1.25);
        opacity: 0.6;
        text-shadow: 0 0 6px gold, 0 0 10px rgba(255, 166, 0, 0.056);
        
      }
    }

    .read-more-btn {
      background: none;
      border: none;
      color: rgba(255, 217, 0, 0.675);
      padding: 0;
      margin-top: 1rem;
      cursor: pointer;
      align-self: flex-start;
    }

    /* footer */

    .footer-section {
  background-color: #1f4759;
  color: #ffffff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: 3rem;
}

.footer-btn {
  background-color: #ffffff;
  color: #1f4759;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}
.footer-btn:hover {
  background-color: #e0e0e0;
  color: #1f4759;
}

.footer-btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer-btn-outline:hover {
  background-color: #ffffff;
  color: #1f4759;
}

.footer-icons {
  gap: 1.2rem;
}

.footer-icon {
  font-size: 1.3rem;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.footer-icon:hover {
  background-color: #ffffff;
  color: #1f4759;
  transform: scale(1.1);
}

/* ebook */


.banner-content strong{
  padding-top: 20px;
}

.ebook-banner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffcc00;
  color: #1f4759;
  border-radius: 20px 20px 0 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 1.2rem 1.5rem;
  z-index: 999;
  max-width: 300px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  font-family: 'Segoe UI', sans-serif;
}

.ebook-banner.visible {
  opacity: 1;
  pointer-events: auto;
}

.banner-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  text-align: left;
}

.banner-content strong {
  font-size: 1rem;
}

.banner-content span {
  color: #d63447;
  font-weight: bold;
}

.banner-btn {
  background: #1f4759;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  transition: background 0.3s ease;
  width: fit-content;

  outline: none;
  border: none; 


}

.banner-btn:hover {
  background: #163644;
}

#close-banner {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ffffff;
  color: #1f4759;
  border: none;
  font-size: 1rem;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-weight: bold;
  line-height: 0.8;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

#close-banner:hover {
  background-color: #eeeeee;
}

.hidden {
  display: none;
}

/* subscribe */

.subscribe-wrapper {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  color: #1f4759;
}

.subscribe-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.subscribe-btn {
  background-color: #1f4759;
  color: white;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
  border: none;
  transition: background 0.3s ease;
}
.subscribe-btn:hover {
  background-color: #163a4a;
}

.subscribe-form input {
  border-radius: 10px;
  padding: 0.6rem;
  border: 1px solid #ccc;
}

.subscribe-form {
  margin-top: 1rem;
}

.submitbtn{
   background-color: #1f4759;
}


.submitbtn:hover{
   background-color: white;
   color: #163644;
   border: 1px solid #163644 !important;
}


/* dialogue box */



  .dialog-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .dialog-content {
    background: white;
    border-radius: 8px;
    max-width: 90%;
    width: 600px;
    max-height: 90vh;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .close-button {
    position: absolute;
    top: 10px; right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .calendly-iframe {
    flex-grow: 1;
    width: 100%;
    height: 80vh;
    border: none;
    margin-top: 1rem;
  }

  @media (max-width: 600px) {
    .dialog-content {
      padding: 1rem;
    }

    .calendly-iframe {
      height: 70vh;
    }
  }

