/* Naigation Css Start */
    :root {
      --bg-color: #fff;
      --text-color: #2d5b69;
      --btn-bg: #2e797d;
      --btn-text: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
     font-family:ProximaNova-Regular;
    }
  .color-green {color: #2bb3a2;}
    .navbar {
      background-color: var(--bg-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 10px;
      position: sticky;
      top: 0;
      z-index: 1001;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
.navbar {margin-bottom:0!important}
    .logo img {
      height: 40px;
    }

    .menu-toggle {
      display: none;
      font-size: 26px;
      color: var(--text-color);
      cursor: pointer;
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 10px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      color: var(--text-color);
      text-decoration: none;
      padding: 8px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
     font-size: 17px;
      font-weight: bold;
    }
    .nav-links a:hover {color:#000;}
    .nav-links .fa {
      margin-left: 6px;
      transition: transform 0.3s ease;
      font-size: 12px;
    }

    /* Dropdowns */
    .dropdown, .sub-dropdown {
      display: none;
      position: absolute;
      background-color: var(--bg-color);
      top: 100%;
      left: 0;
      flex-direction: column;
       min-width: 300px;
      z-index: 100;
    }

    .navbar .submenu:hover > .dropdown {
      display: flex;
    }

    .navbar .submenu:hover .dropdown .submenu:hover > .sub-dropdown {
      display: flex;
      left: 100%;
      top: 0;
    }

    .dropdown li a, .sub-dropdown li a {
      padding: 10px;
    }

    /* Auth Buttons */
    .auth-buttons {
      display: flex;
      gap: 10px;
    }

    .auth-buttons a {
     padding: 12px 12px;
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border-radius: 4px;
  
    text-decoration: none;
    margin-left: 40px;
    font-weight: bold;
    }

    .auth-buttons a:hover {
      background-color: #2bb3a2;
    }

    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1000;
      display: none;
    }

    .menu-overlay.active {
      display: block;
    }

    /* MOBILE STYLES */
    @media (max-width: 850px) {
      .menu-toggle {
        display: block;
      }

      .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        width: 280px;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        overflow-y: auto;
      }

      .nav-wrapper.active {
        left: 0;
      }

      .logo-mobile {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        justify-content: space-between;
        width: 100%;
      }

      .logo-mobile img {
        height: 40px;
      }

      .close-menu {
        display: block;
        font-size: 24px;
        cursor: pointer;
        color: var(--text-color);
      }

      .nav-links {
        flex-direction: column;
        width: 100%;
      }

      .nav-links li {
        width: 100%;
        border-bottom: 1px solid #ddd;
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      .dropdown, .sub-dropdown {
        position: static;
        display: none;
        flex-direction: column;
        background-color: transparent; /* ✅ background removed */
      }

      .dropdown.show-dropdown,
      .sub-dropdown.show-dropdown {
        display: flex;
      }

      .submenu.open > a .fa-angle-down {
        transform: rotate(180deg);
      }

      .submenu.open > a .fa-angle-right {
        transform: rotate(90deg);
      }

      .auth-buttons {
        margin-top: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 20px;
      }

      .auth-buttons a {
        text-align: center;
        margin-bottom: 10px;
      }
    }
 @media (max-width: 1154px) {

  .nav-links a {
  
    padding: 8px 2px;
    font-size: 15px;
   
}
.logo img {
  height: 30px;
}
.auth-buttons a {
    padding: 7px 4px;
   margin-left: 20px;
  font-size: 13px;
}
 }
    @media (min-width: 850px) {
      .close-menu, .logo-mobile {
        display: none !important;
      }
    }
     @media (max-width: 480px) {
      .logo img {
        height: 40px;
}
    }
/* Naigation End  */



/* banner section Start */
.banner-section {
  /* padding: 60px 0; */
}
.banner-section .btn {
    margin-top: 10px!important;
        font-size: 12px;
}
/* Slide layout */
.slide-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

/* Heading styling */
.banner-heading {
  color: #2d5b69;
  font-family: 'ProximaNova-Bold', sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 25px;
}

/* Banner column padding */
.banner-column {
  padding: 20px;
}

/* Responsive image sizing */
.banner-image {
  max-width: 100%;
  height: auto;
}

/* Custom Button */
.btn-custom {
  background-color: #2d5b69 !important;
  border-color: #2d5b69 !important;
  color: #fff !important;
  padding: 12px 25px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.btn-custom:hover {
  background-color: #244852;
  border-color: #244852;
}

/* Button Group */
.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
}

/* Vertically align columns */
.vertical-align {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
/* @media (max-width: 1170px) {
   .vertical-align {
    flex-direction: column;
  }
} */
/* Responsive adjustments */
@media (max-width: 991px) {
  .banner-heading {
    font-size: 36px;
    text-align: center;
  }
  .vertical-align {
    flex-direction: column;
  }
  .banner-column,
  .text-center {
    text-align: center;
  }
  .btn-group-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
}
@media (max-width: 767px) {
  .slide-item {
    padding: 40px 15px;
  }
  .banner-heading {
    font-size: 28px;
   margin-bottom: 0px;
  }
  .banner-section .btn {
  
    width: auto;
    margin: 0 auto;
}


  .btn-custom {
    /* width: 100%; */
    margin-right: 0;
  }
  .btn-group-custom {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Google Review Section */
.review-section {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 24px;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #2d5b69;
}

.google-logo {
  height: 36px;
}

.review-count {
  font-weight: 600;
}

.star-group i {
  font-size: 16px;
}

.text-warning {
    color: #ffb331!important;
}




/* Mobile Responsive */
@media (max-width: 767px) {
  .review-section {
    flex-direction: column;
    gap: 16px;
  }
  .google-logo {
    height: 30px;
  }
  .star-group i {
    font-size: 14px;
  }
  .review-count {
    font-size: 13px;
  }
}
/* banner section end */


/* About Section Start */
  .about-section {
  padding: 80px 20px;
}

.tag {
  display: inline-block;
  background: #fceee6;
  color: #ff6b00;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

h1 {
 
  line-height: 1.4;
  color: #111;
  margin-bottom: 20px;
}

h1 span {
  font-weight: bold;
  color: #111;
}

.desc {

  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.progress-box {
  margin-bottom: 30px;
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 5px solid #ff5c00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  background: #fff;
}

.media-body h4 {
  margin-top: 0;
  font-size: 18px;
  color: #111;
}

.media-body p {
  font-size: 14px;
  color: #555;
  max-width: 280px;
}

.bottom-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-orange {
  background-color: #ff5c00;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
}

.btn-orange:hover {
  background-color: #e44d00;
  color: #fff;
}

.call-info span {
  color: #ff5c00;
  font-size: 14px;
}

.call-info strong {
  color: #111;
  font-size: 16px;
}

/* Image Positioning */


.image-box .img2 {

  width: 100%;
  border-radius: 12px;
    z-index: 1;
    /* position: absolute; */
    /* top: 0; */
    /* left: 120px; */
    padding-left: 30px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .image-box {
    text-align: center;
    padding-top: 40px;
  }
  .image-box .img2 {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
  }

  .bottom-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.text-left {text-align:left!important;}

/* About Section End */





/* Products Index page css start */
    body {
      /* font-family: Arial, sans-serif; */
      background-color: #fff;
    }

    .feature-images-wrapper {
          padding: 60px 0;
       background: #f7f7f7;
    }


.service-box {
  flex: 1;
}
    .service-box {
      border: 1px dashed #ddd;
      padding: 40px 20px;
      text-align: center;
      transition: all 0.3s ease;
      background-color: #fff;
      position: relative;
      z-index: 1;
    }

    .service-box:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transform: scale(1.03);
      z-index: 2;
    }

    .service-box img {
      max-width: 80px;
      margin-bottom: 20px;
    }

    .service-box h5 {
    margin-bottom: 12px;
    font-size: 22px;
   
    }

    .service-box p {
      font-size: 17px;
      color: #555;
      margin: 0;
    }

    @media (max-width: 767px) {
      .service-box {
        padding: 30px 15px;
        margin-bottom: 20px;
        transform: none;
      }

      .service-box:hover {
        transform: none;
      }
    }
    .mb-30 {margin-bottom:30px!important;}

 /* Products Index page css End */

 /* Pricing table */

    .pricing-section {
       background-color: #ffffff;
      padding: 100px 20px 100px;
      font-size: 18px;
    }
    .pricing-section h2 {
      font-size: 32px;
      color: #0056b3;
      text-align: center;
      margin-bottom: 40px;
    }
    .pricing-table thead th{
      background-color: #0a7b83!important;
      color: white;
    }
    .pricing-table th,
    .pricing-table td {
      padding: 12px !important;
      vertical-align: middle !important;
      text-align: left;
    }
    .pricing-table tbody tr:nth-child(even) {
      background-color: #f2f2f2;
    }
    .pricing-table .pricing-row {
      background-color: #e6f7ff;
      font-weight: bold;
    }
    .pricing-note {
      text-align: center;
      margin-top: 20px;
      color: #888;
    }

    /* Optional: Center content on small screens */
    @media (max-width: 767px) {
      .pricing-table td,
      .pricing-table th {
        font-size: 14px;
      }
    }
     /* Pricing table */

     /* cities switch */

      .city-section {
        padding: 60px 15px 0 15px;
       /* background: #f7f7f7; */
    }

    .city-section h2 {
      text-align: center;
      color: #2e797d;
      margin-bottom: 30px;
      font-size: 30px;
    }

    .toggle-switch {
   display: inline-flex;
    border: 2px solid #2e797d;
    border-radius: 30px;
    overflow: hidden;
    background-color: #2e797d;
    }

    .toggle-switch .toggle-option {
      padding: 10px 30px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      background-color: transparent;
      color: #fff;
      font-size: 18px;
    }

    .toggle-switch .toggle-option.active {
      background-color: #fff;
      color: #2e797d;
    }

    @media (max-width: 480px) {
       .toggle-switch1 {
          display: block;}
    }

     .toggle-switch1 {
          display: inline-flex;
    border: 2px solid #2e797d;
    border-radius: 30px;
    overflow: hidden;
    background-color: #2e797d;
    }

    .toggle-switch1 .toggle-option1 {
      padding: 10px 30px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      background-color: transparent;
      color: #fff;
      font-size: 18px;
    }

    .toggle-switch1 .toggle-option1.active {
      background-color: #fff;
      color: #2e797d;
    }

    .city-content {
      display: none;
         padding: 40px 15px;
      /* background-color: #f9f9f9; */
      text-align: center;
    }
.city-content.faq {   background-color: #fff!important;}
    .city-content.active {
      display: block;
    }

    .city-content img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .toggle-option {
        padding: 8px 20px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
       .toggle-switch1 {
          display: block;}
    }
    /* cities switch end */

/* benefits */
.Benefits {
    padding: 60px 0;
}
  .flex-row {
      display: flex;
      flex-wrap: wrap;
      margin: -15px;
    }

    .flex-col {
      flex: 1;
      padding: 15px;
      min-width: 100%; /* default for mobile */
    }

    @media (min-width: 768px) {
      .flex-col {
        min-width: 50%;
      }
    }

    .shadow-box {
      background: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 6px;
      padding: 25px;
      height: 100%;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .shadow-box:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .shadow-box h3 {
      margin-top: 0;
      margin-bottom: 20px;
      font-weight: bold;
      color: #2e797d;
    }

    .shadow-box ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    .shadow-box ul li {
         font-size: 18px;
      line-height: 1.8;
      margin-bottom: 10px;
      position: relative;
      padding-left: 28px;
      color: #333;
      transition: color 0.3s ease;
    }

    .shadow-box ul li:before {
      content: "\f058";
      font-family: FontAwesome;
      position: absolute;
      left: 0;
      color: #2e797d;
      transition: color 0.3s ease;
    }

    .shadow-box:hover ul li:before {
      color: #1c5a5d;
    }
    /* benefits */


    /* map section */
    .title-text {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      margin: 30px 0 20px;
    }

    /* Desktop Map View */
    .map-container {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: url('../img/map.png') no-repeat center center;
      background-size: contain;
      /* margin-bottom: 30px; */
    }

    .region-label {
      position: absolute;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 6px 10px;
      font-size: 16px;
      text-align: center;
      border-radius: 6px;
      transform: translate(-50%, -50%);
      max-width: 150px;
      font-weight: bold;
      color: #333;
    }

    .region-label i,
    .region-info i {
      color: #d9534f;
      margin-right: 4px;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0%   { transform: scale(1); opacity: 1; }
      50%  { transform: scale(1.4); opacity: 0.6; }
      100% { transform: scale(1); opacity: 1; }
    }

    .north-america { top: 40%; left: 27%; }
    .latam         { top: 65%; left: 35%; }
    .europe        { top: 38%; left: 48%; }
    .africa        { top: 55%; left: 50%; }
    .asia          { top: 22%; left: 64%; }
    .oceania       { top: 74%; left: 78%; }
   .canada        { top: 22%; left: 22%; }
    .brazil        { top: 79%;left: 35%; }
    .germany       { top: 25%; left: 52%; }
    .india         { top: 45%; left: 70%; }
    /* Region Info Boxes (Mobile) */
    .region-info {
      background-color: #f1f5f9;
      border-radius: 8px;
      margin-bottom: 15px;
      padding: 15px;
      height: 100%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
      transition: all 0.3s ease;
    }

    .region-info:hover {
      background-color: #e8f0fe;
    }

    .region-info h4 {
      margin-top: 0;
      font-weight: bold;
      font-size: 15px;
      color: #2c3e50;
    }

    .region-info span {
      font-size: 14px;
      color: #444;
    }

    .footer-logo {
      text-align: center;
      font-size: 18px;
      font-weight: bold;
      color: #2d2dff;
      margin-top: 30px;
    }

    .footer-logo small {
      font-size: 14px;
      color: #333;
    }

    .badge-custom {
      background-color: #5c6bc0;
      color: white;
      border-radius: 10px;
      padding: 2px 8px;
      font-size: 12px;
    }

    /* View Switches */
    .map-layout { display: block; }
    .mobile-layout { display: none; }

    @media (max-width: 767px) {
      .map-layout { display: none; }
      .mobile-layout { display: block; }
    }

    /* map section */
/* whatsapp */
     .whatsapp-float {
      position: fixed;
      bottom: 80px;
      left: 20px; /* left side */
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      padding: 7px 13px;
       font-size: 24px;
      z-index: 1000;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
      transition: background 0.3s ease;
    }

    .whatsapp-float:hover {
      background-color: #1ebea5;
      text-decoration: none;
    }

    .whatsapp-popup {
      position: fixed;
      bottom: 140px;
      left: 20px;
      background: white;
      color: #333;
      padding: 10px 15px;
      border-radius: 25px;
      font-size: 14px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .whatsapp-popup.show {
      opacity: 1;
    }
    /* whatsapp */

  
/* core services */
    .services-section {
      padding: 60px 15px;
      text-align: center;
      background: #fff;
    }

    .services-section h2 {
      font-weight: bold;
      margin-bottom: 50px;
      color: #1a1a1a;
    }

    .service-box1 {
      background: #fff;
      padding: 30px 20px;
      border-radius: 15px;
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
     transition: 0.3s ease;
      height: 100%;
    }

    .service-box1:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .service-box1 img {
      height: 60px;
      margin-bottom: 20px;
    }

    .service-title {
      font-weight: bold;
      color: #111;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .service-desc {
      font-size: 16px;
      color: #555;
    }

    @media (max-width: 767px) {
      .service-box1 {
        margin-bottom: 30px;
      }
    }
/* core services end */

 /* Product banner */
    .dental-banner {
      background-color: #12968e; /* Teal green background */
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .dental-banner h2 {
      font-weight: bold;
      font-size: 35px;
      margin-bottom: 15px;
    }

    .dental-banner p {
     font-size: 19px;
      margin: 0;
    }

 @media (max-width: 767px) {
     .dental-banner h2 {
   font-size: 21px;
}
.dental-banner p {
    font-size: 17px;
}
  }

 /* Product banner end*/

/* why choose section */
    .why-choose-section {
       background-color: #f6f8fb;
    padding: 240px 20px 40px 20px;
    text-align: center;
    }

    .why-choose-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
      color: #1d1d1f;
    }

    .why-choose-section .feature {
      margin-bottom: 30px;
      padding: 0 60px;
    }

    .why-choose-section .feature h4 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .why-choose-section .feature p {
      color: #555;
      margin: 0;
          font-size: 17px;
    }
/* why choose section end*/
/* client marquee scroll */
    .scrolling-wrapper {
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      width: 100%;
      background: #fff;
      padding: 15px 0;
    }

    .scrolling-track {
      display: flex;
      width: max-content;
      animation: scroll-left 30s linear infinite;
      animation-delay: 2s; /* START DELAY */
    }

    .scrolling-content {
      display: flex;
    }

    .scrolling-track:hover {
      animation-play-state: paused;
    }

    .person {
      display: inline-block;
      text-align: center;
      margin: 0 25px;
    }

    .person img {
      height: 100px;
    
      object-fit: contain;
      display: block;
      margin: 0 auto 8px;
    }

    .person-name {
        font-size: 20px;
    display: block;
    color: #2f455c;
    line-height: 20px;
    font-family: 'ProximaNova-Semibold';
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 600px) {
      .person img {
        height: 60px;
        width: 60px;
      }
      .person-name {
        font-size: 14px;
      }
      .person {
        margin: 0 15px;
      }

      .scrolling-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .scrolling-wrapper::-webkit-scrollbar {
        display: none;
      }
    }
 /* client marquee scroll */
 /* schedule demo */
    .demo-section1 {
      background-color: #1e4de6; /* Blue background */
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    .demo-section1 h2 {
      font-weight: bold;
      margin-bottom: 20px;
    }

    .demo-section1 p {
      font-size: 17px;
      }

    .demo-btn {
      background-color: white;
      color: #1e4de6;
      font-weight: bold;
      border: none;
      padding: 12px 25px!important;
      border-radius: 10px;
      font-size: 14px;
      transition: 0.3s;
    }

    .demo-btn:hover {
      background-color: #e6e6e6;
    }
/* schedule demo */