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

:root {
    --primary-color: #d97629;
    --secondary-color: #2f1635;
    --text-color: #3e4758;
    --gradient-bg: linear-gradient(242deg, #4e83e9, #4c86e6 24%, #4b87e5 30%, #17cfa4);


    /* head style */
    --head-font: "Raleway", sans-serif;

    /* body style */
    --body-font: "Inter", sans-serif;
    --body-font-size: 14px;
    --body-line-height: 1.5rem;
    --section-space: 3rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body-font);
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--head-font);
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.text-color {
    color: var(--text-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

h1 {
    font-size: 2.2rem;
    line-height: 3rem;
}

h2 {
    font-size: 1.5rem;
    line-height: 2rem;
}

h3 {
    font-size: 1.3rem;
    line-height: 2rem;
}

h4 {
    font-size: 1rem;
    line-height: 2rem;
}

h5 {
    font-size: .8rem;
    line-height: 1.5rem;
}

ul,
ul li,
ol,
ol li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}


.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.main-section.other-page {
    min-height: auto;
    padding: .5rem 1rem;
    overflow: initial;
}

.main-section.filter-page {
    padding: 0;
    min-height: auto;
    overflow: initial;
}

.main-title h1 {
    color: var(--text-color);
    font-weight: 700;
}

.category-search {
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-top: 1rem;
    border-bottom: 1px solid #d8dde6;
}

.main-section {
    /* background-image: var(--gradient-bg); */
    /* background-image: url(../images/main-bg.jpg); */
    /* background: #EEAECA;
background: radial-gradient(circle, rgba(238, 174, 202, 1) 0%, rgba(148, 187, 233, 1) 100%); */
background: #fff38a;
background: linear-gradient(179deg, rgba(255, 243, 138, 0.62) 0%, rgba(255, 155, 61, 0.77) 100%);
    background-size: cover;
    padding-bottom: 4rem;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.header-area {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.search-area {
    width: auto;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: .25rem;
    padding: .5rem;
}

.logo {
    width: 9rem;
}

.menu {
    width: auto;
}

.main-menu a {
    /* color: #fff; */
    color: var(--text-color);
    padding: 15px;
    font-weight: 600;
    display: inline-block;
}

.main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-menu ul {
    display: flex;
    flex-wrap: wrap;
}

.main-menu li {
    position: relative;
}

ul.submenu {
    display: none;
    position: absolute;
    width: 200px;
    background-color: #fff;
    border-radius: .25rem;
    left: .9375rem;
    top: 100%;
    z-index: 9;
}

ul.submenu li {
    width: 100%;
}

ul.submenu a {
    color: #000;
    font-weight: 300;
    padding: .5rem 1rem;
    display: block;
    width: 100%;
}

.main-menu li:hover ul.submenu {
    display: block;
}

.main-menu li.hasSubmenu:after {
    content: '\f078';
    font-family: 'FontAwesome';
    font-weight: 800;
    display: inline-block;
    position: relative;
    font-size: 12px;
    right: 1rem;
    transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0s; 
}

.main-menu li:hover .megamenu {
    opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0s; 
}

.main-menu li.hasSubmenu:hover:after {
    transform: rotate(180deg);
}

.main-section .row {
    align-items: center;
    justify-content: space-between;
}

/* .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
} */

.btn-primary {
  background: linear-gradient(135deg, #e67e22, #d35400);
  color: #fff;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
}

/* Hover Effect */
.btn-primary:hover {
  background: linear-gradient(135deg, #d35400, #e67e22);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Active (click) Effect */
.btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Focus Effect */
.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.4);
}



.hero-section {
    padding-top: 6rem;
}

.hero-section .container {
    max-width: 750px;
    text-align: center;
}

.hero-section .slide-element {
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: var(--head-font);
        font-size: 3rem;
    font-weight: 700;
    line-height: normal;
}

.hero-section .quote {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 300
}

.gradientText {
    background-image: radial-gradient(circle,rgba(230, 209, 28, 1) 0%, rgba(217, 118, 41, 1) 60%);
    font-weight: 700;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-section {
    position: relative;
    background-color: #fff;
    border-radius: 40px;
    padding: .5rem 2rem;
    margin-bottom: 5rem;
    z-index: 2;
        max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.form-section form {
    display: flex;
    align-items: center;
}

.form-section .nice-select,
.form-section input {
    border: 0;
}

.form-section .form-control:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.counter-section {
    position: relative;
}

.counter-section .number,
.counter-section .text {
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-block;
    /* color: #fff; */
}

.counter-section span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1rem;
}

.main-section .devider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.brochure-area {
    height: 35rem;
    border-radius: .5rem;
    overflow: hidden;
    border: 2px solid #3c3c3c;
}

ul.bidding-list li {
    line-height: 2.3rem;
}

ul.bidding-list i {
    color: var(--primary-color);
}











.single-event-box {
    filter: drop-shadow(0px 5px 10px rgba(111, 111, 111, 0.08));
    background-color: #ffffff;
    border: 1px solid rgba(85, 85, 85, 0.1);
    padding: 1rem;
    margin-bottom: 30px;
    border-radius: .25rem;
}

.single-event-box .event-content a {
    font-size: 22px;
    line-height: 30px;
    color: rgb(34, 34, 34);
    font-weight: 500;
    display: inline-block;
    transition: all 0.5s ease 0s;
}

.single-event-box .event-content .share img.icon {
    margin-right: .3rem;
    width: 16px;
    height: 14px;
}

.single-event-box .desc {
    font-size: 14px !important;
}


.single-event-box .top-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.single-event-box .top-content .left {
    display: flex;
    flex-wrap: wrap;
}

.single-event-box .top-content .left>div {
    margin-right: 30px;
    position: relative;
}

.single-event-box .top-content .left>div:before {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 1px;
    height: 18px;
    background: rgb(217 115 33 / 40%);
    transform: translateY(-50%);
}

.single-event-box .top-content .left>div:last-child:before {
    margin-right: 0;
    width: 0;
    height: 18px;
    background: transparent;

}

.single-event-box .share i,
.single-event-box .location i {
    margin-right: .5rem;
    font-size: 1.1rem;
}



.single-event-box .share i.fa-whatsapp {
    color: #17980e;
    margin-right: .2rem;
}

.single-event-box .single-tag {
    display: inline-block;
    background: #ccc;
    color: #000;
    text-transform: uppercase;
    font-size: .8rem;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: .2rem;
    cursor: pointer;
    height: 1.625rem;
    font-weight: 700;
}

.single-event-box .single-tag .form-check-input {
    margin-top: 6px;
}

.single-event-box .right-btn-list {
    display: flex;
}

.single-event-box .right-btn-list .dropdown {
    margin-left: 0.5rem;
}

.single-event-box .right-btn-list .search-text {
    margin-right: 0.7rem;
}

.single-event-box .tender-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    /* background-color: rgb(217 115 33 / 10%); */
    background-color: #fbf1e8;
    z-index: 9;
    padding: 1rem;
    border-radius: .25rem;
    position: sticky;
    top: 73px;
}

.single-event-box .tender-list .left {
    display: flex;
}

.single-event-box .tender-list .left button {
    margin-right: .25rem;
}

.single-explore {
    position: relative;
}

.single-explore img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.slick-slide {
    height: auto;
    padding-left: .625rem;
    padding-right: .625rem;
}

ul.slick-dots {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.slick-dots button {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: transparent;
    border: 1PX solid #ccc;
    border-radius: 100%;
}

ul.slick-dots li {
    margin-left: 5px;
    margin-right: 5px;
}

ul.slick-dots .slick-active button {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

footer {
    /* background-color: rgb(244 224 209); */
    background-image: url(../images/main-bg.jpg);
    padding-top: 2rem;
}

.tender-list .title {
    display: flex;
    align-items: center;
    margin-bottom: .5rem;
}

.tender-list h6 {
    color: #000;
    margin-right: 1rem;
}

.tender-list ul {
    display: flex;
    flex-wrap: wrap;
}

.tender-list li {
    padding-right: 1rem;
    margin-right: 1rem;
    position: relative;
}

.tender-list li:before {
    content: '';
    position: absolute;
    right: 0;
    height: 1rem;
    background-color: #939393;
    display: inline-block;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.tender-list li a {
    color: #939393;
    font-size: 14px;
}

.tender-list li a:hover {
    color: var(--primary-color);
}

.tender-list .single-list {
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 160px;
    margin-bottom: 1rem;
}

.copyright-description {
    padding-bottom: 1rem;
}

.copyright-description p {
    margin-bottom: 0;
}

ul.footer-link a {
    display: inline-block;
    font-size: 14px;
    line-height: 34px;
    color: #939393;
}

ul.footer-link a:hover {
    color: var(--primary-color);
}

.footer-content {
    padding-right: 5rem;
    position: relative;
}

ul.footer-address li {
    padding-top: .5rem;
    font-size: 14px;
}

ul.footer-social {
    display: flex;
}

ul.footer-social a {
    color: #fff;
}

ul.footer-social li {
    margin-right: 1rem;
}

.footer-title {
    color: #000;
}

footer hr {
    border-top: 1px solid #7b7b7b;
}

.footer-social a {
    font-size: 1rem;
    margin-right: .5rem;
}

.contact-section,
.explore-section,
.search-result-section,
.tender-bidding {
    position: relative;
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.single-add {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.single-add h4 {
    width: 100%;
}

.single-add a {
    color: #000;
}

.map-area {
    position: relative;
    border-radius: .25rem;
    overflow: hidden;
    border: 1px solid #ccc;
}

.map-area iframe {
    width: 100%;
    height: 300px;
}

.single-add i {
    height: 2rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.form-control:focus {
    box-shadow: none;
}

.search-area .input-group {
    width: 264px;
}


.breadcrumb-item.active a {
    color: #d97321;
}

.breadcrumb-section {
    position: relative;
    padding: 2rem 0;
    background-color: #f1f1f1;
}

.dash-line {
    border-bottom: 1px dashed;
}

.sorting-area {
    background-color: #fbf1e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}
























.main-mega-menu {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-mega-menu .dropdown {
    margin-right: 1rem;
}

.main-mega-menu .dropdown-toggle {
    border: 1px solid #d97321;
    background-color: #fff;
    color: #000;
    font-weight: 300;
    border-radius: 5px;
    padding: 0.2rem 1rem;
    font-size: 14px;
}

.main-mega-menu .dropdown-menu {
    width: 680px;
    border: 0;
}

.main-mega-menu .drp-content {
    padding: 1rem;
    background-color: #fff;
}

.main-mega-menu .dropdown-menu:after {
    content: '';
    position: fixed;
    right: 0;
    width: 1000000000000000px;
    height: 1000045px;
    background-color: rgb(0 0 0 / 30%);
    z-index: -1;
    top: 7px;
    left: -5001px;
}


.drp-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.drp-title h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #2f1635;
    font-weight: 500;
}

.drp-title .btn-close {
    font-size: 12px;
}

.dropdown-menu .scroll-area {
    max-height: 300px;
    overflow: auto;
}

.dropdown-menu .form-list-item {
    display: flex;
    flex-wrap: wrap;
}

.dropdown-menu .single-col {
    width: 50%;
}

.dropdown-menu .form-check label {
    color: #8d8d8d;
}

.dropdown-menu .modal-footer {
    margin-top: 1rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.dropdown-menu .single-filter-box {
    border: 0;
    margin-bottom: .5rem;
}


.dropdown-menu .drp-label {
    color: #8d8d8d;
}

.main-mega-menu .dropdown-toggle.show {
    background-color: #d97321;
    color: #fff;
}

.list-group-checkbox>label:not(:last-child) {
    margin-right: 1rem;
}


.blr-div {
    -webkit-filter: blur(4px);
    -moz-filter: blur(4px);
    -o-filter: blur(4px);
    -ms-filter: blur(4px);
    filter: blur(4px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: flex;
}

.tender-detail .single-content {
    margin-bottom: 3rem;
}

.single-content thead th:first-child,
.single-content tbody td:first-child {
    width: 200px;
}


.listNav .ln-letters {
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
    padding: 20px 20px 15px;
    margin-bottom: 20px;
    background: #fbf1e8;
    border: 1px solid #e3e9ed;
}

.listNav .ln-letters .ln-selected {
    color: #d97321;
    border-color: #f5e1d3;
    background-color: #cfc6bf;
}

.listNav .ln-letters span {
    font-weight: 500;
    font-size: 15px;
    border-radius: 4px;
    width: 34px;
    height: 34px;
    line-height: 32px;
    color: #9a4306 !important;
    border: 1px solid #f5e1d3;
    background-color: rgb(242, 234, 234);
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 0;
    float: none;
    display: inline-block;
    cursor: pointer;
}


.single-team-boxs {
    margin-bottom: 1rem;
}

.single-team-boxs a {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--text-color);
}

.search-area-box {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}



.feature-section {
    padding: 105px 0 90px;
    background-color: #f8f8f8;
}

.feature-section.pb-0 {
    padding-bottom: 0;
}

.single-feature-box:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: .5s;
    z-index: -1;
}

.single-feature-box:hover:before {
    height: 100%;
}

.feature-icon img {
    transition: .5s;
}

.feature-content h4 {
    font-size: 23px;
    color: #222222;
    font-weight: 700;
    text-align: center;
    margin: 28px 0 15px;
    transition: .5s;
}

.feature-content p {
    font-size: 16px;
    line-height: 27px;
    color: #555555;
    font-weight: 400;
    text-align: center;
    width: 90%;
    margin: auto;
    transition: .5s;
}

/* .single-feature-box:hover .feature-icon img {
    filter: brightness(0) invert(1);
} */

.single-feature-box:hover .feature-content h4 {
    color: #fff9eb;
}

.single-feature-box:hover .feature-content p {
    color: #fff9eb;
}

.single-feature-box {
    text-align: center;
    background: #ffff;
    padding: 31px 0 36px;
    border-top: 4px solid #d97321;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: .5s;
    filter: drop-shadow(0px 5px 15px rgba(148, 148, 148, 0.1));
    background-color: #ffffff;
}

.single-feature-box {
    height: 100%;
    margin-bottom: 0;
}

.single-feature-box:hover {
    border-top-color: #864109;
}

.gem-logo img {
    max-width: 100%;
}


.single-feature-box .number {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #d97321;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
}

.feature-content h4 {
    font-size: 1rem;
}

.single-feature-box::before {
    background-image: none;
    background-color: #d97321;
}

.single-feature-box:hover .number {
    background-color: #fff;
    color: #000;
}

.single-feature-box:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: .5s;
    z-index: -1;
}

.checked-circle {
    width: 21px;
}

.table-content-box {
    background: #ffb882;
    background: radial-gradient(circle, rgba(255, 184, 130, 1) 0%, rgba(217, 118, 41, 0.14) 100%);
    padding: 1rem 2rem;
    border-radius: 1rem;
    overflow: hidden;
}

.table-content-box .row {
    align-items: center;
}

#content-list {
    position: relative;
    padding-left: 1rem;
}

#content-list li {
    position: relative;
    display: flex;
    align-items: center;
}

#content-list li:before {
    content: '';
    background-image: url(../images//checked-circle.svg);
    background-size: contain;
    width: 1.3rem;
    display: inline-block;
    height: 1.3rem;
    margin-right: 1rem;
}

#content-list li a {
    color: var(--text-color);
    line-height: 2.2rem;
    font-size: 1.3rem;
}

.breadcrumb {
    position: relative;
    padding: 2rem;
    background-image: url(../images/bread-bg.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    overflow: auto;
}

.breadcrumb img {
    width: 1.5rem;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    font-size: 1rem;
}

.breadcrumb li {
    margin-right: 1rem;
    padding-right: 1rem;
    position: relative;
}

.breadcrumb li:before {
    content: '/';
    position: absolute;
    right: -2px;
}

.breadcrumb li:last-child:before {
    display: none;
}

.single-add img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 1rem;
}

/* CSS */
.scroll-text-container {
    position: relative;
    overflow: hidden;
    height: 48px;
    /* match text height */
}

.scroll-text {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
}





.single-slide-element {
    opacity: 0;
}

.contact-form .icon,
.single-event-box .icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
}

.nice-select {
    line-height: 3rem;
}

.form-control,
.nice-select {
    height: 3rem;
    border: solid 1px #e0e7ee;
}

.form-control,
.form-control::placeholder {
    font-size: 12px;
}

.modern_apertment ul {
    margin-bottom: 1rem;
}

.modern_apertment p {
    margin-bottom: 0;
}

.modern_apertment li {
    line-height: 32px;
}

#inquiry {
    position: fixed;
    right: 2rem;
    bottom: 7rem;
    /* border: 2px solid #000; */
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#inquiry img {
    width: 3rem;
}

.inquiry-form .modal-content {
    border-radius: .6rem;
    overflow: hidden !important;
}

.inquiry-form .modal-body {
    background-color: #e8e8e8;
    padding: 0;
}
.subscription-form.otherPage {
    background-color: #e8e8e8;
    padding: 2rem;
    border-radius: .5rem;
    max-width: 350px;
    margin-left: auto;
    margin-bottom: 2rem;
}

.subscription-form {
    display: flex;
    align-items: center;
}

.subscription-form .left {
    width: 55%;
    padding: 2rem 1rem;
    background-color: #e2e2e2;
}

.subscription-form .right {
    width: 45%;
    padding: 2rem;
}

.subscription-form .single-info {
    display: flex;
    align-items: center;
    margin-top: .8rem;
    font-size: .8rem;
}

.subscription-form .single-info p {
    margin: 0 0 0 .5rem;
}

.inquiry-form .btn-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

#whatsapp {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
}

#callbtn {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 5rem;
    left: 1rem;
    display: none;
}

@media only screen and (max-width: 767px) {
    #callbtn {
        display: inline-block;
    }
}













/* General */
.payment-section {
    padding: 40px 0;
    font-family: 'Inter', sans-serif;
}

.payment-section h5,
.payment-section h6 {
    margin: 0;
    font-weight: 600;
    color: #222;
}

.payment-section p {
    margin: 4px 0 0;
    color: #666;
    font-size: 14px;
}

/* Bank Cards */
.bank-details .info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    height: 100%;
    border: 1px solid #e4e4e4;
}

.info-card .icon img {
    width: 42px;
    height: 42px;
}

.info-card .label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-card {
    justify-content: space-between;
}

.copy-btn {
    background: #f1f5ff;
    border: none;
    color: #000;
    padding: 8px 14px;
    border: 2px solid transparent;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.copy-btn img {
    width: 1.2rem;
}

.copy-btn:hover {
    border-color: var(--primary-color);
}

/* Pay Card */
.pay-card {
    background: linear-gradient(135deg, #ffffff, #f7f9ff);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e4e4e4;
}

.pay-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    background-color: #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
}

.pay-header img {
    height: 28px;
}

.pay-body {
    text-align: center;
    padding: 25px 20px;
}

.pay-body .qr {
    width: 180px;
    margin-bottom: 15px;
}

.pay-link {
    display: inline-block;
    margin-top: 10px;
    color: #2f5bea;
    font-weight: 600;
    text-decoration: none;
}

.pay-link:hover {
    text-decoration: underline;
}






/* Mega menu start */
.megamenu {
    position: absolute;
    width: 700px;
    background-color: #fff;
    border: 1px solid #ccc;
    right: 0;
    top: 100%;
    display: flex;
    flex-wrap: wrap;
    z-index: 99;
    border-radius: .5rem;
    overflow: hidden;

    opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    visibility 0s linear 0.5s; 

}

.megamenu .nav-tabs {
    display: block;
    width: 25%;
    border-right: 1px solid #ccc;
}

.megamenu .nav-tabs .nav-link {
    width: 100%;
    text-align: left;
    color: #989898;
    font-weight: 500;
    margin-bottom: 0;
    border-color: transparent;
}

.megamenu .nav-tabs .nav-link.active {
    color: #000;
}

.megamenu .nav-item {
    border-bottom: 1px solid #ccc;
}

.megamenu .tab-content {
    padding: 10px 20px;
    width: calc(75%);
    max-height: 300px;
    overflow: auto;
}

.megamenu .viewAll {
    border-top: 1px solid #ccc;
}

.megamenu .tab-content a {
    padding: 5px 0;
    font-size: 14px;
    display: block;
    width: 100%;
    font-weight: 300;
    color: #989898;
}

.megamenu .tab-content li {
    width: 50%;
}

.megamenu .tab-content a:hover {
    color: #000;
}

.megamenu .tendor-button {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.megamenu .mainMegaMenu {
    display: flex;
    flex-wrap: wrap;
}

.megamenu .radio-group {
    display: inline-flex;
    gap: 10px;
}

.megamenu .radio-group input[type="radio"] {
    display: none;
    /* hide default radio */
}

.megamenu .radio-group label {
    padding: 4px 20px;
    border: 2px solid #d97629;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

/* Selected button style */
.radio-group input[type="radio"]:checked+label {
    background-color: #ffe6d2;
    /* color: white; */
}

/* Mega menu end */

.service-section {
    padding: 2rem 0;
    position: relative;
}
.service-section .shape {
    position: absolute;
    right: 1%;
    width: 200px;
    z-index: -1;
    opacity: 0.2;
    top: -5%;
    mix-blend-mode: difference;
}
.service-section .single-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-section .single-list img.regImg {
    aspect-ratio: 4 / 3;
    width: 110%;
}

.service-section .single-list .img-wrapper, .service-section .single-list .content {
    width: 50%;
    position: relative;
}

.service-section .single-list li {
        position: relative;
        padding-left: 1.8rem;
        margin-bottom: .5rem;
}

.service-section .single-list li:before {
        content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../../assets/images/list-arrow.svg) 0 0 / contain no-repeat;
    top: 3px;
    left: 0;
}
.service-section .single-list:nth-child(even) {
    flex-direction: row-reverse;
}


.info-section {
    position: relative;
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.info-section .icon {
    position: relative;
    width: 50px;
    margin-left: 1rem;
}

.info-section .icon:before {
    content: '';
    position: absolute;
    left: -1rem;
    top: -.5rem;
    width: 100%;
    height: 100%;
    background-color: #ffc6b54d;
    z-index: 0;
    border-radius: 100%;
}
.info-section .col-md-4:nth-child(5n + 1) .icon:before {
    background-color: #d6ff004d;
}
.info-section .col-md-4:nth-child(5n + 2) .icon:before {
    background-color: #ff00f521;
}
.info-section .col-md-4:nth-child(5n + 3) .icon:before {
    background-color: #ffc6b54d;
}
.info-section .col-md-4:nth-child(5n + 4) .icon:before {
    background-color: #008cff1a;
}
.info-section .col-md-4:nth-child(5n + 5) .icon:before {
    background-color: #60e5c838;
}

.info-section .col-md-4 {
    margin-top: 30px;
}



.choice-section {
    position: relative;
    padding: 2rem 0;
}

.single-choice {
    position: relative;
    padding: 1rem;
    border: 2px solid #ccc;
    border-radius: .5rem;
    margin-bottom: 1rem;
    counter-increment: choice-counter; /
}

.single-choice h3 {
    margin-bottom: .5rem;
    position: relative;
}

.single-choice h3:before {
    content: counter(choice-counter, decimal-leading-zero); /* 01, 02, 03 */
    background-color: #d97629;
    color: #fff;
    padding: 0 .5rem;
    margin-right: .5rem;
    border-radius: .3rem;
}

.single-choice p {
    margin-bottom: 0;
}

.industry-section {
    position: relative;
    padding: 2rem;
    background-color: #f9f9f9;
}

.industry-section .single-industry {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.industry-section .icon {
    width: 80px;
}

.industry-section h5 {
    margin-bottom: .5rem;
}

.latest-tendor {
    position: relative;
    padding: 2rem 0;
}

.latest-tendor .single-tender {
    position: relative;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #ccc;
}


.latest-tendor a {
    display: block;
    width: 100%;
}

.latest-tendor  h4 {
    color: #000;
    line-height: normal;
}

.latest-tendor  img.icon {
    width: 25px;
    margin-right: .5rem;
}
.latest-tendor .date {
    color: #d70303;
    font-size: 12px;
}


.testimonial-section {
    padding: 2rem 0;
    position: relative;
    background-color: #f9f9f9;
}

.testimonial-slider p {
    margin: .5rem 0;
    color: #777777;
    font-size: 12px;
}

.testimonial-slider .star {
    color: #00c904;
}
.head-sub {
    max-width: 800px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: .5rem;
}




.faq-section {
    position: relative;
    padding: 2rem 0;
}
.faq-list {
    position: relative;
}

.faq-list .single-faq {
    position: relative;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
}

.faq-list .single-faq .faq-content {
    font-size: 14px;
    padding-top: 1rem;
    color: #6a6a6a;
}

.faq-list .single-faq.active {
    background-color: #f4f4f4;
}

.faq-list .faq-header {
    position: relative;
    cursor: pointer;
}

.faq-list .faq-header:after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 0;
    color: #d97629;
    transform: rotate(180deg);
}

.faq-list .active .faq-header:after {
    transform: rotate(0);
}

.sticky-element {
    position: sticky;
    top: 10%;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: .5rem;
    display: block;
}

.main-title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.main-title p {
    color: #959595;
}

.main-title h2 {
    font-size: 2.1rem;
}
.main-title h3 {
    font-size: 1.8rem;
}
.img-radious {
    border-radius: .5rem;
    overflow: hidden;
    
}

.spin {
    animation: spin 8s linear infinite;
}

.otherPageHeroSection {
    position: relative;
    margin-top: 3rem;
}

.trustPoint {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.trustPoint .space {
    border-right: 2px solid #000;
    height: 26px;
    width: 0;
}

.trustPoint img {
    width: 40px;
    margin-right: .5rem;
    height: 40px;
    background-color: #000;
    border-radius: 100%;
    padding: .2rem;
}

.otherPageHeroSection {
    padding: 3rem;
}

.otherPageHeroSection .content {
    max-width: 600px;
}

.otherPageHeroSection h1 {
    font-size: 3rem;
    color: #3e4758;
    font-weight: 700;
    margin-bottom: 2rem;
}

.otherPageHeroSection p {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
}

.otherPageAdvanced .nice-select, .otherPageAdvanced .form-control {
    height: 2rem;
    line-height: 2rem;
}


.gem-registration {
    position: relative;
    padding: 2rem 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Responsive */
@media (max-width: 768px) {
    .bank-details .col-md-4 {
        margin-bottom: 20px;
    }

    .pay-body .qr {
        width: 150px;
    }
}