.bold {
  /* font-weight: 400; */
}

/* bootstrap start */

.text-center { text-align: center; }
.justify-content-center { justify-content: center; }

/* Spacing Utilities */
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }

/* Flexbox Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col {
    padding: 15px;
    box-sizing: border-box;
    width: 100%; /* Default for row-cols-1 */
}

/* Responsive Grid Logic (row-cols-sm-2 and row-cols-lg-3) */
@media (min-width: 576px) {
    .row-cols-sm-2 > .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {
    .row-cols-lg-3 > .col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* --- New Grid Breakpoints for Service Cloud --- */

/* Medium devices (Tablets, 768px and up) - 3 cards per row */
@media (min-width: 768px) {
    .row-cols-md-3 > .col {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* Large devices (Desktops, 1200px and up) - 4 cards per row */
@media (min-width: 1200px) {
    .row-cols-lg-4 > .col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* --- Added Utility Classes --- */
.p-2 { 
    padding: 0.5rem !important; 
}

/* Optional: Slight height adjustment for 4-column layout */
/* This prevents the cards from looking too skinny/tall on desktop */
@media (min-width: 1200px) {
    .flip-card {
        height: 280px; 
    }
    .flip-card-back p {
        font-size: 0.85rem; /* Shrink text slightly to fit narrower columns */
    }
}

/* bootstrap end */

/* for hero section scroller logos  */

.partners-section-scroller {
    position: relative;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f3eded;
    flex-wrap: wrap;
    /* ensures responsiveness */
    overflow: hidden;
}

.partners-text-scroller {
    flex: 0 0 auto;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0056ff;
    white-space: nowrap;
    margin-bottom: -10px;
    z-index: 2;
}

.logo-section-scroller {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.logo-track-wrapper-scroller {
    display: flex;
    width: max-content;
    animation: scroll-scroller 15s linear infinite;
    /* Force GPU acceleration */
    will-change: transform;
}

.logo-track-scroller {
    display: flex;
}

.logo-track-scroller img {
    height: 60px;
    margin: 0 40px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.logo-track-scroller img:hover {
    transform: scale(1.1);
}

@keyframes scroll-scroller {
    from {
        transform: translateX(0, 0, 0);
    }

    to {
        /* Move exactly half the width (the length of one full track) */
        transform: translate3d(-50%, 0, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logo-track-scroller img {
        height: 50px;
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .partners-section-scroller {
        /* flex-direction: column; */
        text-align: center;
    }

    .partners-text-scroller {
        margin-bottom: 0px;
        font-size: 1rem;
    }

    .logo-track-scroller img {
        height: 40px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo-track-scroller img {
        height: 30px;
        margin: 0 15px;
    }
}

/* end of for hero section scroller logos */


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  font-size: 14px;
  background-color: #1B1B1B;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.7);
  color: white;
}
.addressDiv {
  margin-top: -20px;
}
.appExchange {
  margin-top: -10px;
}
.appExchange img {
    margin: 1rem !important;
}
.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

/* .footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
} */

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/* Base Footer Styles */

/* Recreating the Bootstrap 'Row' */
.addressDiv {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 30px; /* Space between columns */
    justify-content: space-between;
    /* padding-bottom: 20px; */
}

/* Recreating 'col-lg-3' (4 columns) */
.addressDiv > div {
    flex: 1;
    min-width: 250px; /* Prevents columns from getting too squished */
    display: flex; /* Recreating 'd-flex' */
    align-items: flex-start;
}

/* Icon Styling */
.icon {
    font-size: 24px;
    color: #aeb1b8;
    margin-right: 15px;
    margin-top: 5px;
}

/* Typography */
.addressDiv h4 {
    /* font-size: 18px;
    margin: 0 0 12px 0;
    color: #ffffff; */
}

.addressDiv p {
    font-size: 14px;
    line-height: 1.6;
    /* color: #aeb1b8; */
    /* margin: 0; */
}

/* Social Links Layout */
.social-links {
    display: flex;
    gap: 12px;
    /* margin-top: 15px; */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0078d4;
    border-color: #0078d4;
    transform: translateY(-3px);
}

/* Update the general column behavior */
.addressDiv > div {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: row; /* Default for Address/Phone columns */
    align-items: flex-start;
}

/* Specific fix for the 'Follow Us' column */
.addressDiv > .socials-diff-css {
    flex-direction: column; /* Force <h4> and Social icons to stack vertically */
}

/* Ensure the Social Links container itself is horizontal */
.social-links {
    display: flex;
    flex-direction: row; /* Icons stay side-by-side */
    gap: 12px;
    /* margin-top: 15px; */
    width: 100%; /* Ensure it takes full width below the heading */
}

/* Social link circle styling */
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #0078d4;
    border-color: #0078d4;
}

/* footer end */

/* modern pointers start */

.modern-pointers {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.modern-pointers li {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 18px; */
    padding: 12px 0px;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

/* Subtle hover effect to match your card branding */
.modern-pointers li:hover {
    background: rgba(0, 120, 212, 0.05);
    transform: translateX(5px);
}

.pointer-icon {
    color: #0078d4; /* Your Brand Blue */
    font-size: 20px;
    margin-right: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.pointer-text {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a; /* Matches a "grey" paragraph style */
    font-family: sans-serif;
}

.pointer-text strong {
    color: #0078d4;
}

/* modern pointers end */

/* full bleed image what we do start */

/* Class for the Wrapper/Container */
.full-bleed-wrapper {
    width: 100%;
    height: 100%;          /* Forces wrapper to match parent height */
    min-height: 350px;     /* Ensures visibility on smaller screens */
    position: relative;
    overflow: hidden;      /* Clips the image to the border radius */
    border-radius: 12px;   /* Modern rounded corners */
    display: flex;         /* Alignment helper */
}

/* Class for the Image itself */
.fill-image-cover {
    width: 100%;
    height: 100%;
    display: block;
    
    /* This handles the 'containment' aspect */
    object-fit: cover;     /* Fills container without stretching */
    object-position: center; /* Focuses on the center of the photo */
    
    /* Smooth transition for hover effects */
    transition: transform 0.5s ease-in-out;
}

/* Hover effect class - Apply to the wrapper to trigger image zoom */
.zoom-on-hover:hover .fill-image-cover {
    transform: scale(1.08);
}

/* full bleed image what we do end */

/* flip card css start */

/* Card Container Styles */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 300px; /* Adjust height as needed */
  perspective: 1000px; /* Required for 3D effect */
  cursor: pointer;
}

/* This container needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner,
.flip-card:focus .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

/* Front Side Styling */
.flip-card-front {
  background-color: #ffffff;
  color: #333;
}

.flip-card-front img {
  width: 60px;
  margin-bottom: 15px;
}

/* Back Side Styling */
.flip-card-back {
  background-color: #00a1e0; /* Salesforce-style Blue */
  color: white;
  transform: rotateY(180deg);
  overflow-y: auto; /* Scroll if text is too long */
}

.flip-card-back h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.flip-card-back p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .flip-card {
    height: 280px;
  }
}

/* Generic fix for overflowing back content */
.flip-card-back {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically */
    padding: 10px 15px !important;
    overflow: hidden !important; /* Forces scrollbar to disappear */
}

/* Adjusting the inner headings for the back side */
.flip-card-back h6 {
    font-size: 0.85rem !important; /* Smaller headings */
    margin-top: 8px !important;
    margin-bottom: 2px !important;
    line-height: 1.1 !important;
}

/* Adjusting the inner paragraphs for the back side */
.flip-card-back p {
    font-size: 0.75rem !important; /* Smaller paragraph text */
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
}

/* Optional: Increase card height specifically for Marketing Cloud 
   if the text is still too tight to read */
@media (min-width: 992px) {
    .flip-card {
        height: 350px !important; /* Slightly taller to accommodate more text */
    }
}



/* flip card css finish */



/* navbar final css start */

#header {
    transition: all 0.5s;
    z-index: 997;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.navbar .dropdown:hover > .serviceMenu {
  opacity: 1;
  /* top: 143%; */
  /* visibility: visible; */
  left: -100%;
  /* margin: auto; */
  /* transform: translateX(-40%); */
  /* padding: 1.5rem; */
  padding-right: 5rem;
  /* padding-left: 3rem; */
  padding-top: 1.5rem;
  /* padding-bottom: 110px; */
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  /* padding: 4px 6px; */
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  /* text-transform: uppercase;
  font-weight: 600; */
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #0078d4;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
}

.navbar-mobile .active{
  color: #15222b;
}

#navbar > ul > li:nth-child(5) > a

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #0078d4;
  border-color: #0078d4;
}

.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 16px;
  left: 0px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 150px;
  min-width: 220px;
}

.navbar .dropdown ul a {
  padding: 10px 15px;
  padding: 10px 50px;
  padding: 10px 25px;
  padding-bottom: 7px;
  font-size: 14px;
  text-transform: none;
  color: #15222b;
  /* font-weight: 400; */
}

.navbar .dropdown ul a i {
  font-size: 14px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #0078d4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 7, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #15222b;
}

.navbar-mobile a:hover,
.navbar-mobile li:hover > a {
  color: #0078d4;
}

/* 
.navbar-mobile .active, */

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: white;
  background-color: #0078d4;
}

/* /
  for
  Navbar
  mobile
  responsive
  Hide
  and
  show
  / */
.navbar-mobile .dropDownServiceMobile ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible !important;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color:#0078d4;
}

/* 
.navbar-mobile .dropdown ul .active:hover, */

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



/* Desktop Version: Hide when screen is small */
@media (max-width: 991px) {
    .dropDownServiceNormal {
        display: none !important;
    }
    
}

@media (max-width: 767px) {
    /* .dropDownServiceMobile {
        display: none !important;
    } */
}

/* Mobile Version: Hide when screen is large */
@media (min-width: 1241px) {
    .dropDownServiceMobile {
        display: none !important;
    }

    /* 1. Ensure the nav and ul take up the available horizontal space */
    .navbar, .navbar > ul {
        width: 100%;
    }

    /* 2. Push the last item (Request Demo) to the right */
    .navbar > ul > li:last-child {
        margin-left: auto;
    }

    /* 3. Optional: Add some spacing so it doesn't touch the previous item */
    .navbar > ul > li:last-child {
        padding-left: 20px; 
    }

}

/* Remove the marker from both mobile and desktop list items */
.dropDownServiceMobile, 
.dropDownServiceNormal,
.nav-menu li {
    list-style: none !important;
    list-style-type: none !important;
}

/* Extra safety: target the marker directly to hide it */
.nav-menu li::marker {
    content: none;
    display: none;
}

@media (max-width: 991px) {

    .dropDownServiceNormal{
      display: none !important;
    }

    #header > div{
        justify-content: space-between;
    }
    
    .navbar, .navbar ul {
        width: auto;
    }
    
    .button-wrapper {
        display: block;
        padding: 1.5rem;
    }
}

@media (min-width: 1241px) and (max-width: 1439px) {
    ol{
      padding-left: 25px;
    }

    /* .dropDownServiceNormal {
        display: none !important;
    } */
}

@media (min-width: 1440px) {
    .navbar .dropdown:hover > .serviceMenu {
      padding-left: 3rem;
    }
    .navbar .dropdown ul a {
      padding: 10px 50px;
    }

    ol{
      padding-left: 50px;
    }

    /* .dropDownServiceNormal {
        display: none !important;
    } */
}

/* --- 1. MOBILE LOGIC (Up to 767px) --- */
@media (max-width: 991px) {
    /* Show the mobile version */
    .dropDownServiceMobile {
        display: block; /* or 'flex' if you need it centered */
    }

    /* Hide the desktop version */
    .dropDownServiceNormal {
        display: none !important;
    }
}

/* --- 2. NON-MOBILE LOGIC (768px and up) --- */
/* Covers Tablets, 14" Laptops, 16" Laptops, and Desktops */
@media (min-width: 992px) {
    /* Show the desktop version */
    .dropDownServiceNormal {
        display: block; /* or 'flex' depending on your layout */
    }

    /* Hide the mobile version */
    .dropDownServiceMobile {
        display: none !important;
    }
}

/* navbar final css finish */

.container.text-center {
  margin:auto;
}