/* font family import URL  */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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');




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

h1 {
  font-size: calc(65% + 1vw + .5vh);

}

h2 {
  font-size: calc(60% + .5vw + .5vh);
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: calc(12px + 0.4vw);
}

h5 {
  font-size: calc(40% + .5vw + .5vh);
}

h6 {
  font-size: calc(40% + .5vw + .5vh);
}


:root {
  /* background-color  */
  --bg-primary-color: #3b85c2;
  --bg-secondary-color: #2e6da4;
  --accent: #cde4f6;
  --bg-dark: #222222;
  --bg-white: #FBFBFE;

  /* Text style  */
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Open Sans", sans-serif;

  --text-black: #333333;
  --text-gray: #666;
  --text-light: #ddd;
}

body {
  font-family: var(--primary-font);
}



.container-fluid {
  width: 90%;
  height: auto;
}

.wrapper {
  padding: 4rem 0;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--text-black);

  &:hover {
    text-decoration: underline;
  }
}

p,
ul li {
  /*font-size: calc(10px + 0.4vw);*/
  margin-bottom: 0;
}



.main-btn {
  align-items: center;
  background-color: var(--bg-secondary-color);
  border: 1px solid var(--bg-secondary-color);
  border-radius: 5px;
  box-sizing: border-box;
  color: #ffffff !important;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--primary-font);
  justify-content: center;
  overflow: hidden;
  padding: 4px 12px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.main-btn:hover,
.main-btn:focus {
  background-color: var(--bg-primary-color);
  border-color: var(--bg-primary-color);
  color: #ffffff !important;
}

.main-btn:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}



.top-bar {
  background: var(--bg-primary-color);
  color: white;
  padding: 5px 15px;
  font-size: 12px;
}

.navbar {
  background: var(--bg-primary-color);
}

.navbar-nav {
  flex-direction: row !important;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 400;
  padding: 5px;
  margin: 5px;
  font-size: 16px;

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background-color: var(--bg-secondary-color);
  border-radius: 5px;
  color: #fff !important;
}



.search-box {
  border-radius: 5px;
  padding: 5px;
  background: white;
  display: flex;
  align-items: center;
}

.search-box input {
  border: none;
  outline: none;
  width: 150px;
  font-size: 14px;
}

.search-box i {
  color: gray;
  margin-right: 5px;
}

.callback-btn {
  background: #fff;
  color: #000;
  padding: 5px 10px;
  border: none;
  text-wrap: nowrap;
}

.logo {
  max-height: 70px;
  width: auto;
}

.form-label {
  box-shadow: none !important;
}

/* Modal Styles */
.modal-content {
  border-radius: 8px;
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Modal Header */
.modal-header {
  background: #f8f9fa;
  border-bottom: none;
  padding: 15px 20px;
}

.modal-title {
  font-weight: bold;
  font-size: 20px;
}

/* Close Button */
.modal-header .btn-close {
  background: transparent;
  font-size: 16px;
  color: #000;
}

/* Modal Body */
.modal-body {
  padding: 20px;
}

/* Form Label */
.modal-body .form-label {
  font-weight: 600;
  font-size: 14px;
}

/* Required Fields with Red Asterisk */
.modal-body .form-label span {
  color: red;
}

/* Input and Textarea */
.form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 14px;
  background: #fff;

  &:focus {
    box-shadow: none;
    outline: none;
  }
}

/* DateTime Picker */
input[type="datetime-local"] {
  background: #fff;
  cursor: pointer;
}


.subscribe-btn {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #c9302c;
  /* Red background */
  color: white;
  padding: 25px 10px;
  border: 1px dotted #ffffff;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px 0 0 5px;
  /* Rounded left border */
  writing-mode: vertical-rl;
  /* Rotates text vertically */
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease-in-out;
  z-index: 999;
  transform: rotate(180deg);
}

/* Hover effect */
.subscribe-btn:hover {
  background: #c9302c;
  /* Darker red on hover */
}


/* Adjust height for tablets */
@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
    width: auto;

  }

  .navbar-nav {
    flex-direction: column !important;
  }
}

