@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-color: #070626;
  --secondary-color: #ffffff;
  --text-color: #333;
  --font-family: 'Sinteca', sans-serif;
  --border-grey: #C1C1C1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}


#language-select{
  border: none;
  color: #4F4F4F;
  outline: none;
  margin: 4px 0px;
  appearance: none;
  /* margin-right: 16px; */
  font-size: 12px;
  width: 90px;
}
#langDropdown {
  max-height: 400px; /* Adjust based on content */
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0px 48px;
  display: flex;
}
/* #langDropdown{
  display: flex;
  transition: max-height 0.3s ease-out;
  padding: 0px 48px;
} */
#langDropdown.hide {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.language-dropdown option {
  background-color: white;
  color: black;
  padding: 10px;
  font-size: 14px;
  padding: 12px;
  outline: none;
  border: 1px solid gray;
}
.language-dropdown select {
  background-image: url("../img/DropdownLang.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 9px;
  padding-right: 16px;
  background-color: #F4F4F4;
  appearance: none;          
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 10px center;
}
.language-dropdown select {
  padding: 0px 14px;       
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #F4F4F4;
  appearance: none;          
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 12px;
  width: 100%;
  box-sizing: border-box;  
}
.language-dropdown img{
  margin: -10px;
  z-index: 1;
  width: 14px;
}
.lang-input-container{
  background-color: #F4F4F4 !important;
}
/* navbar css */
.navbar{
  font-size: 14px;
  padding: 20px 48px;
  background-color: var(--secondary-color) !important;
  box-shadow: 0px 1px var(--border-grey);
}
.navbar .logo-img{
  height: 32px;
}
.custom-nav{
  z-index: 9999;
}
.navbar-toggler {
  width: 30px;
  height: 32px;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  z-index: 1001;
}
.navbar-nav .nav-link{
  font-weight: 500;
}

.bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

.top-bar {
  top: 12px;
}

.bottom-bar {
  top: 20px;
}

/* When menu is open, transform bars into X */
.navbar-toggler.open .top-bar {
  transform: rotate(45deg);
  top: 16px;
}

.navbar-toggler.open .bottom-bar {
  transform: rotate(-45deg);
  top: 16px;
}

.mobile-nav {
  position: fixed;
  top: 48px;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: 2rem;
}

.mobile-nav.show {
  transform: translateX(0);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.5rem;
  border: none;
  background: none;
}

.mobile-nav,
.mobile-submenu {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  padding: 5rem 48px;
  overflow-y: auto;
  transform: translateX(-100%);  /* Hidden to the left */
  transition: transform 0.3s ease-in-out;
}
.mobile-submenu.active {
  transform: translateX(0);
      /* Slide in from left */
}

/* nav slide section - products */
.product-section {
  margin-bottom: 0;
  padding: 20px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.product-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
}

.product-box {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 32px;
  height: auto;
  flex-wrap: wrap;
}

.product-info {
  display: flex;
  flex: 1.5;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.product-info img {
  width: 40px;
  height: auto;
}

.product-title {
  margin-bottom: 0;
  font-weight: 600;
}

.product-detail {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 1;
}

.product-tags span {
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
}

.line-style1 {
  width: 1px;
  background-color: #ccc;
  min-height: 100px;
}

.line-style2 {
  height: 1px;
  background-color: #eee;
  margin: 16px 0;
}

.vertical-line {
  width: 1px;
  height: 16px;
  background-color: #999;
}

.nav-toggler-container {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .product-columns {
    flex-direction: column;
  }

  .product-box {
    flex-direction: column;
  }

  .product-info {
    flex-direction: row;
    align-items: flex-start;
  }

  .line-style1 {
    display: none;
  }

  .product-tags {
    flex-direction: row;
  }


}


.products-section,
.solution-section {
  padding: 40px;
  transition: all 0.3s ease;
  cursor: default;
}

.solution-section .product-title {
  margin-bottom: 8px;

}

.solution-section .product-card {
  padding: 24px 0px;
  /* border: none; */
  gap: 20px;

}

.section-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.product-card {
  /* border: 1px solid #eee; */
  border-bottom: 1px solid var(--border-grey);
  padding: 20px;
  height: 100%;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); */
  cursor: pointer;
}

.icon-text {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: flex-start;
}

/* .icon-text img {
  width: 40px;
  height: auto;
} */

.product-title {
  /* font-size:  */
  font-weight: 600;
  margin: 0;
}

.product-desc {
  font-size: 0.875rem;
  margin: 4px 0 0;
  color: #888888;
  font-weight: 500;
}

.product-card .vertical-line {
  height: 100%;
  width: 1px;
  background-color: var(--border-grey);
}
.v-line {
  height: 100%;
  width: 1px;
  background-color: var(--border-grey);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  /* margin-top: 20px; */
  width: 80%;
  height: fit-content;
}

.tag-row span {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 4px 8px;
  background-color: #f5f5f5;
  border-radius: 6px;
}


@media (max-width: 768px) {
  .product-card {
    margin-bottom: 20px;
    gap: 16px;
  }

  .tag-row {
    width: 100%;
  }
}

/* company nav */
.company-nav {
  position: relative;
}

#companyDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  padding: 24px 28px;
  text-align: left;
  width: 150%;
}


