@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
}
body {
  font-family: "Inter", sans-serif;
}

:root {
  --theme_blue: #1b9cbb;
  --theme_dark_blue: #1d3d78;
  --theme_para_color: #333333cc;
  --bg_light: #f0f9fb;
}

a {
  text-decoration: none;
  display: inline-block;
}
ul {
  padding: 0px;
  margin: 0px;
}
ul li {
  list-style: none;
  line-height: 21px;
  color: #6e6e6e;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  font-family: var(--font_libre);
  color: var(--heading_color);
}
h4 {
  color: #2e2e2e;
  font-size: 20px;
  font-weight: 600;
  /*text-transform: capitalize;*/
}
address {
  margin: 0px;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
  color: var(--theme_para_color);
  margin: 0px;
}
.custom-container {
  padding: 0px 75px;
}
.full_img {
  width: 100%;
}
section {
  padding: 72px 0px;
}
.singel_heading {
  margin-bottom: 50px;
}

/* Topbar */
.topbar {
  background: var(--theme_dark_blue);
}
.topnav {
  display: flex;
  padding: 0 65px;
  justify-content: flex-end;
  align-items: center;
}

.topnav > li {
  position: relative;
  padding: 15px 20px;
}

.topnav > li > a {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
}
.topnav > li > a i {
  font-size: 23px;
  font-weight: 200;
}
/* Dropdown menu */
.dropdown_menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  display: none;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  min-width: 200px;
}
.dropdown_menu li a {
  display: block;
  width: 100%;
  color: #333;
  padding: 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.dropdown_menu li a:hover {
  background-color: #f5f5f5;
}

.topnav > li:hover .dropdown_menu {
  display: block;
}
.header .navbar-expand-lg .navbar-nav .nav-item:hover .dropdown_menu {
  display: block;
}
.topnav > li img {
  width: 20px;
  height: 20px;
}

/* Topbar */
.navbar > .container {
  position: relative;
}
.btn-primary {
  background: #fff;
  padding: 5px 20px;
  border: 0px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--theme_gray);
}
.btn-primary p {
  color: var(--theme_gray);
}
.btn-round {
  background-color: var(--theme_gray);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
}
.btn-primary:hover {
  background-color: var(--theme_light_green);
  color: var(--theme_gray);
}
.custom_btn {
  background-color: var(--theme_dark_blue);
  padding: 12px 25px;
  color: #fff;
  border-radius: 50px;
  line-height: 24px;
  font-weight: 400;
  transition: 0.5s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
/*.custom_btn:hover {*/
/*  background-color: var(--theme_light_green);*/
/*  color: var(--theme_gray);*/
/*}*/
.custom_btn i {
  transition: 0.3s;
}
.custom_btn:hover i {
  right: 15px;
}
.btn.custom_btn.white_btn {
  color: var(--theme_gray) !important;
  background: #fff !important;
}
.icon_left {
  padding: 10px;
  padding-left: 45px;
}
.icon_left i {
  left: 16px;
  right: auto;
  font-size: 18px;
}
.text_btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: var(--theme_para_color);
}
.swiper {
  padding: 5px;
}
/* main heading */
.main_heading {
  margin-bottom: 50px;
}
.main_heading h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 43.57px;
  color: var(--theme_para_color);
}
.bg_light {
  background-color: var(--bg_light);
}

/* main heading */
/* header start */
.header {
  width: 100%;
  left: 0px;
  z-index: 999;
  background-color: #fff;
  position: absolute;
  top: 51px;
}
.header.sticky {
  position: fixed;
  top: 0px;
}
.header .navbar {
  padding: 14px 65px;
}
.header .navbar-nav .nav-item {
  position: relative;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding-right: 45px;
  padding-left: 0px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
  color: var(--theme_para_color);
}
.navbar-expand-xl .navbar-nav .nav-link.active,
.navbar-expand-xl .navbar-nav .nav-link:hover {
  color: var(--theme_blue);
}
.header.sticky {
  animation: slideDown 0.35s ease-out;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 999;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header .header_right {
    position: relative;
    display: flex;
    gap: 10px;
}
.header .header_right .form-control {
  height: 44px;
  border-radius: 50px;
  border: 1px solid #d2d2d2;
}
.header .header_right .form-control::placeholder {
  color: #33333399;
}

/* header end */

/* banner start */
.details-banner {
  margin-top: 82px;
  padding: 0px;
}
.banner-container {
  background-color: #0a3b7a;
  color: white;
  padding: 50px 0px;
  transition: 0.5s;
}
.banner-container.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0px;
  z-index: 9999;
}
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 15px;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