/* Adjust height for mobile */
@media (max-width: 576px) {
  .carousel-item img {
    height: 200px;
    width: auto;

  }
}

/* Tabs */
.nav-pills .nav-link {
  background: var(--bg-primary-color);
  color: white;
  font-weight: 400;
  border-radius: 8px;
  padding: 10px 20px;
  width: 400px;
}


.nav-pills .nav-link.active {
  background: var(--bg-secondary-color);
  font-weight: 600;

}

/* Webinar Cards */
.webinar-card {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  gap: 50px;
  background: white;

  .speaker-name {
    display: block;
    font-size: 14px;
    color: var(--bg-primary-color);
    text-align: center;
    margin-top: 4px;
    font-weight: 600;
  }
}


@media (max-width: 976px) {
  .nav-pills .nav-link {
    width: 200px;
  }

  .webinar-card {
    flex-direction: column;
    gap: 10px;
  }
}


.webinar-card img {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  border: 1px solid var(--text-light);
  object-fit: cover;


}

.webinar-content {
  flex: 1;
  width: 100%;
}

.webinar-content h3 {
  font-weight: 500;
  margin-bottom: 5px;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}


.webinar-content p {
  margin: 2px 0;
  font-size: 14px;
}

.view-conference {
  display: inline-block;
  color: var(--bg-primary-color);
  font-weight: 600;
  font-size: 14px;
}

.badge {
  background: var(--bg-primary-color);
  color: #fff;
  outline: 3px double var(--bg-primary-color);
  padding: 4px 10px;
  border-radius: 0;
  margin-left: 5px;
  font-size: 12px;
  font-weight: 400;
}

/* Pagination Container */
.pagination-container {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

/* Pagination Buttons */
.pagination-container .prev-btn,
.pagination-container .next-btn {
  background: #f8f9fa;
  /* Light Gray Background */
  border: 1px solid #ccc;
  color: #6c757d;
  padding: 2px 6px;
  font-size: 14px;

  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.pagination-container .prev-btn:hover,
.pagination-container .next-btn:hover {
  background: #e9ecef;
}

/* Page Number Styles */
.pagination-container .page-number {
  background: var(--accent);
  /* Dark Gray */
  color: black;
  padding: 2px 6px;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;

}

.pagination-container .page-number.active {
  background: var(--bg-primary-color);
  /* Darker Shade */
  color: white;
}

/* Disabled Buttons */
.pagination-container .prev-btn:disabled,
.pagination-container .next-btn:disabled {
  background: #eeeeee;
  color: #666;
  cursor: not-allowed;
}


/* Divider */
.package-divider {
  border-top: 3px solid var(--bg-secondary-color);
  margin-bottom: 30px;
}

/* Package Card */
.package-card {
  border: 1px solid #ddd;
  padding: 20px;
  height: 100%;
  text-align: center;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: transform 0.2s ease-in-out;

  span {
    font-size: 12px;
  }
}

.package-card:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Package Title */
.package-card h4 {
  font-weight: bold;
  text-transform: uppercase;
}

/* Pricing */
.package-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin-bottom: 2rem;
}

/* List Items */
.package-card ul {
  list-style-type: none;
  padding: 0;
  margin: 15px 0;
}

.package-card ul li {
  padding: 5px 0;
  border-top: 1px solid #ddd;
  font-size: 16px;
}

/* Buy Button */
.buy-btn {
  background: #3178c6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.buy-btn:hover {
  background: #24588e;
}

/* Custom Slider */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 95%;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  transition: background 0.2s;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: #3178c6;
  border-radius: 50%;
  cursor: pointer;
}

input[type="range"]:hover {
  background: #bbb;
}

/* Background Styling */
.contact-section {
  background: var(--accent);
  /* Light Blue */
  padding: 40px 0;
}

/* Image Styling */
.contact-img {
  width: 200px;
  /* Adjust size */
}

/* Form Styling */
.form-control {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
}

.contact-form textarea {
  resize: none;
}


/* Footer Section */
.footer-section {
  background: var(--bg-primary-color);
  color: white;

  .about {
    p {
      font-size: 14px;
      font-weight: 400;
      margin-bottom: 14px;
    }

    .know-more {
      color: white;
      font-size: 14px;
    }
  }
}

