* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
    background-color: white !important;
}


  .navbar {
      background-color: rgb(233, 221, 221);
       z-index: 1050;           
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }


  .hero {
      min-height: 600px;
     
       padding-top: 80px;
    }

.highlight {
      background-color: yellow;
      font-weight: bold;
    }

  .cta-form input {
      max-width: 300px;
      cursor: pointer;
      border-bottom-right-radius: 0;
      border-top-right-radius: 0;
    }
    .cta-pry {
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
    }

  .story-preview {
      border: none;
      box-shadow: 0 0 0px rgba(0,0,0,0.1);
      padding: 1rem;
      max-width: 400px;
    }

  .story-preview img {
      width: 100%;
      margin-bottom: 10px;
    }

  .logo-bar {
      filter: grayscale(100%);
      opacity: 0.7;
    }

    .logo-bar img {
      max-height: 30px;
      margin: 0 15px;
    }

    /* back to top button  */

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  background-color: rgb(32, 29, 59);
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
}



    /* section 2 */



.sec2 {
  background-color: #ffffff;
  min-height: 700px;
  margin-top: 50px;
}

.hdn {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .sec2 {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hdn {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hdn {
    font-size: 1.5rem;
  }
}


    /*    section 3   */


    .highlight {
  background-color: yellow;
  font-weight: bold;
}

.icon-box {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%; /* Makes all boxes equal height */
}

.icon-box i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.icon-box p {
  margin: 0;
  font-weight: bold;
  font-size: 0.95rem;
}


                /*  section 4  */


    .highlight {
  background-color: yellow;
  font-weight: bold;
}

.info-card {
  background-color: #e3f2fd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.info-card h5 {
  font-weight: bold;
}

.info-icon {
  font-size: 1.2rem;
  margin-right: 5px;
}

.testimonial p {
  font-style: italic;
  font-size: 1rem;
}

.testimonial img {
  border-radius: 20%;
  margin: 10px 0;
}





            /*    Templete section 5    */  


  .section {
  
  color: white;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 25px 17px;
}

.section-title {
    margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: bold;
}

.section-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #ccc;
}

.card-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background-color: #f8f9fa;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.card-title {
  font-weight: 600;
  font-size: 1.2rem;
}

.card-text {
  font-size: 0.95rem;
  color: #333;
}

.card img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .card img {
    height: 120px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .card-text {
    font-size: 0.9rem;
  }
}






    /*     section 6   */
    

/* Outer section layout */
.sec6-wrapper {
  min-height: 100%;
  width: 100%;
}

/* Section inner container */
.sec6 {
  max-width: 700px;
  margin: auto;
}

