/*font*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --bg-color: #f6f8fb;

  /*navbar*/
  --navbar-font-size: 14px;
  --navbar-font-style: normal;
  --navbar-font-weight: 500;
  --navbar-line-height: 120%;

  --navbar-display: flex;
  --navbar-align-items: center;
  --navbar-gap: 20px;

  --nav-link-color: #000;
  /*button*/
  --btn-display: flex;
  --btn-padding: 10px;
  --btn-justify-content: center;
  --btn-align-items: center;
  --btn-gap: 10px;
  --btn-align-self: stretch;
  --btn-border-radius: 4px;
  --btn-bg-orng: #f39200;
  --btn-bg-gray: #98a6b2;
  --btn-whatsapp-bg: #21c15c;
  --btn-email-bg: #eaeaea;
  --btn-join-meeting-bg: linear-gradient(116deg, #e97727 6.03%, #e32e35 43.96%);
  --btn-explore-bg: linear-gradient(116deg, #fff 6.03%, #e7e7e7 43.96%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

a {
  text-decoration: none !important;
}

.body-bg {
  background-color: #f6f8fb;
}

/* base_style.css */
.custom-navbar {
  display: flex;
  height: 66px;
  padding: 8px 18px;
  justify-content: space-between;
  box-shadow: 0px 4px 11.4px 0px rgba(0, 0, 0, 0.39);
}

/*navbar styles */
.navbar-nav {
  display: var(--navbar-display);
  align-items: var(--navbar-align-items);
  gap: var(--navbar-gap);
  font-size: var(--navbar-font-size);
  font-weight: var(--navbar-font-weight);
}

.nav-link {
  color: var(--nav-link-color);
  text-decoration: none;
  transition: all 0.4s ease;
  border-bottom: 2px solid transparent;
  position: relative;
}

.nav-link.active-nav:hover {
  color: #f39200;
  border-bottom: 2px solid #f39200;
}

.nav-link.active-nav {
  color: #f39200;
  border-bottom: 2px solid #f39200;
  font-weight: 400;
}

.nav-link:hover {
  color: #f39200;
}

.nav-link.active {
  color: #f39200;
  font-weight: 400;
}

.dropdown-toggle.active {
  color: #f39200;
  border-bottom: 2px solid #f39200;
  font-weight: 400;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
}

.whatsapp-btn {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: var(--btn-border-radius);
  background: var(--btn-whatsapp-bg);
  color: white;
  border: none;
  cursor: pointer;
  font-weight: 600;
}
.email-btn {
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: var(--btn-border-radius);
  background: var(--btn-email-bg);
  color: black;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-orng:hover,
.btn-gray:hover,
.email-btn:hover,
.whatsapp-btn:hover {
  opacity: 0.8;
}

/*footer styles */
.custom-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #23292a;
  /*box-shadow: 0px 7px 4px 0px rgba(0, 0, 0, 0.25) inset;*/
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.footer-cols {
  width: 100%;
}

.footer-cols h6 {
  color: #f39200;
  margin-bottom: 16px;
}

.footer-cols ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.list-unstyled a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.list-unstyled a:hover {
  color: #f39200;
}

.footer-cols img {
  max-width: 80%;
  height: auto;
}

.footer-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.footer-btns a {
  text-decoration: none;
}

.issue-info-wrapper {
  margin-top: 8px;
  margin-bottom: 8px;
  max-width: 300px;
  width: 100%;
  text-align: center;
}
.issue-info {
  display: inline-block;
  font-size: 14px;
  background: #faf8f8;
  border-radius: 4px;
  padding: 4px 10px;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .custom-footer {
    text-align: left;
    padding: 60px 40px;
  }
}

/* Custom jQuery Confirm Styles */
.jconfirm .jconfirm-box {
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.jconfirm .jconfirm-box .jconfirm-title-c {
  padding: 16px 24px;
  border-bottom: 1px solid #eee;
}

.jconfirm .jconfirm-box .jconfirm-title {
  font-size: 16px;
  font-weight: 500;
}

.jconfirm .jconfirm-box .jconfirm-content {
  padding: 20px 24px;
  color: #333;
}

.dial-in-content p {
  margin-bottom: 16px;
}

.number-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.dial-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.whatsapp-text {
  font-size: 14px;
  color: #666;
}

.whatsapp-text a {
  color: #0066cc;
  text-decoration: none;
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #999;
  cursor: pointer;
}

/* Back Button Style in Company profile page */
.back-btn {
  color: #000;
  font-size: 14px;
}

.btn-orng {
  background: var(--btn-bg-orng);
}

.btn-gray {
  background: var(--btn-bg-gray);
}

/*button styles */
.custom-btn {
  display: var(--btn-display);
  padding: var(--btn-padding);
  justify-content: var(--btn-justify-content);
  align-items: var(--btn-align-items);
  gap: var(--btn-gap);
  align-self: var(--btn-align-self);
  border-radius: var(--btn-border-radius);
  color: black;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

/* Cookie Consent */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  color: black;
  padding: 20px 0;
  z-index: 9999;
  border-top: 3px solid #f29200;
}

.cookie-consent-banner p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 400;
  color: black;
}

.cookie-link {
  color: #f29200;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.cookie-link:hover {
  color: #e97727;
  border-bottom-color: #e97727;
}

#accept-cookies {
  background-color: #f29200;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  transition: all 0.3s ease;
}

#accept-cookies:hover {
  background-color: #e97727;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(242, 146, 0, 0.3);
}

#decline-cookies {
  background: transparent;
  border: 2px solid #666;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 14px;
  color: black;
  transition: all 0.3s ease;
}