/* Footer Headings */
.footer-section h5 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Footer Links */
.footer-links {

  padding: 0;
  margin: 0;

  a {
    color: #fff;
  }
}


.footer-links li {
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 14px;
  list-style-type: disc !important;
}

.footer-links li:hover {
  text-decoration: underline;
}

/* About Us Section */


.know-more:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 16px;
  transition: transform 0.2s ease-in-out;
}

/* Individual Icon Colors */
.social-icon.facebook {
  background: #3498DB;
}

/* Facebook */
.social-icon.pinterest {
  background: #E74C3C;
}

/* Pinterest */
.social-icon.linkedin {
  background: #2C3E50;
}

/* LinkedIn */
.social-icon.twitter {
  background: #3498DB;
}

/* Twitter */
.social-icon.youtube {
  background: #2C3E50;
}

/* YouTube */

/* Hover Effect */
.social-icon:hover {
  text-decoration: none;
}

/* Certification Logos */
.certification-logo {
  width: 120px;
  height: auto;
  margin: 10px;
}

/* Payment Logos */
.payment-logo {
  height: 50px;
  width: auto;
  margin: 5px;
}

/* Footer Bottom */
.footer-bottom {
  p {
    font-size: 14px !important;
  }
}


/* Webinar Title */
.conference-page .webinar-title {
  font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 400 !important;
  color: RGBA(13, 70, 83, 0.78);
  text-align: center;
  font-size: 36px;
  margin-bottom: 12px;
}

.webinar-details {
  font-size: 14px;
}

/* Webinar Description */
.webinar-description>p {
  font-size: 14px !important;
  margin-bottom: 10px;
  text-align: justify;
}

.webinar-description>ul li, .webinar-description>ul li p {
  font-size: 14px !important;
  margin-bottom: 5px;
  list-style-type: disc;
  text-align: justify;
}


/* Choose Your Options Card */
.options-card {

  border-radius: 0;
  overflow: hidden;
}

.options-card .card-header {
  background: #3178c6;
  padding: 10px;
  text-align: center;
  border-radius: 0;
  margin-bottom: 10px;
}

.card-body {
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #f3f1f2;

}

.options-card .form-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 0;
  font-size: 16px;

  font-family: var(--secondary-font);

  label {
    color: #444 !important;
  }

  .form-check-input {
    border: 1px solid #666;
    box-shadow: none;
  }
}

/* Additional Info Card */
.extra-info-card p {
  font-size: 14px;
}

/* Related Webinars */
.related-webinars {
  list-style: none;
  padding-left: 1.2rem;

}

.related-webinars li {
  margin-bottom: 5px;
  font-size: 16px;
  list-style-type: disc;
}

.related-webinars li a {
  text-decoration: none;
  color: var(--bg-secondary-color);

}

.related-webinars li a:hover {
  text-decoration: underline;
}

.cart-page .webinar-title,
.billing-page .webinar-title {

  font-weight: 600;
  text-align: start;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-page .qty-btn {
  width: 32px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}


/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}


.savedBillingCard {
  padding: 1.5rem 1rem;
  border: 1px solid #ddd;
  position: relative;

  .editBillingBtn {
    background: none;
    border: none;
    color: var(--bg-secondary-color);
    position: absolute;
    top: -5px;
    transition: all 0.3 ease-in-out;
    right: 10px;

    &:hover {
      transform: scale(1.1);
    }
  }

  p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: #444;
  }
}

.speaker-info {
  p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.faq_main {
  border: 1px solid #b3c2d6;
  margin-bottom: 20px;
  width: 100%;
  padding: 0px;
}

.faq_Hdr {
  background-color: #dddddd;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
}

.faq_body {
  .trainings {
    background-color: #dddddd;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
  }

  a {
    color: #337ab7 !important;
    text-decoration: none;
}

  ul {
    padding: 10px;
    border: 0px solid blue;
    li,p {
      font-size: 14px;
      margin-bottom: 10px;
    }
  }
  ul {
    padding: 10px;
    border: 0px solid blue;
}

  .sec_para {
    padding: 10px 0px;
    font-size: 14px;

  }
}