/* Box styling */
.integration-box {
  background: rgb(201, 226, 236);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

/* Code icon style */
.code-icon {
  font-size: 1.8rem;
  background: #0d6efd;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-right: 50px;
}

/* Logo card */
.platform-logo {
  background: white;
  padding:10px 20px;
  border-radius: 8px;
  width: 120px;
  text-align: center;
  margin: 0 20px 15px 80px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .sec6-left {
    text-align: center;
  }
  .platform-logo {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .integration-box {
    padding: 1.5rem;
  }
  .code-icon {
    font-size: 1.6rem;
  }
  .platform-logo {
    display: none;
  }
  .col-md-12 > .d-flex {
    justify-content: end !important;
  }
}

@media (max-width: 576px) {
  .integration-box {
    padding: 1rem;
  }
  .sec6-left h2 {
    font-size: 1.4rem;
  }
  .sec6-left p {
    font-size: 0.95rem;
  }
  .platform-logo {
    width: 80px;
    padding: 5px 8px;
  }
}



    .sec-7-parent {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
    }
    .sec-7 {
      margin: 50px 1rem;
      padding-top: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center !important;
    }
    .b6 {
      background-color: rgb(216, 216, 216);
      padding: 5px;
      border-radius: 3px;
      font-size: 12px;
    }

    /*     section video embed    */


/*SECTION 8*/

/* Main layout and background */
.installation {
  position: relative;
  z-index: 1;
}

.installation h2 {
  font-size: 2rem;
}

.installation .wrapper {
  display: grid;
  place-items: center;
  gap: 0.5rem;
  text-align: center;
}

.installation ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-bottom: 1rem;
}

.installation li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Background overlay */
.filter-embed {
  padding: 2rem;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.filter-embed::before {
  content: "";
  background-image: url(./images/section-7.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(50%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Embed card styling */
.embed-card {
  background-color: white;
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  border-radius: 0.5rem;
  display: grid;
  gap: 1rem;
  place-items: center;
  border: 1px solid var(--logo-text-clr, #ccc);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Responsive video iframe */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*SECTION 9------------DIVE IN*/



/* Platforms */
.code-platform {
  display: flex;
  font-size: 0.9rem;
  gap: 1rem;
  padding: 0.5rem;
  background-color: #eef1f7;
  flex-wrap: wrap;
  justify-content: center;
}

.code-platform div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Code image box */
.box-iframe {
  width: 90%;
}

.box-iframe img {
  width: 100%;
  object-fit: cover;
}

/* Media Queries */
@media only screen and (max-width: 768px) {
  .installation h2 {
    font-size: 1.5rem;
  }

  .embed-card {
    max-width: 100%;
    padding: 0.8rem;
  }

  .code-platform {
    font-size: 0.75rem;
  }

  .embed-card button {
    font-size: 0.85rem;
  }
}



    /*  story section   */

   
    .social-proof-container {
      max-width: 1300px;
    
      background-color: #111827;
      border-radius: 15px;
      padding: 40px;
      margin: 40px auto;
      color: white;
       overflow: hidden;
    }

    .social-proof-text h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .social-proof-text p {
      font-size: 1rem;
      line-height: 1.6;
    }

    .signature {
      font-family: cursive;
      font-size: 1.5rem;
      margin-top: 30px;
    }

    .video-thumbnail {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
       width: 100%;
      aspect-ratio: 16 / 12;
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      
       display: block;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      color: black;
      font-size: 1.5rem;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 0 15px rgba(0,0,0,0.3);
      z-index: 2;
      cursor: pointer;
    }

    @media (max-width: 992px) {
      .social-proof-container {
        flex-direction: column;
        height: auto;
      }
      .video-thumbnail {
        margin-top: 30px;
        height: auto;
      }
    }

    

    /*  user Reviews section   */

    .testimonial-card {
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      background: white;
      height: 100%;
      box-shadow: 0 0 10px rgba(0,0,0,0.03);
    }
    .testimonial-img {
      width: 40px;
      height: 40px;
      border-radius: 20%;
      object-fit: cover;
      margin-right: 10px;
    }
    .star-rating {
      color: #fbbc05;
    }
    .testimonial-footer {
      font-size: 0.85rem;
      color: #6c757d;
    }

    /*    FAQ's / price  section   */

    .pricing-section {
      padding: 80px 20px 40px;
      text-align: center;
    }
    .btn-dark {
      border: 1px solid whitesmoke;
      border-right: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
    .btn-light {
      border: 1px solid whitesmoke;
      border-left: none;
      border-bottom-left-radius: 0;
      border-top-left-radius: 0;
    }
    .card.highlight {
      border: 5px solid #0d6efd;
      box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
    }
    .card-body {
      border-radius: 10px;
    }
    h3 .card span {
      background-color: #0d6efd;
      color: white;
      padding: 6px 3px;
      font-size: 13px;
    }
    .faq-sec {
      margin-top: 40px;
      padding-top: 40px;
    }
    .faq-section {
      padding: 40px 20px;
    }
    .accordion {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
    .accordion-item {
      border: none;
      box-shadow: rgba (0 0 0.5 0.4);
      background: transparent;
    }
    .form-switch .form-check-input {
      cursor: pointer;
    }
    .accordion-header {
      border: none;
    }

   
/* Input Field */
.cta-form-input {
  max-width: 300px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
}

/* Cards Style */
.widget-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
}

/* Overlay Text (optional) */
.overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.badge-date {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #000;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 5px;
  padding: 3px 6px;
  opacity: 0.8;
}

/* ---------- RESPONSIVE FIXES ---------- */

/* xl to xxl */
@media (min-width: 1200px) {
  .widget-card {
    height: 300px;
  }
}

/* md to lg screens */
@media (max-width: 1199px) {
  .widget-card {
    height: 260px;
  }
}

/* sm to md screens */
@media (max-width: 991px) {
  .con-dive {
    padding: 1.5rem;
  }
  .widget-card {
    height: 220px;
  }
}

/* xs screens */
@media (max-width: 576px) {
  .cta-form-input {
    max-width: 100%;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
  }

  .cta-pry {
    width: 100%;
    border-radius: 0.375rem;
  }

  form.d-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .widget-card {
    height: 180px;
  }

  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .con-dive {
    padding: 1rem;
  }
}



    /*     featured section   */

  .feature-box {
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 20px;
      background-color: #ffffff;
      height: 100%;
      transition: box-shadow 0.3s;
    }

    .feature-box:hover {
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .feature-icon {
      font-size: 1.5rem;
      color: #0d6efd;
      margin-bottom: 10px;
    }

    .feature-title {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .feature-description {
      font-size: 0.9rem;
      color: #555;
    }

    /*    footer    */

    .footer {
      background-color: #1c1c1e;
      color: #ffffff;
      padding: 60px 0;
    }
    .footer h5 {
      font-size: 16px;
      margin-bottom: 20px;
    }
    .footer p, .footer a {
      color: #ccc;
      font-size: 14px;
      text-decoration: none;
    }
    .footer a:hover {
      color: #fff;
      text-decoration: underline;
    }
    .cta-section {
      background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
      text-align: center;
      padding: 80px 20px;
    }
    .cta-section h2 {
      font-weight: bold;
    }
    .cta-section .cta-form-input {
      max-width: 300px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      cursor: pointer;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
}