#decline-cookies:hover {
  background: rgba(100, 116, 139, 0.1);
  border-color: #999;
  color: black;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .cookie-consent-banner .text-end {
    text-align: center !important;
  }

  .cookie-consent-banner {
    padding: 15px 0;
  }

  .cookie-consent-banner p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  #accept-cookies,
  #decline-cookies {
    padding: 8px 16px;
    font-size: 13px;
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .cookie-consent-banner {
    padding: 12px 0;
  }

  .cookie-consent-banner .container {
    padding: 0 15px;
  }

  #accept-cookies,
  #decline-cookies {
    width: 100%;
    margin: 5px 0;
  }
}

/* Login icon link (navbar) */
/* .login-icon-link {
  display: inline-flex;
  flex-direction: column;  
  justify-content: center;
  color: #00203e;
  font-weight: 600;
}
.login-icon-link:hover { color: #00203ecc; }
.login-icon-link i {
  font-size: 26px; 
 }
.login-icon-link span {
  letter-spacing: 1px;
  font-size: 10px;
 } */

/* Compact horizontal layout when shown beside burger menu on mobile */
/* @media (max-width: 991.98px) {
  .navbar-brand img {
    max-width: 150px;
    height: auto;
  }
  .navbar .login-icon-link.d-lg-none {
    flex-direction: row;  
  }
  .navbar .login-icon-link.d-lg-none i {
    font-size: 20px;
  }
  .navbar .login-icon-link.d-lg-none span {
    letter-spacing: 1px;
    font-size: 8px;
  }
} */

/* Navbar font size for large screens */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-collapse {
    font-size: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-expand-lg .navbar-nav {
    font-size: 12px;
  }
}

/* messages container */
#messages-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1055;
  width: 100%;
  max-width: 400px;
}

.custom-alert {
  text-align: center;
  font-size: 14px;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.5s ease forwards;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
}

.custom-alert .alert-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.custom-alert .btn-close {
  color: white !important;
  background: none;
  border: none;
  font-size: 18px;
  opacity: 0.7;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-alert .btn-close:hover {
  opacity: 1;
}

/* Bootstrap Alert Color Overrides for Custom Alerts */
.custom-alert.alert-success {
  background: linear-gradient(to right, #2ecc71, #1ba253);
  color: white;
  border: none;
}

.custom-alert.alert-danger {
  background: linear-gradient(to right, #ff2a2a, #f93131);
  color: white;
  border: none;
}

.custom-alert.alert-warning {
  background: linear-gradient(to right, #f39c12, #e67e22);
  color: white;
  border: none;
}

.custom-alert.alert-info {
  background: linear-gradient(to right, #3498db, #2980b9);
  color: white;
  border: none;
}

@keyframes slideIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