.report-cover img {
  border-radius: 5px;
}

.report-id,
.publish-date {
  font-size: 14px;
  margin-bottom: 10px;
}

.report-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.document-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.doc-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  border-radius: 3px;
  color: white;
  background: #ffffff1f;
  padding: 3px;
}
.doc-icon img {
  width: 100%;
}
.dtlContaint-inner {
  background: #e9f1fe;
  padding: 30px;
  border-radius: 10px;
}
.detail_containt .tab-content {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}
.detail_containt .nav-tabs {
  border-bottom: none;
}
.detail_containt .nav-tabs .nav-link {
  border: none;
  color: #555;
  padding: 15px;
  font-weight: 500;
}
.detail_containt .nav-tabs .nav-link.active {
  border-bottom: 3px solid var(--theme_blue);
  color: var(--theme_blue);
  font-weight: 600;
  background-color: transparent;
}
.detail_containt .download-btn {
  background-color: #1e3a70;
  color: white;
  border-radius: 25px;
  padding: 8px 15px;
}
.detail_containt .sidebar-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: sticky;
  top: 170px;
}
.detail_containt .buy-now-btn {
  background-color: #1e3a70;
  color: white;
  border-radius: 50px;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.detail_containt .discount-btn {
  background-color: #00a0b0;
  color: white;
  border-radius: 50px;
  padding: 10px;
  width: 100%;
  margin-bottom: 10px;
}
.detail_containt .call-btn {
  background-color: #8ed1dc;
  color: #333;
  border-radius: 50px;
  padding: 10px;
  width: 100%;
}
.detail_containt .market-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.detail_containt .audio-btn {
  border: 1px solid #1e3a70;
  color: #1e3a70;
  background-color: white;
  border-radius: 25px;
  padding: 8px 15px;
}
.request-btn {
  position: fixed;
  top: 10%;
  right: 10px;
  background: transparent;
  border: none;
  z-index: 99999;
  padding: 0px;
}
.request-btn span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: white;
  padding: 18px 14px;
  font-size: 12px;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 0px;
  top: 10%;
  z-index: 9999;
  border-radius: 50px;
  border: none;
  background-color: var(--theme_dark_blue);
  margin: 2px 2.5px;
}
@property --angel {
  syntax: "<angle>"; /* Correct spelling and value type */
  initial-value: 0deg;
  inherits: false;
}
.request-btn::after {
  content: "";
  background: conic-gradient(
    from var(--angel) at 50% 50%,
    #120020 0deg,
    #f36fff 53.3deg,
    #268aff 90.46deg,
    #52eaea 126.24deg,
    #120020 178.82deg,
    #120020 360deg
  );
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 50px;
  animation: 3s spin linear infinite;
}
@keyframes spin {
  from {
    --angel: 0deg;
  }
  to {
    --angel: 360deg;
  }
}
.img-container {
  box-shadow: 0px 0px 13px 6px #0000001f;
  border-radius: 10px;
  margin: 20px 0px;
}
.detail_containt table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  table-layout: fixed;
  border: #ddd 1px solid;
}

.detail_containt th {
  background-color: #1d3c6e;
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 400;
}

.detail_containt td {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.detail_containt tr:last-child td {
  border-bottom: none;
}
/* banner end */
/* Footer Styles */
.footer-area {
  background: var(--theme_dark_blue);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  padding: 0px 40px;
}
.footer-area::after {
  content: "";
  position: absolute;
  width: 967px;
  height: 967px;
  background-color: var(--theme_blue);
  right: -18%;
  bottom: -82%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(300px);
}
/* Newsletter Input */
.form-control {
  border-radius: 30px 0 0 30px;
  height: 45px;
  border: none;
}

.btn-submit {
  background-color: #26c6da;
  color: white;
  border-radius: 0 30px 30px 0;
  border: none;
  height: 45px;
  padding: 0 20px;
}

.btn-submit:hover {
  background-color: #00acc1;
  color: white;
}

/* Payment Icons */
.payment-icon {
  background-color: white;
  border-radius: 5px;
  padding: 5px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon img {
  max-height: 30px;
  max-width: 100%;
  object-fit: contain;
}

/* Contact Info */
.contact-info li {
  color: rgba(255, 255, 255, 0.8);
  gap: 10px;
}

.contact-info i {
  color: #26c6da;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  width: 35px;
  height: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
  margin-bottom: 10px;
}
.footer_item {
  margin: 0px auto;
  display: table;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #26c6da;
  padding-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .footer-area h5:not(:first-child) {
    margin-top: 30px;
  }
}
.intl-tel-input{
    width:100%;
}
