@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --primary-color: #FFB71B;
    --secondary-color: #B27A00;
}
html,body{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background-color: #0B0C0C;
    color: #fff;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Inter", sans-serif;
    margin: 0;
}
.font-instrument{
    font-family: "Instrument Serif", serif;
    font-style: italic;
}
p,li,span{
    font-family: "Inter", sans-serif;
    margin: 0;
}
img{
    max-width: 100%;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
button,
button:focus,
button:active{
    outline: none !important;
    box-shadow: none !important;
}
.color-skyblue{
    color: #B8DFF9;
}
.circle-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
  z-index: 9999;
}
header .nav-item a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .4s all;
}
header .nav-item a.active,
header .nav-item a:hover{
    color: var(--primary-color) !important;
}
.navbar-brand {
    margin-right: 50px;
    padding-right: 20px;
    position: relative;
}
.navbar-brand:after {
    content: '';
    height: 24px;
    width: 1px;
    background: #262626;
    position: absolute;
    right: -25px;
    top: 20px;
}
.btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: .4s all;
}
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active{
    background: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 10px 10px 5px 0px var(--primary-color);
}
.banner-content .top-badge {
    background: rgb(255 255 255 / 4%);
    width: max-content;
    margin: 0 auto;
    border-radius: 30px;
    border: 1px solid rgb(255 255 255 / 8%);
    color: #fff;
    padding: 6px 12px 6px 5px;
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 500;
}
.banner-content .top-badge .badge {
    background: var(--primary-color);
    font-size: 12px;
    font-weight: 500;
    border-radius: 30px;
    text-transform: uppercase;
    margin-right: 10px;
    padding: 8px 12px;
}
.banner-content h1 {
    font-size: 64px;
    color: #fff;
    font-weight: 400;
}
.color-cream {
    color: #FFE7B4;
}
.banner-content p {
    font-size: 16px;
    color: #717784;
}
.banner-btn a {
    margin-right: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    padding: 12px 30px;
}
.btn-secondary {
    background: #151516;
    border-color: #282829;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active{
    box-shadow: 10px 10px 5px 0px #282829;
}
.banner-sec{
    padding: 80px 0 0;
}
.line-track {
    width: 100%;
    height: 3px;
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}
.line-rocket {
    position: absolute;
    top: 0;
    left: -25%;
    width: 25%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.35),
      rgba(255,255,255,0.9),
      rgba(255,255,255,0.35),
      transparent
    );
    filter: blur(0.4px);
    animation: rocketMove 2.2s linear infinite;
}
.line-rocket-left{
    left: auto;
    right: -25%;
    animation: rocketMoveleft 2.2s linear infinite;
}
@keyframes rocketMove {
    from { left: -25%; }
    to   { left: 100%; }
}
@keyframes rocketMoveleft {
    from { right: -25%; }
    to   { right: 100%; }
}
.banner-sec .line-track {
    margin-top: -3px;
}
.main-title{
    font-size: 48px;
    font-weight: 400;
}
.logo-slider{
    position: relative;
}
.logo-slider .owl-stage {
    display: flex;
}
.logo-slider .item {
    border: 1px solid rgb(255 255 255 / 4%);
    background: rgb(255 255 255 / .4%);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.logo-slider .item img {
    max-width: 160px;
    filter: contrast(0);
    opacity: .6;
    transition: .4s all;
}
.logo-slider .item:hover img{
    opacity: 1;
    filter: none;
}
/* LEFT FADE */
.logo-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    pointer-events: none;
    z-index: 5;

    background: linear-gradient(
        to right,
        rgba(11, 11, 11, 1),
        rgba(11, 11, 11, 0.85),
        rgba(11, 11, 11, 0.6),
        rgba(11, 11, 11, 0.3),
        rgba(11, 11, 11, 0)
    );

    border-right: 1px solid rgb(255 255 255 / 4%);
}

