body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}
/**Subsection Page Custom CSS*/
.KbSubCategoryContainer__contentList {
    padding: 20px 1rem 3.875rem .9375rem !important;
   
}
/**Hiding Default Submit a Ticket footer*/
.Footer__footerBg{
  display:none;
}
/**Adding CSS to statically added Submit a Ticket*/
.Custom_Footer__footerBg{
background: var(--color-greyTint85);
    padding: 1.875rem 0;
}
/**Changing Color to Blue*/

.commonStyle__zt3BrandBg, .commonStyle__zt3buttonPrimaryBg{
  background-color: #009CE2;
}
:root {
  --color-brand: #009CE2;
}
.AppContainer__keyBoardfocus, [data-focus-added]{
  outline:solid 3px #009CE2 !important;
}
/**Changing Color to Blue*/
/**Remove Padding*/
.Layout__oneColumn, .Layout__twoColumn, .Layout__twoColumn2, .Layout__twoColumnReverse{
	     padding: 0 !important; 
}

.Layout__oneColumn .Layout__layout1, .Layout__twoColumn .Layout__layout1, .Layout__twoColumn .Layout__layout2, .Layout__twoColumn2 .Layout__layout1, .Layout__twoColumn2 .Layout__layout2, .Layout__twoColumnReverse .Layout__layout1{
	     padding: 0 !important;
}

.AppContainer__homePage{
	     margin: 0 !important;
}
/**Remove Padding*/
/*Increasing the Widget of Product Widget*/
div[data-id="home"] {
    max-width: 100%;
}
/**Product Min Height Auto*/
.Layout__oneColumn, .Layout__twoColumn, .Layout__twoColumn2, .Layout__twoColumnReverse{
min-height: auto !important;
}
.custom_empty_space{
  padding: 20px;
  margin: 20px auto;
    max-width: 800px;
    width: 100%;
}
.custom_search_bar{
      padding: 3.25rem 0 !important;
  width: 65%;
}
a.custom_link:hover {
    color: blue;
}
a.custom_link {
    color: var(--color-greyShade70);
}
.AppContainer__container .SearchContainer__searchBox {
  display: none; /* Hides the element */
}
/*Custom For Toggle*/
/* Hidden checkbox for toggle */
.menu-checkbox {
    display: none;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    cursor: pointer;
}


/* Show menu and overlay when checked */
.menu-checkbox:checked ~ .nav-links {
    transform: translateX(-100%);
}

.menu-checkbox:checked ~ .overlay {
    display: block;
}

/* Close menu when clicking on overlay */
.menu-checkbox:checked ~ .overlay:checked {
    display: none;
}


/*Custom For Toggle*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.logo {
    width: 150px;
}

.menu-toggle {
   display: none;
    flex-direction: column;
    justify-content: space-around;
    height: 25px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    background-color: #0078D4;
    color: #fff;
}

.hero-banner {
    background-image: url('https://desk.zoho.eu/portal/api/publicImages/131256000035688526?portalId=edbsncdda21430d761421dfc574e8427598ac484672e9fabd0b7626f876130945c510'); 
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 20px; 
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-banner h1 {
    display: inline-block;
    background-color: rgba(11, 42, 71, 0.8); 
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.search-bar-container {
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
}

.search-bar {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-section {
    background-image: url('https://desk.zoho.eu/portal/api/publicImages/131256000035688528?portalId=edbsncdda21430d761421dfc574e8427598ac484672e9fabd0b7626f876130945c510');
    background-position: center;
    padding: 40px 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    justify-items: center;
}

.card {
	min-height: 170px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 150px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card-icon {
    height: 50px;
}

.card h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 0;
    color: #0b2a47;
}

.info-section {
    display: flex;
    gap: 20px;
    padding: 20px 10px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-box {
    background-color: rgb(227, 227, 227);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.connect-box {
    background-color: #E3FCEC;
}
/*Custom For Toggle*/
/*Enable Search on Article Details Page*/
.Header__globalSearchAlt input[role="search"], .Header__globalSearch input[role="search"] {
    visibility: visible;
}
/*Enable Search on Article Details Page*/
/* Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 25px;
        cursor: pointer;
    }

    .menu-toggle .bar {
        width: 30px;
        height: 3px;
        background-color: #333;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

}
/*Custom For Toggle*/
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; 
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: white;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        z-index: 1000;
    }

    .nav-links.open {
        transform: translateX(-100%);
    }

    .nav-links ul {
        flex-direction: column;
    }

    .nav-links li {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .card-section {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-banner h1 {
        font-size: 30px;
    }

    .search-bar {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .card-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .hero-banner h1 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .card-section {
        grid-template-columns: 1fr;
    }

    .search-bar {
        width: 100%;
    }

    .hero-banner h1 {
        font-size: 20px;
        padding: 10px;
    }
}



.help-center {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.left-panel {
  width: 250px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.left-panel h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
}

.left-panel ul {
  list-style: none;
  padding: 0;
}

.left-panel li {
  padding: 10px 5px;
  border-bottom: 1px solid #eee;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.left-panel li:hover {
  background-color: #007bff;
  color: #fff;

}
.main-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 65%;
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  justify-content: space-between;

}

.main-content h2 {
  text-align: center;
  font-size: 2em;
  color: #333;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-articles {
  display: flex;
  gap: 20px;
  justify-content: center; 
  flex-wrap: wrap; 
  width: 100%; 
}

.article {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  color: #333;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.article img {
  width: 100%; 
  height: 180px;
  object-fit: cover;
}

.article h3 {
  font-size: 1em;
  color: #333;
  margin: 10px 0;
}

.support-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  margin: 20px 115px;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.support-card {
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  width: 200px;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.support-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  object-fit: contain;
}

.support-card p {
  font-size: 1em;
  font-weight: 500;
  color: #007bff;
  margin: 0;
  cursor: pointer;
}

.support-card p:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .main-content {
    padding: 10px;
  }

  .top-articles {
    flex-direction: column;
    align-items: center;
  }

  .article {
    width: 90%;
  }

  .support-section {
    flex-direction: column;
    align-items: center;
  }

  .support-card {
    width: 90%;
  }
}
.user-guide-section {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 800px;
  width: 100%;
}

.user-guide-section h2 {
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.buttons {
  margin-bottom: 20px;
}

.guide-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
}

.guide-btn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.article-sections {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.article {
  flex: 1;
  max-width: 45%;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.article h3 {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 5px;
  font-weight: bold;
}

.article p {
  font-size: 0.95em;
  color: #666;
}

@media (max-width: 768px) {
  .article-sections {
    flex-direction: column;
    gap: 10px;
  }

  .article {
    max-width: 100%;
  }

  .guide-btn {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 5px;
  }

  .user-guide-section h2 {
    font-size: 1.5em;
  }
}

