@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");

/*******General Changes Start***********/
* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* ========================================================================
   MOBILE RESPONSIVE FIXES - DO NOT REMOVE
   These fixes ensure proper display on mobile devices
   ======================================================================== */

/* FIX 1: Hamburger menu - Add spacing between buttons */
@media (max-width: 991px) {
  .navbar-nav li.nav-item {
    margin-bottom: 10px !important;
  }
  
  .navbar-nav li.nav-item.dropdown {
    margin-bottom: 15px !important;
  }
  
  /* FIX 2: Products section - Prevent text overflow from white boxes */
  .container-info-2 .col-sm-3 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px !important;
    margin-bottom: 25px !important;
  }
  
  .container-info-2 .col-sm-3 p {
    display: none !important; /* Hide blue text on mobile view only */
  }
  
  /* FIX 3: Logo cut off on right side - Remove excessive left padding on mobile */
  .navbar-brand img,
  img[alt="Logo"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 95% !important;
  }
  
  /* FIX 4: Products section - Additional fixes for text overflow */
  .product-section .col-sm-3 p,
  .custom-col p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    padding: 10px 15px !important;
    margin: 10px 0 !important;
    max-width: 100% !important;
  }
  
  /* Ensure product cards contain their content */
  .custom-col {
    overflow: hidden !important;
    padding: 15px !important;
  }
  
  /* FIX 5: Footer - Remove left padding that causes copyright text cut off */
  .company-details .row[style*="padding-left"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  footer .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .copyright {
    padding: 10px 15px !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .copyright p {
    margin: 0 !important;
    padding: 0 5px !important;
    font-size: 0.9rem !important;
    text-align: center !important;
  }
  
  /* FIX 6: Clients carousel - Stack logos vertically instead of side-by-side */
  .carousel-item .row {
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .carousel-item .row .col-4 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  
  .carousel-item .row .col-4 img {
    max-width: 250px !important;
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  
      /* FIX 7: Compliance page - Hide quotes image on mobile view only */
      img[src*="quotes.png"],
      img[alt="quotes"],
      img[width="70rem"],
      img.img-fluid[src*="quotes.png"],
      span img[src*="quotes.png"] {
        display: none !important;
      }
      
      /* Ensure the parent container has relative positioning for absolute child */
      .col-12.col-md-9.text-center > div:first-child,
      .col-12.col-md-9.text-center > div:first-child span {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        height: 0 !important;
        margin-bottom: 0 !important;
      }
      
      /* Adjust the testimonial box to accommodate the quote image */
      .company-testimonies {
        position: relative !important;
        margin-top: 20px !important;
        padding-top: 25px !important;
      }
  
  /* FIX 8: Other products section - Reduce white box size to fit rectangular images */
  /* Target all custom-col elements with bg-light that have fixed dimensions */
  .row.justify-content-around .custom-col.bg-light,
  .custom-col.text-center.bg-light {
    height: auto !important;
    min-height: 100px !important;
    width: auto !important;
    max-width: calc(50% - 10px) !important;
    padding: 15px 10px !important;
    margin: 10px 5px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 auto !important;
  }
  
  /* Ensure images fit properly inside the boxes without being cut */
  .custom-col.text-center.bg-light .inner-image,
  .custom-col.bg-light .inner-image {
    max-width: 100% !important;
    max-height: 100px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }
  
  /* Make sure the links/anchors don't overflow */
  .custom-col.text-center.bg-light a,
  .custom-col.bg-light a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
  }
  
  /* FIX 9: Hamburger menu Products dropdown - Fix UI glitching */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
    padding: 10px 0 !important;
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.25rem !important;
    box-shadow: none !important;
  }
  
  .navbar-nav .dropdown-item {
    padding: 10px 20px !important;
    margin: 0 !important;
    border-bottom: 1px solid #e9ecef !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .navbar-nav .dropdown-item:last-child {
    border-bottom: none !important;
  }
  
  .navbar-nav .dropdown-item:hover {
    background-color: #e9ecef !important;
  }
  
  /* Ensure dropdown doesn't overflow */
  .navbar-nav .nav-item.dropdown {
    position: relative !important;
  }
  
  /* FIX 10: Features table - Make responsive for mobile with horizontal scroll */
  /* Allow table container to scroll horizontally */
  .container[style*="overflow-x"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-width: 100vw !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Ensure table wrapper allows scrolling */
  .container[style*="overflow-x"] .container-fluid,
  .container[style*="overflow-x"] .container-fluid .row,
  .container[style*="overflow-x"] .container-fluid .col {
    overflow-x: visible !important;
    max-width: none !important;
  }
  
  .table.table-bordered {
    min-width: 600px !important;
    width: auto !important;
    max-width: none !important;
    overflow-x: visible !important;
    display: table !important;
    table-layout: auto !important;
    margin: 0 auto !important;
  }
  
  /* Make table headers smaller on mobile */
  .table.table-bordered thead th {
    font-size: 0.9rem !important;
    padding: 10px 5px !important;
    white-space: nowrap !important;
  }
  
  .table.table-bordered thead th div {
    font-size: 1.2rem !important;
    padding: 10px 5px !important;
  }
  
  /* Make table header images smaller */
  .table.table-bordered thead th img {
    width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
  }
  
  /* Make table body rows more compact */
  .table.table-bordered tbody th,
  .table.table-bordered tbody td {
    font-size: 0.85rem !important;
    padding: 8px 5px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    vertical-align: middle !important;
  }
  
  /* Style row headers */
  .table.table-bordered tbody th[scope="row"] {
    font-size: 0.9rem !important;
    padding: 10px 8px !important;
    max-width: 200px !important;
  }
  
  .table.table-bordered tbody th[scope="row"] div {
    font-size: 0.9rem !important;
    padding: 0 !important;
  }
  
  /* Style checkmarks and images in table cells */
  .table.table-bordered tbody td i {
    font-size: 1.5rem !important;
  }
  
  .table.table-bordered tbody td img {
    width: 24px !important;
    height: auto !important;
    max-width: 24px !important;
  }
  
  /* Style buttons in table */
  .table.table-bordered tbody td .btn {
    font-size: 0.85rem !important;
    padding: 8px 15px !important;
    white-space: nowrap !important;
  }
  
  /* Ensure table container doesn't overflow */
  .container[style*="overflow-x"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* FIX 11: Comprehensive text cutoff prevention - Ensure all content fits within viewport */
  /* Force all containers to respect viewport width, but allow tables to scroll */
  .container,
  .container-fluid {
    max-width: 100vw !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  
  /* Exception: Allow horizontal scroll for containers with tables */
  .container-fluid.mt-4,
  .container[style*="overflow-x"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  
  /* Ensure all text elements wrap properly */
  p, h1, h2, h3, h4, h5, h6, span, div, li, a, td, th {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Prevent long words from causing overflow */
  * {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Ensure all headings wrap properly with appropriate sizes */
  h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem) !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  h2 {
    font-size: clamp(1.25rem, 4.5vw, 2rem) !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  h3 {
    font-size: clamp(1.1rem, 4vw, 1.75rem) !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  h4, h5, h6 {
    font-size: clamp(1rem, 3.5vw, 1.5rem) !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Ensure heading content inside headings is not larger than the heading itself */
  h1 *, h2 *, h3 *, h4 *, h5 *, h6 * {
    font-size: inherit !important;
  }
  
  /* Fix footer text cutoff */
  footer .container-fluid,
  footer .row,
  footer .col,
  .copyright,
  .copyright p {
    max-width: 100vw !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  
  /* Ensure copyright text doesn't overflow */
  .copyright {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  
  .copyright p {
    max-width: 100% !important;
    width: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
  }
  
  /* Fix all list items and links */
  li, a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    white-space: normal !important;
  }
  
  /* Ensure product section text doesn't overflow */
  .product-section *,
  .container-info-2 * {
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  
  /* Fix table cells to prevent overflow - but allow table to scroll */
  .table.table-bordered td, 
  .table.table-bordered th {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    padding: 5px !important;
  }
  
  /* Allow table cells to have their natural width for scrolling */
  .table.table-bordered th,
  .table.table-bordered td {
    max-width: none !important;
  }
  
  /* Ensure all rows respect viewport */
  .row {
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }
  
  /* Fix columns to prevent overflow */
  [class*="col-"] {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure all divs respect viewport */
  div {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Special fix for nested containers */
  .container > .container,
  .container-fluid > .container,
  .container-fluid > .container-fluid {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* ==========================================================================
   Product demo video sections
   ========================================================================== */
.product-demo-section {
  background: #f5f7fb;
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  margin-bottom: 2rem;
}
.product-demo-section .demo-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0c418e;
  margin-bottom: 0.5rem;
}
.product-demo-section h2 {
  color: #0c418e;
  margin-bottom: 1rem;
}
.product-demo-section .demo-highlights {
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.product-demo-section .demo-highlights li {
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.demo-video-wrapper {
  border-radius: 20px;
  background: #ffffff;
  padding: 0.75rem;
}
.demo-video-wrapper video {
  width: 100%;
  display: block;
  border-radius: 15px;
  background-color: #000;
}
.demo-video-wrapper .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
}
.demo-video-wrapper .embed-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}
.demo-video-wrapper .embed-responsive .embed-responsive-item,
.demo-video-wrapper .embed-responsive iframe,
.demo-video-wrapper .embed-responsive embed,
.demo-video-wrapper .embed-responsive object,
.demo-video-wrapper .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 15px;
}
@media (max-width: 991px) {
  .product-demo-section {
    padding: 1.5rem 1rem;
  }
  .demo-video-wrapper {
    padding: 0.5rem;
  }
}

/* Stack other products boxes on smaller screens */
@media (max-width: 767px) {
  .row.justify-content-around .custom-col.bg-light {
    max-width: calc(50% - 10px) !important;
    margin: 5px !important;
  }
}

@media (max-width: 480px) {
  .row.justify-content-around .custom-col.bg-light {
    max-width: 100% !important;
    width: 100% !important;
    margin: 10px 0 !important;
  }
}

/* 
body{
    width: 90%;
    margin: 0 5% 0 5%;
} */

.nav-item .dropdown-menu {
  margin-top: -7% !important;
}

.row {
  margin-right: 0%;
}
.container-fluid {
  width: 100%;
  margin-right: 0%;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}

.textblue {
  color: #0c418e;
}

.textgreen {
  color: #209d5c;
}

.bg-green {
  background-color: #209d5c;
}

.bg-blue {
  background-color: #0c418e;
}

.btn {
  background-color: #0c418e;
  color: white;
  border-radius: 0;
}

.btn:hover {
  color: white;
}
.fntCopy {
  border-top: 1px solid #ccc;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.container-fluid {
  margin: 0 0 0 0;
}

h2 {
  padding: 3rem 0 1rem 0;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

.top {
  height: 80px;
}

.greenline{
  background: #209d5c;
  width: 100%;
  height: 0.2rem;
  border-radius: 5rem;
}
.padding-none{
  padding:0rem !important;
  padding-top: 0rem !important;
}


/*******General Changes End***********/
/* .top-section{
  
} */
/*************** Footer Start***********/
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-logo {
  padding-left: 50px;
}

.arrow-list li {
  list-style: none;
  position: relative;
  color: #0c418e;
}

.arrow-list li:before {
  content: "\003E";
  position: absolute;
  left: -1.1rem;
}

::placeholder {
  color: #209d5c;
}

/*************** Footer End***********/

/*******navbar Start***********/
.navbar {
  padding: 1.5rem;
  font-weight: 400;
}
.navbar {
  background-color: #ffffff;
}
/* Background color change on scroll */
.navbar.scrolled {
  background-color: #ffffff; /* Change this to your desired color */
}

.navbar-brand {
  flex-basis: 30%;
  display: flex;
  justify-content: center;
}

.navbar-nav {
  color: #0c418e;
  padding-left: 4rem;
  text-align: center;
  padding-top: 1rem;
}

.navbar-toggler {
  order: -1;
}

#navbarNav a {
  color: #0c418e;
  font-size: 18px !important;
}

.navbar-nav ul {
  width: 100%;
  justify-content: space-around;
  color: #0c418e;
}

.nav-item .dropdown-menu {
  margin-top: 50%;
}

/*******navbar End***********/

/***********Index page 1 Start**********/

.banner .row {
  font-weight: 400;
  font-size: 1.25rem;
  padding: 4rem;
  line-height: 2rem;
}
/* .bottom-text{
    font-size: 1.25rem;
    font-weight: 400;
} */

.container-info-2 p {
  font-size: 1.25rem;
  font-weight: 500;
}

.maxwidth {
  margin-top: 2rem;
}

.product-list ul {
  list-style-type: none;
}

.comapany-list ul {
  list-style-type: none;
}

.custom-col {
  box-shadow: 10px 10px 10px -7px rgba(0, 0, 0, 0.41);
  background-color: white;
}

.custom-col-2 {
  box-shadow: -2px 0px 13px 3px rgba(0, 0, 0, 0.22);
  background-color: white;
}

.custom-col-3 {
  box-shadow: 0px 2px 14px 10px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.custom-col-line {
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
}

.custom-col-line::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: #ccc;
}

.sliding {
  font-weight: 700;
}

.laws h5 {
  font-weight: 600;
}
.law .card-img-top {
  height: 60%;
  width: 6rem;
}

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

.container-corporate-success {
  padding: 1rem 0 1rem 0;
}

.container-testimonials q {
  font-size: 1.25rem;
  font-weight: 500;
}

.features {
  line-height: 2rem;
}
.features .col-sm-6 {
  line-height: 2rem;
  align-self: center;
}

.office-text {
  font-size: 1.1rem;
  font-weight: 500;
}

/***********index page 1 End**********/

/***************Founder page Start*********/

.team-container {
  position: relative;
  /* margin-left: 5%; */
  height: 35vh;
  width: 100%;
  background-color: #209d5c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 5rem;
  text-align: center;
}

.team-container .overlay-text h1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.team-container .centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: white;
  pointer-events: none;
  font-weight: 500;
}

.founders .row {
  margin: 2rem;
}

.founders h1 {
  text-align: center;
  font-size: 2.25rem;
  color: #209d5c;
  font-weight: 500;
}

.founders hr {
  background-color: lightgray;
  border: 0 none;
  height: 0.5rem;
  margin-left: 41%;
  border-radius: 4px;
  width: 18%;
  margin-top: -0.5rem;
}

.founders .card {
  color: #209d5c;
  border: 0;
  width: 250px;
  height: 350px;
  padding: 1rem;
  margin: 2rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.founders .card img {
  align-self: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* .founders .card.expanded-card {
  z-index: 1;
  max-height: 20rem;
 transform: scale(2);
}  */

/* .founders .card.expanded-card h5 {
  font-size: 16px;
} */

.founders .card-text {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.founders .card-body-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.5rem;
}

/* .founders .card.expanded-card .card-body-hidden {
  max-height: 20rem;
  font-size: 0.4rem;
  padding-bottom: 3rem;
} */

/* .founders .card.expanded-card .card-text {
  opacity: 0;
}
.founders .expanded-card .sub-title-post {
  font-size: 1rem;
}

.founders .expanded-card .card-text {
  height: 0px;
} */

.core-team h1 {
  text-align: center;
  font-size: 1.5rem;
  color: #209d5c;
  font-weight: 500;
}

.core-team hr {
  background-color: lightgray;
  border: none;
  height: 0.5rem;
  margin-left: 41%;
  border-radius: 4px;
  width: 18%;
  margin-top: -0.5rem;
}

.core-team .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.core-team .card {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  color: #209d5c;
  transition: all 0.3s ease;
  width: 18rem;
  /* height: 18rem; */
  height: auto;
  border: 0;
  /* border-radius: 50%; */
}
.modal-body div>div>div>img {
  border-radius: 50%; 
  width: 350px;
  height: 350px;
}
.core-team .card img {
  margin-top: 1.5rem;
  align-self: center;
  width: 150px;
  height: 150px;
  margin-bottom: 10px;
  border-radius: 50%;
}
.modal-dialog {
  max-width: 1000px !important;
  width: 100%;
}

.modal-content {
  width: 1000px !important;
}

.core-team .card-text {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* .core-team .card.expanded-card {
  transform: scale(1.6);
  max-height: 20rem;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
} */

/* .core-team .card.expanded-card .card-text {
  opacity: 0;
}

.core-team .card.expanded-card img {
  width: 100px;
  height: 100px;
}

.core-team .card-body-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.core-team .card.expanded-card .card-body-hidden {
  max-height: 20rem;
  font-size: 0.6rem;
  padding-bottom: 3rem;
  margin-top: -2rem;
}
.core-team .expanded-card .sub-title-post {
  font-size: 1rem;
}

.core-team .expanded-card .sub-title-post {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.core-team .expanded-card .card-text {
  height: 10px;
} */

/***************Founder page End*********/

/***********Page- About Us ************/

/**********About us**********/

/* .what-sets-text{
    margin: 6rem 0;
  }


.what-sets-text  h1{
    text-align: center;
    font-size: 1.5rem;
    color:#0c418e;
    font-weight: 500;
}

.what-sets-text  hr{
    background-color:lightgray;
    border: 0 none;
    height: 0.5rem;
    margin-left: 35%;
    border-radius: 4px;
    width: 30%;
    margin-top: -0.5rem ;
}


.what-sets-text p{
    padding: 3rem 5rem ;
    font-size: 1.5rem;
}

/* .what-sets-text .container-fluid{
    margin: 0 2% 0 2%;
    background-color: white ;
    z-index: 1 ;
} */

/*
.our-approch-text{
    margin: 6rem 0;
    margin-right: 5%;
    margin-left: -3%;
}

.our-approch-text  h1{
    text-align: center;
    font-size: 1.5rem;
    color:#0c418e;
    font-weight: 500;
}

.our-approch-text hr{
    background-color:lightgray;
    border: 0 none;
    height: 0.5rem;
    margin-left: 40%;
    border-radius: 4px;
    width: 20%;
    margin-top: -0.5rem ;
}

.our-approch-text p{
    padding-top: 2rem;
    font-size: 1.1rem;
    text-align: left;
 }
 .our-approch-text .container-fluid{

    background-color: white ;
    z-index: 1 ;
}

.our-approch-text .box img {
    max-width: 100%;
    height: auto;
    border: 3px solid pink;

  }


.background{
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #209d5c;
}



.quality-policy  h1{
    text-align: center;
    font-size: 1.5rem;
    color:#0c418e;
    font-weight: 500;
}

.quality-policy hr{
    background-color:lightgray;
    border: 0 none;
    height: 0.5rem;
    margin-left: 32%;
    border-radius: 4px;
    width: 35%;
    margin-top: -0.5rem ;
}
 */

/****************aboutus***********/

.about-us-container {
  position: relative;
  /* margin-left: 5%; */
  height: 35vh;
  width: 100%;
  background-color: #209d5c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 5rem;
  text-align: center;
}
.about1-us-container {
  position: relative;
  /* margin-left: 5%; */
  height: 60vh;
  width: 100%;
  background-color: #209d5c;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 5rem;
  text-align: center;
}
.about1-us-container .overlay-text h1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.contact-container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  margin-top: 430px;
}

.about-us-container .overlay-text h1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.about-us-container .centered-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: white;
  pointer-events: none;
  font-weight: 500;
}

.about-us-text h1 {
  text-align: center;
  font-size: 1.5rem;
  color: #209d5c;
  font-weight: 500;
}

.about-us-text hr {
  background-color: lightgray;
  border: 0 none;
  height: 0.5rem;
  margin-left: 41%;
  border-radius: 4px;
  width: 18%;
  margin-top: -0.5rem;
}

.about-us-text h3 {
  color: #0c418e;
  font-weight: 600;
}

.about-us-text .box {
  display: flex;
  align-items: center;
  padding: 20px;
  height: 100%;
}

.about-us-text .box2 {
  text-align: right;
}

.about-us-text .box img {
  max-width: 100%;
  height: auto;
}

.green-container-1 {
  background-color: #209d5c;
  position: relative;
  z-index: 1;
  height: 30rem;
  width: 2%;
  float: right;
}

.white-container-1 {
  background-color: white;
  position: relative;
  z-index: 2;
  height: 30rem;
  width: 95%;
  float: left;
}

.what-set h1 {
  margin-top: 2rem;
  color: #0c418e;
  font-size: 1.5rem;
}

.what-set hr {
  background-color: lightgray;
  border: 0 none;
  height: 0.5rem;
  margin-left: 35%;
  border-radius: 4px;
  width: 30%;
  margin-top: -0.2rem;
  margin-bottom: 4rem;
}

.content-1 {
  padding: 20px;
  margin-top: -6rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.image-container {
  flex: 1;
  padding-right: 20px;
}

.image-container img {
  max-width: 114%;
  height: auto;
  margin-top: 2rem;
}

.text-container {
  flex: 1;
  text-align: left;
}

.text-container p {
  font-size: 1.2rem;
}

.white-container {
  background-color: white;
  position: relative;
  z-index: 2;
  height: 30rem;
  width: 95%;
  float: right;
}

.green-container {
  background-color: #209d5c;
  position: relative;
  z-index: 1;
  height: 30rem;
  width: 2%;
  float: left;
}

.green-container-2 {
  background-color: #209d5c;
  position: relative;
  z-index: 1;
  height: 30rem;
  width: 2%;
  float: right;
}
.content {
  padding: 20px;
  margin-top: -6rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.our-approch h1 {
  margin-top: 2rem;
  color: #0c418e;
  font-size: 1.5rem;
}

.our-approch hr {
  background-color: lightgray;
  border: 0 none;
  height: 0.5rem;
  margin-left: 40%;
  border-radius: 4px;
  width: 20%;
  margin-top: -0.2rem;
  margin-bottom: 4rem;
}

.why-choose {
  margin: 5rem 0;
  display: flex;
  flex-direction: column;
}

.why-choose .box img {
  max-width: 100%;
  height: auto;
}

/* .why-choose p {
  font-size: 1.2rem;
  padding-top: 2rem;
  padding-left: 1rem;
} */

.quality-policy {
  display: flex;
}
.green-container-2 {
  background-color: #209d5c;
  position: relative;
  z-index: 1;
  height: 20rem;
  width: 2%;
  float: right;
}

.white-container-2 {
  background-color: white;
  position: relative;
  z-index: 2;
  height: 20rem;
  width: 95%;
  float: left;
}

.quality-policy h1 {
  color: #0c418e;
  font-size: 1.5rem;
}

.quality-policy hr {
  background-color: lightgray;
  border: 0 none;
  height: 0.5rem;
  margin-left: 35%;
  border-radius: 4px;
  width: 30%;
  margin-top: -0.2rem;
  margin-bottom: 8rem;
}

.quality-policy .big-arrow-list li {
  list-style: none;
  position: relative;
  text-align: left;
  padding-left: 1.5rem;
}

.quality-policy .big-arrow-list li:before {
  content: "\27A4";
  position: absolute;
  left: -1rem;
  color: #0c418e;
  font-size: large;
}

.content-2 {
  padding: 20px;
  margin-top: -6rem;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 5rem;
  font-size: 1.2rem;
}

/***************About us page End*********/

/*************** Demo form  page Start *********/

.demo-container {
  margin-top: 3rem;
  display: flex;
}
.demo-left-section {
  min-width: 50%;
  background-color: #209d5c;
}

.demo-left-section-inner-text {
  max-width: 600px;
  margin: auto;
  padding-top: 4rem;
  color: white;
}

.demo-right-section {
  min-width: 50%;
}

.demo-right-section-form {
  float: left;
}

.demo-right-inner-form {
  border-radius: 5px;
  padding: 2rem;
  max-width: 650px;
  margin-top: 2rem;
  background: #fff;
  border: 1px solid #e2ebf6;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  width: 90%;
}

select {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  box-sizing: border-box;
  appearance: none; /* Removes default arrow in Firefox */
  -webkit-appearance: none; /* Removes default arrow in Chrome/Safari */
  background-color: white; /* Match Bootstrap's default background */
}

/* Arrow icon */
select::after {
  content: "\25BC"; /* Unicode character for down arrow */
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.list-items ul {
  margin-left: 4rem;
}


/* Layout Fix */
.demo-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Left Section Styling */
.demo-left-section {
  flex: 1;
  padding: 40px;
}
.btn {
  width: 200px;
}
/* Right Section Styling */
.demo-right-section {
  flex: 1;
  padding: 40px;
  display: flex;
  align-items: center;
}

/* Form Styling */
.demo-right-section-form {
  width: 100%;
  background-color: #f9f9f9; /* Optional: Light background for form */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

form .form-group .row {
  margin-bottom: 10px;
}

form label {
  font-weight: 500;
  margin-bottom: 4px;
}

form .form-control {
  padding: 8px 10px;
  font-size: 14px;
}

form .btn {
  padding: 10px 20px;
  font-size: 16px;
}

/* Optional: Reduce padding on small screens */
@media (max-width: 768px) {
  .demo-container {
      flex-direction: column;
  }

  .demo-left-section,
  .demo-right-section {
      padding: 20px;
  }

  .demo-right-section-form {
      padding: 20px;
  }
}

.demo-right-section {
  flex: 1;
  display: flex;
  justify-content: flex-start; /* align form to the left inside right section */
  align-items: flex-start;     /* align to top, remove if you want center */
  padding: 40px;
}

.demo-right-section-form {
  width: 100%;       /* take full width of right section */
  padding: 0;        /* remove extra padding if needed */
  margin: 0;         /* remove margin if any */
  box-shadow: none;  /* optional: remove box if you don’t want card-style */
  background: none;  /* optional */
}


/*************** Demo form  page End *********/

/*************** policy page End *********/

.ml-6 {
  margin-left: 5.5rem;
}

.fontsize-small {
  font-size: 1.3rem;
}

/*************** policy page End *********/

/************** Media Query **************/

@media (max-width: 767.98px) {
  .navbar-collapse {
    justify-content: flex-end;
  }
  .navbar-brand {
    display: inline-block;
    flex-basis: 70%;
  }

  .navbar-toggler {
    order: -1;
    margin-left: 5%;
  }

  .navbar-collapse ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-item .dropdown-menu {
    margin-top: 0;
  }
  .navbar-nav ul {
    justify-content: flex-end;
    text-align: center;
  }
}

@media (max-width: 585px) {
  .maxwidth {
    justify-content: space-around;
    margin-right: -4rem;
    margin-left: -4rem;
  }

  .custom-col {
    margin-top: 2rem;
    height: 130px !important;
  }

  .container-info-2 .row {
    margin-top: -2rem;
  }

  .banner .row {
    padding: 0 !important;
  }

  .row {
    padding: 0 !important;
    margin-left: 0 !important;
  }

  /* .width-responsive{
    width: 17rem !important;
  } */
  .margin-responsive {
    margin-top: 7rem !important;
  }
  .demo-right-inner-form {
    margin-left: 0rem !important;
  }

  /* .image-container img{
    display: none !important;
  } */

  /* .text-container p{
margin-top: 5rem;
  } */

  /************** Media Query for Boards**************/

  .responsive-boards img {
    width: 25rem !important;
  }
  .footer-logo {
    padding-left: 0px;
  }
}

@media (max-width: 585px) {
  .demo-container {
    display: block;
    margin: 0rem 0rem 0rem 0.8rem;
  }
  .laws .law {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .laws .law .card {
    margin-right: 5rem;
    width: 15rem;
  }
  .image-container img {
    display: none !important;
  }
  .footer-logo {
    padding-left: 0px;
  }
  *, ::after, ::before {
    box-sizing: unset;
}
}


/***** Mobile CSS *****/
.mobile-app-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: flex;
  flex-direction: column;
  width: 300px;
  z-index: 9999;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease-in-out;
}

.mobile-app-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-text h4 {
  font-size: 1rem;
  margin: 0;
  color: #1a202c;
}

.promo-text p {
  font-size: 0.85rem;
  margin: 5px 0 10px;
  color: #4a5568;
}

.promo-image img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
}

.btn.google-play {
  background-color: #34a853;
  color: white;
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
}

/* ========================================================================
   ADDITIONAL MOBILE RESPONSIVE FIXES
   ======================================================================== */

/* CRITICAL: Prevent horizontal scroll on all mobile devices */
@media (max-width: 767px) {
  /* Global overflow prevention */
  html {
    overflow-x: hidden !important;
  }
  
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  
  /* Fix excessive Bootstrap margins causing overflow */
  .m-5 {
    margin: 1rem 0.5rem !important;
  }
  
  .mx-5 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  
  .my-5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* Fix for laws section cards */
  .laws .card {
    margin: 10px auto !important;
    width: calc(100% - 20px) !important;
    max-width: 350px !important;
  }
  
  .laws .card.m-5 {
    margin: 10px 10px !important;
  }
  
  /* Product pages image responsiveness */
  .responsive-boards img,
  .text-center img[width] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  .img-thumbnail,
  .rounded-circle {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    margin: 20px auto !important;
    display: block !important;
  }
  
  /* Contact page specific */
  .container .px-5 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  .col-md-6 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Social icons spacing */
  .d-flex.ml-5 {
    margin-left: 0 !important;
    justify-content: center;
  }
  
  .d-flex.ml-5 a {
    margin: 0 15px !important;
  }
  
  /* Demo form specific additions */
  .demo-left-section-inner-text {
    padding: 15px;
  }
  
  .demo-left-section-inner-text h1 {
    font-size: 1.5rem !important;
    margin-bottom: 15px;
  }
  
  .demo-left-section-inner-text h2 {
    font-size: 1.3rem !important;
    margin-top: 20px;
  }
  
  .demo-left-section-inner-text p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
  
  .demo-left-section-inner-text ul {
    padding-left: 25px;
  }
  
  .demo-left-section-inner-text li {
    margin-bottom: 10px;
    font-size: 0.95rem;
  }
  
  /* Form submit button */
  .button .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
  
  /* hCaptcha responsive */
  .h-captcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
  
  /* Banner images on product pages */
  .banner .col-md-6 img[width="250px"] {
    width: 150px !important;
    max-width: 150px !important;
  }
  
  /* Company testimonies */
  .company-testimonies {
    margin: 20px 10px !important;
    padding: 20px 15px !important;
    font-size: 1rem !important;
  }
  
  .company-testimonies q {
    font-size: 0.95rem !important;
  }
  
  /* Responsive margins for sections */
  .mt-5.margin-responsive,
  .container .mt-5 {
    margin-top: 20px !important;
  }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  .demo-container {
    padding: 30px 20px;
  }
  
  .demo-left-section,
  .demo-right-section {
    padding: 25px;
  }
  
  .img-thumbnail,
  .rounded-circle {
    max-width: 300px;
  }
  
  .banner .col-md-6 {
    padding: 20px;
  }
}

/* Extra small devices - portrait phones */
@media (max-width: 480px) {
  .demo-left-section-inner-text h1 {
    font-size: 1.3rem !important;
  }
  
  .demo-left-section-inner-text h2 {
    font-size: 1.1rem !important;
  }
  
  .form-control {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  /* Smaller captcha on very small screens */
  .h-captcha {
    transform: scale(0.77);
  }
}

/* Landscape mode adjustments */
@media (max-width: 767px) and (orientation: landscape) {
  .banner {
    padding: 20px 0;
  }
  
  .demo-container {
    padding: 15px;
  }
  
  .top {
    height: 60px;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ==========================================================================
   Client Logo Carousel - Professional Alignment
   ========================================================================== */
#myCarousel .carousel-item {
  padding: 40px 20px;
  min-height: 180px;
}

#myCarousel .carousel-item .row {
  align-items: center;
  justify-content: center;
  height: 100%;
}

.client-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 20px;
  margin: 0 auto;
  background: transparent;
}

.client-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  filter: grayscale(0%);
  transition: all 0.3s ease;
}

/* Ensure all logos are properly contained */
#myCarousel .col-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

/* Responsive adjustments for client logos */
@media (max-width: 991px) {
  .client-logo-wrapper {
    height: 120px;
    padding: 15px;
  }
  
  #myCarousel .carousel-item {
    padding: 30px 15px;
    min-height: 160px;
  }
}

@media (max-width: 767px) {
  .client-logo-wrapper {
    height: 100px;
    padding: 10px;
  }
  
  #myCarousel .carousel-item {
    padding: 20px 10px;
    min-height: 140px;
  }
  
  #myCarousel .col-4 {
    padding: 10px 5px;
  }
}

@media (max-width: 480px) {
  .client-logo-wrapper {
    height: 80px;
    padding: 8px;
  }
  
  #myCarousel .carousel-item {
    padding: 15px 5px;
    min-height: 120px;
  }
}

/* ==========================================================================
   Company Intro Video Section
   ========================================================================== */
.company-intro-video-section {
  background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
  padding: 80px 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.company-intro-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0c418e 0%, #28a745 100%);
}

.intro-video-content {
  padding-right: 40px;
}

.intro-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c418e;
  margin-bottom: 1rem;
}

.intro-title {
  color: #0c418e;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 2rem;
}

.intro-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-features li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  color: #333;
}

.intro-features li i {
  margin-right: 12px;
  margin-top: 4px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.intro-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(12, 65, 142, 0.15);
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-video-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(12, 65, 142, 0.25);
}

.intro-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.video-overlay-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(12, 65, 142, 0.1) 0%, rgba(40, 167, 69, 0.1) 100%);
  border-radius: 50%;
  z-index: -1;
}

/* Responsive adjustments for intro video section */
@media (max-width: 991px) {
  .company-intro-video-section {
    padding: 60px 20px;
    margin: 40px 0;
  }
  
  .intro-video-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .intro-title {
    font-size: 2rem;
  }
  
  .intro-description {
    font-size: 1.05rem;
  }
  
  .intro-features {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .company-intro-video-section {
    padding: 40px 15px;
    margin: 30px 0;
  }
  
  .intro-title {
    font-size: 1.75rem;
  }
  
  .intro-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .intro-features li {
    font-size: 0.95rem;
  }
  
  .intro-video-wrapper {
    border-radius: 12px;
  }
  
  .intro-video {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 1.5rem;
  }
  
  .intro-description {
    font-size: 0.95rem;
  }
  
  .intro-features li {
    font-size: 0.9rem;
  }
}