/* RIGHT FADE */
.logo-slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
    height: 100%;
    pointer-events: none;
    z-index: 5;

    background: linear-gradient(
        to left,
        rgba(11, 11, 11, 1),
        rgba(11, 11, 11, 0.85),
        rgba(11, 11, 11, 0.6),
        rgba(11, 11, 11, 0.3),
        rgba(11, 11, 11, 0)
    );

    border-left: 1px solid rgb(255 255 255 / 4%);
}
.basis-content h5{
    color: #B8DFF9;
    font-size: 14px;
}
.description,
.basis-content p {
    font-size: 16px;
    color: #717784;
}
.basis-content ul li {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    padding-left: 22px;
}
.basis-content ul li:before{
    content: url('../img/check.svg');
    position: absolute;
    left: 0;
    top: 2px;
}
.basics-sec {
    padding-bottom: 50px;
}
.core-sec {
    background: url('../img/core-bg.png') no-repeat;
    background-size: 50%;
    background-position: 100% 50%;
    padding-bottom: 60px;
}
.core-box {
    padding: 40px;
    border: 1px solid #FFFFFF14;
    border-left: 0;
}
.corebox-first{
    border-left: 1px solid #FFFFFF14;
}
.core-box img {
    margin-bottom: 20px;
}
.core-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}
.core-box p {
    color: #717784;
    line-height: 26px;
}
.core-sec .line-track {
    margin-top: -2px;
}
.blog-card {
    padding: 40px;
    border-right: 1px solid rgb(255 255 255 / 8%);
}
.blog-content h5 {
    font-size: 14px;
}
.blog-content h3 {
    font-size: 24px;
    font-weight: 400;
}
.blog-content p {
    color: #717784;
    font-size: 14px;
}
.blog-link{
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.faq-sec{
    padding: 100px 0;
}
.accordion button.accordion-button {
    background: transparent;
    border-radius: 0 !important;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}
.accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    border-left: 1px solid rgb(255 255 255 / 8%);
    padding: 25px 25px 25px 35px;
}
.accordion .accordion-item.active{
    background-color: rgba(255 255 255 / 8%);
}
.accordion button.accordion-button,
.accordion .accordion-body {
    padding: 0;
}
.accordion .accordion-body p {
    color: #717784;
    margin-top: 10px;
}
.accordion-button::after {
    background: none;
    content: '+';
    font-size: 26px;
    width: auto;
    height: auto;
    font-weight: 300;
}
.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
    content: '-';
    font-size: 36px;
}
.cta-section .container {
    background-color: #151616;
    padding: 80px 0;
}
.cta-buttons a {
    background: #FFB71B;
    padding: 60px 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.cta-buttons a:last-child {
    background-color: #000;
    color: #fff;
}
footer {
    padding-bottom: 30px;
}
.footer-link h4{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.footer-link ul li {
    margin-bottom: 10px;
}
.disclamer-text,
.privacy-links li a,
.footer-link ul li a {
    color: #717784;
    text-decoration: none;
    transition: .4s all;
}
.privacy-links li a:hover,
.footer-link ul li a:hover{
    color: var(--primary-color);
}
.social-links,
.privacy-links{
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.privacy-links{
    justify-content: end;
}
.social-links li a {
    background: rgba(255 255 255 / 4%);
    border: 1px solid rgba(255 255 255 / 8%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: .4s all;
}
.social-links li a:hover{
    background-color: var(--primary-color);
}
header .container {
    border-bottom: 1px solid #ffffff26;
    padding-bottom: 10px;
}
.research-sec {
    background: url('../img/research-bg.png') no-repeat center/cover;
    padding: 150px 0;
}
.report-listing{
    padding: 100px 0;
}
.report-listing .nav .nav-link.active {
    background: transparent;
    color: var(--primary-color);
    border: none;
}
.report-listing .nav .nav-link {
    color: #717784;
    border: none;
    padding: 20px;
    position: relative;
    text-align: center;
}
.report-listing .nav .nav-link:hover {
    border: none;
    color: var(--primary-color);
}
.nav.nav-tabs {
    width: max-content;
    border-color: #ffffff17;
    margin-bottom: 40px;
}
.report-listing .nav .nav-link:before {
    content: '';
    background: var(--primary-color);
    width: 0;
    height: 1px;
    left: 0;
    position: absolute;
    bottom: 0;
    transition: .4s all;
}
.report-listing .nav .nav-link:hover:before,
.report-listing .nav .nav-link.active:before{
    width: 100%;
}
.research-detail-content {
    padding-bottom: 30px;
}
.research-details{
    background: url('../img/research-detail-light.png') no-repeat left;
}
.research-details h5 {
    color: #B8DFF9;
    font-size: 14px;
}
.research-details h1 {
    font-size: 40px;
}
.research-detail-content h3 {
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 32px;
    font-weight: 400;
}
.research-detail-content p {
    color: #717784;
    margin-bottom: 30px;
}
.research-detail-content li {
    color: #717784;
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 10px;
}
.research-detail-content ul {
    margin-bottom: 40px;
}
.contact-sec{
    padding: 100px 0;
}
.contact-sec h1{
    font-size: 48px;
}
.contact-details p, .contact-details a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
}
.form-box {
    background: rgb(255 255 255 / 4%);
    padding: 40px;
}
.form-box h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}
label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
.form-control {
    background: rgba(255 255 255 / 4%);
    border-color: rgba(255 255 255 / 4%);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
}
.form-control:focus {
    color: #fff;
    background-color: rgba(255 255 255 / 4%);
    border-color: rgba(255 255 255 / 4%);
    outline: 0;
    box-shadow: none;
}
.with-icon{
    position: relative;
}
.with-icon img {
    position: absolute;
    top: 19px;
    left: 10px;
}
.with-icon .form-control{
    padding-left: 40px;
}
.form-control::placeholder{
    color: #717784 !important;
}
select {
    background: url(../img/down.svg);
}
select option {
    color: #717784;
    background: rgb(255 255 255 / 4%);
}
textarea {
    resize: none;
}
.protocol-sec{
    background: url('../img/protocols.png') no-repeat center/cover;
}
.coresec h4 {
    font-size: 24px;
    font-weight: 400;
}
.coresec li {
    margin-left: 15px;
    color: #717784;
    list-style-type: disc;
}
.coresec {
    padding: 100px 0;
}
.coresec .core-box {
    border-bottom: 0;
}
p.disable-badge {
    font-size: 10px;
    text-align: center;
    background: #151516;
    border: 1px solid #282829;
    padding: 5px;
    border-radius: 4px;
}
.corebtnbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
}
a.corebtn {
    border: 1px solid var(--primary-color);
    padding: 6px 15px;
    color: var(--primary-color);
    font-size: 10px;
    text-decoration: none;
    border-radius: 4px;
    width: max-content;
    display: inline-block;
    min-width: 180px;
    text-align: center;
    background: #151516;
}
.eco-sec{
    padding-bottom: 100px;
}
.counter-sec {
    padding: 0 0 100px;
}
.counter-box {
    text-align: center;
    border: 1px solid rgb(255 255 255 / 8%);
    padding: 40px 10px;
    border-top: 0;
}
.counter-box h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
}
.pulse {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #16a516;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
    will-change: transform, opacity, box-shadow;
    animation: pulse-animation 2s ease-in-out infinite;
}
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.15);
    opacity: 0.85;
    box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.12);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.15);
  }
}
.contact-description{
    font-style: italic;
    color: #717784 !important;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
}
@media(max-width: 1400px){
    a.corebtn {
        min-width: max-content;
    }
}
@media(max-width: 991px){
    .offcanvas {
        background: #0B0C0C;
    }
    .navbar-toggler-icon {
        width: 25px !important;
        height: 25px!important;
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAzMCAzMCc+PHBhdGggc3Ryb2tlPScjZmZmJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJyBkPSdNNCA3aDIyTTQgMTVoMjJNNCAyM2gyMicvPjwvc3ZnPg==)!important;
    }
    .offcanvas-header .btn-close, .modal-header button.btn-close {
        opacity: 1;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nI2ZmZic+PHBhdGggZD0nTS4yOTMuMjkzYTEgMSAwIDAgMSAxLjQxNCAwTDggNi41ODYgMTQuMjkzLjI5M2ExIDEgMCAxIDEgMS40MTQgMS40MTRMOS40MTQgOGw2LjI5MyA2LjI5M2ExIDEgMCAwIDEtMS40MTQgMS40MTRMOCA5LjQxNGwtNi4yOTMgNi4yOTNhMSAxIDAgMCAxLTEuNDE0LTEuNDE0TDYuNTg2IDggLjI5MyAxLjcwN2ExIDEgMCAwIDEgMC0xLjQxNCcvPjwvc3ZnPg==) no-repeat center;
        background-size: 14px;
    }
    .navbar-brand {
        margin-right: 30px;
        padding-right: 0px;
    }
    .hamburger {
        order: 3;
    }
    .core-box{
        border-left: 1px solid #FFFFFF14;
    }
    .main-title {
        font-size: 40px;
    }
    .faq-sec {
        padding: 60px 0 40px;
    }
    .accordion button.accordion-button {
        font-size: 16px;
    }
    .social-links, .privacy-links {
        gap: 0 8px;
    }
    .disclamer-text, .privacy-links li a, .footer-link ul li a {
        font-size: 14px;
    }
    header .nav-item a {
        font-size: 20px;
    }
    .offcanvas-body {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .contact-sec h1 {
        font-size: 38px;
    }
    .corebtnbox{
        justify-content: start;
    }
}
@media(max-width: 767px){
    .banner-content .top-badge .badge {
        font-size: 10px;
    }
    .banner-content h1 {
        font-size: 38px;
    }
    .banner-content p {
        font-size: 14px;
    }
    .banner-btn a {
        font-size: 14px;
        padding: 12px 22px;
    }
    .main-title {
        font-size: 26px;
    }
    .logo-slider::after,
    .logo-slider::before {
        width: 90px;
    }
    .logo-slider .item img {
        max-width: 100px;
    }
    .logo-slider .item {
        padding: 10px;
    }
    .blog-card {
        padding: 0 0 20px 0;
        border-right: none;
        margin-bottom: 30px;
        border-bottom: 1px solid rgb(255 255 255 / 8%);
    }
    .accordion .accordion-item {
        padding: 15px;
    }
    .accordion .accordion-body p {
        font-size: 14px;
    }
    .cta-buttons a {
        font-size: 16px;
    }
    .privacy-links{
        justify-content: start;
    }
    .footer-logo img {
        max-width: 160px;
    }
    .footer-logo {
        display: block;
        margin-bottom: 20px;
    }
    p.disclamer-text.text-end {
        text-align: left !important;
    }
    .blog-content h3 {
        font-size: 20px;
    }
    .report-listing .nav .nav-link {
        padding: 14px 10px;
        font-size: 12px;
    }
    .research-sec {
        padding: 40px 0;
    }
    .report-listing {
        padding: 30px 0;
    }
    .research-details h1 {
        font-size: 30px;
    }
    .research-detail-content h3 {
        margin-top: 40px;
        font-size: 26px;
    }
    .coresec,
    .contact-sec {
        padding: 50px 0;
    }
    .form-box {
        padding: 20px;
    }
    .form-box h4 {
        font-size: 20px;
    }
    .counter-box h2 {
        font-size: 34px;
    }
    .counter-sec,
    .eco-sec {
        padding-bottom: 50px;
    }
    .nav.nav-tabs li {
        width: 50%;
        margin-bottom: 10px;
    }
    .nav.nav-tabs {
        width: 100%;
        flex-wrap: wrap;
        justify-content: start;
    }
}


/* Pagination Styles */
.pagination-wrapper {
    margin-top: 40px;
    margin-bottom: 60px;
}
.pagination {
    gap: 8px;
}
.pagination .page-item .page-link {
    background: rgba(255 255 255 / 4%);
    border: 1px solid rgba(255 255 255 / 8%);
    color: #717784;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: .4s all;
}
.pagination .page-item .page-link:hover {
    background: rgba(255 255 255 / 8%);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}
.pagination .page-item.disabled .page-link {
    background: rgba(255 255 255 / 2%);
    border-color: rgba(255 255 255 / 4%);
    color: #3a3a3a;
    cursor: not-allowed;
}
.pagination .page-item.disabled .page-link:hover {
    background: rgba(255 255 255 / 2%);
    border-color: rgba(255 255 255 / 4%);
    color: #3a3a3a;
}
@media(max-width: 767px) {
    .pagination .page-item .page-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    .pagination-wrapper {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