html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

nav {
  display: flex;
  z-index: 1051;
}

/* Dropdown Menu Styles */
.dropdown-hover-group {
  /* position: relative; */
}

.dropdown-fullscreen {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  max-height: calc(100vh - 80px); /* Adjust based on your navbar height */
  background-color: #fff;
  z-index: 999;
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  /* margin-top: 10px; */
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Create an invisible bridge between trigger and dropdown */
/* .dropdown-hover-group::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
} */

/* Show dropdown on hover */
/* .dropdown-hover-group:hover .dropdown-fullscreen,
.dropdown-hover-group:focus-within .dropdown-fullscreen {
  display: block;
  opacity: 1;
  transform: translateY(0);
} */

/* Keep dropdown visible when hovering over it */
.dropdown-fullscreen:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar styles */
.dropdown-fullscreen::-webkit-scrollbar {
  width: 8px;
}

.dropdown-fullscreen::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.dropdown-fullscreen::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.dropdown-fullscreen::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Dropdown arrow icon styles */
.dropdown-hover-group .nav-link img {
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.dropdown-hover-group.active .nav-link img {
  transform: rotate(180deg);
}

/* Add active state for dropdown */
.dropdown-hover-group.active .dropdown-fullscreen {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* responsive texts css starts here */
.hero h1 {
  font-size: 40px;
  font-weight: 600;
  line-height: 64px;
}
.hero p{
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #686868;
}
.section-primary h2{
  font-size: 40px;
  font-weight: 600;
  line-height: 64px;
}
.section-primary p{
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #686868;
}
.features h2{
  font-size: 34px;
  font-weight: 600;
  line-height: 54px;
}
/* subheading-lg for 34px */
.subheading-lg h2{
  font-size: 34px;
  font-weight: 600;
  line-height: 56px;
}
.subheading-lg p{
font-weight: 500;
font-size: 18px;
line-height: 30px;
color: #686868;
}
/* subheading-lg for 28px */

.subheading-md h2{
  font-size: 28px;
  font-weight: 600;
  line-height: 48px;
}
.section-cta h2{
  font-size: 34px;
  font-weight: 600;
  line-height: 56px;
}
.section-cta p{
/* font-weight: 500; */
font-size: 22px;
line-height: 32px;
}
section {
  padding: 72px;
}

.section-container {
  margin-top: 132px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.card h4{
font-weight: 600;
font-size: 24px;
line-height: 160%;
}
.card p{
  color: #7B7B7B;
font-weight: 500;
font-size: 18px;
line-height: 24px;

}




/* responsive texts css ends  here */

p {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.btn-custom {
  padding: 14px 32px;

}

.card {
  border: none;
}
.card-border{
  border: 1px solid var(--border-grey) !important;
  border-radius: 8px;
}

.card-body img {
  width: 39px;
  height: 38px;
}
/* .card img {
  width: 39px;
  height: 38px;
} */

.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 67px 209px 67px 209px; */
  background-color: var(--primary-color);
  color: var(--secondary-color);
  background-repeat: no-repeat;
  text-align: center;

  /* margin-top: 48px; */
  /* margin-bottom: 20px; */
}

.section-cta .container {
  max-width: 70%;

}

.social-icons-sm {
  display: none;
}

.hero_img_sm {
  display: none;
}
.section-cta > div{
  gap: 24px;
}

/* solution page css end */


/* footer css */
footer {
  display: flex;
  gap: 24px;
  flex-direction: column;
  padding: 32px 20px 20px 20px;

}
.footer {
  margin-right: 52px;
  margin-left: 52px;
  font-family: 'Sinteca', sans-serif;
}

.footer-links {
  /* max-width: 60%; */
  margin-right: 24px;
}

.social-icons {
  display: flex;
  gap: 12px;
  /* space between icons */
  /* justify-content: center; */
  flex-wrap: wrap;
}

.social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  /* Circle width */
  height: 32px;
  /* Circle height */
  border-radius: 50%;
  /* Makes it a circle */
  background-color: var(--primary-color);
  /* Light gray background */
  color: #ffffff;
  /* Icon color */
  font-size: 16px;
  /* Icon size */
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-item:hover {
  background-color: rgb(86, 86, 86);
  /* On hover */
  color: #fff;
}


@media (max-width: 991.98px) {
  

  .nav-toggler-container {
    display: flex;
    gap: 16px;

  }

  .product-card {
    flex-direction: column !important;
    gap: 16px;
  }

  .preoducts-section .product-card {
    gap: 16px;
  }

  section {
    padding: 32px 28px;
  }
  .btn-custom {
    padding: 12px 24px;
  }
  /* .section-container {
    margin-top: 40px;
  } */

  .hero {
    padding: 32px;
  }

  .hero h1 {
    line-height: 48px;
  }

  .br-lg {
    display: none;
  }

  .footer-links {
    max-width: 100%;
  }

  .cta-text h2 {
    line-height: 40px;
  }

  .section-cta .container {
    max-width: 90%;

  }

  .product-card .vertical-line {
    display: none;
  }

  .solution-section .product-card .icon-text:first-child {
    border-bottom: 1px solid var(--border-grey);
    /* margin-bottom: 12px; */
    padding-bottom: 16px;
  }


  /* .social-icons-sm{
    display: block;
  }
  .social-icons{
    display: none;
  } */
   .section-cta {
    padding: 60px 16px;
  }
}

.nav-btn {
  padding: 10px 28px;
  font-size: 14px !important;
}


@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .navbar{
  padding: 24px 32px;
}
#langDropdown{
  padding: 0px 32px;
}
  .solution-section .product-card {
    flex-direction: column;
  }

  /* Adjust buttons, font sizes, stacking layout */
  .hero {
    padding: 24px;
    /* padding: 0px; */
  }

  section {
    padding: 24px 32px;
    /* padding: 0px; */
  }

  .section-cta {
    padding: 48px 16px;
  }

  .section-cta .container {
    max-width: 100%;

  }

  .section-container {
    gap: 60px;
    margin-top: 120px;
  }

  .footer {
    padding: 32px;
    margin: 0px;
  }
  

  .btn-custom {
    padding: 10px 16px;
  }

  .nav-btn {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }

  .hero_img {
    display: none;
  }

  .hero_img_sm {
    display: block;
  }

  .hero h1 {
    line-height: 40px;
  }

  nav {
    display: none;
  }

  .product-card .vertical-line {
    display: none;
  }

  .product-card {
    height: fit-content;
    gap: 12px;
    padding-bottom: 32px;
  }

  .products-section,
  .solution-section {
    padding: 16px;
  }

  .mobile-submenu {
    padding: 16px;
  }
}

/* Media Queries for Responsive Typography */
/* Tablet (768px to 991px) */
@media screen and (max-width: 991px) {
  .hero h1 {
    font-size: 32px;
    line-height: 48px;
  }
  
  .hero p {
    font-size: 16px;
    line-height: 26px;
  }
  
  .section-primary h2 {
    font-size: 32px;
    line-height: 48px;
  }
  
  .section-primary p {
    font-size: 16px;
    line-height: 26px;
  }
  
  .features h2,
  .subheading-lg h2,
  .section-cta h2 {
    font-size: 28px;
    line-height: 42px;
  }
  
  .subheading-lg p {  
    font-size: 16px;
    line-height: 26px;
  }
  
  .subheading-md h2 {
    font-size: 24px;
    line-height: 36px;
  }
  
  .section-cta p {
    font-size: 18px;
    line-height: 28px;
  }
  
  .card h4 {
    font-size: 20px;
    line-height: 140%;
  }
  
  .card p {
    font-size: 16px;
    line-height: 22px;
  }
  
  section {
    padding: 48px 32px;
  }
  
  .section-container {
    margin-top: 132px;
    gap: 40px;
  }
}

/* Mobile (up to 767px) */
@media screen and (max-width: 767px) {
  .hero h1 {
    font-size: 28px;
    line-height: 40px;
  }
  
  .hero p {
    font-size: 15px;
    line-height: 24px;
  }
  
  .section-primary h2 {
    font-size: 28px;
    line-height: 40px;
  }
  
  .section-primary p {
    font-size: 15px;
    line-height: 24px;
  }
  
  .features h2,
  .subheading-lg h2,
  .section-cta h2 {
    font-size: 24px;
    line-height: 36px;
  }
  
  .subheading-lg p {
    font-size: 15px;
    line-height: 24px;
  }
  
  .subheading-md h2 {
    font-size: 20px;
    line-height: 32px;
  }
  
  .section-cta p {
    font-size: 16px;
    line-height: 24px;
  }
  
  .card h4 {
    font-size: 18px;
    line-height: 130%;
  }
  
  .card p {
    font-size: 15px;
    line-height: 20px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .section-container {
    margin-top: 120px;
    gap: 32px;
  }
}

/* Small Mobile (up to 480px) */
/* @media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
    line-height: 36px;
  }
  
  .hero p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .section-primary h2 {
    font-size: 24px;
    line-height: 36px;
  }
  
  .section-primary p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .features h2,
  .subheading-lg h2,
  .section-cta h2 {
    font-size: 20px;
    line-height: 32px;
  }
  
  .subheading-lg p {
    font-size: 14px;
    line-height: 22px;
  }
  
  .subheading-md h2 {
    font-size: 18px;
    line-height: 28px;
  }
  
  .section-cta p {
    font-size: 15px;
    line-height: 22px;
  }
  
  .card h4 {
    font-size: 16px;
    line-height: 120%;
  }
  
  .card p {
    font-size: 14px;
    line-height: 18px;
  }
  
  section {
    padding: 24px 12px;
  }
  
  .section-container {
    margin-top: 32px;
    gap: 24px;
  }
} */

