/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: #2ecc71;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 576px) {
    .col-sm-1 { width: 8.333333%; }
    .col-sm-2 { width: 16.666667%; }
    .col-sm-3 { width: 25%; }
    .col-sm-4 { width: 33.333333%; }
    .col-sm-5 { width: 41.666667%; }
    .col-sm-6 { width: 50%; }
    .col-sm-7 { width: 58.333333%; }
    .col-sm-8 { width: 66.666667%; }
    .col-sm-9 { width: 75%; }
    .col-sm-10 { width: 83.333333%; }
    .col-sm-11 { width: 91.666667%; }
    .col-sm-12 { width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { width: 8.333333%; }
    .col-md-2 { width: 16.666667%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333333%; }
    .col-md-5 { width: 41.666667%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.333333%; }
    .col-md-8 { width: 66.666667%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.333333%; }
    .col-md-11 { width: 91.666667%; }
    .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { width: 8.333333%; }
    .col-lg-2 { width: 16.666667%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333333%; }
    .col-lg-5 { width: 41.666667%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.333333%; }
    .col-lg-8 { width: 66.666667%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.333333%; }
    .col-lg-11 { width: 91.666667%; }
    .col-lg-12 { width: 100%; }
}

/* Text Styles */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0,0,0,0.5);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

/* Mobile Menu Styles */
.hidedesktop {
    display: none;
}

@media (max-width: 991px) {
    .hidedesktop {
        display: block;
    }
}

.mobilemenuweight {
    font-weight: 500;
    text-align: center;
}

.call-ico-cf {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.call-ico-cf:hover {
    transform: translateY(-5px);
}

.call-demo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
}

.call-demo-icon i {
    font-size: 24px;
    color: #2ecc71;
}

.call-demo-icon img {
    max-width: 100%;
    height: auto;
}

/* Career Section */
.career {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.career h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.career p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.career_button {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career_button:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
}

.team_sec1_img {
    text-align: center;
}

.fix_img {
    max-width: 100%;
    height: auto;
}

/* Section 4 Styles */
.sec-4-crp-token {
    padding: 60px 0;
    background-color: white;
}

.home-usp-flex-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.home-sticky-wrapper {
    position: relative;
}

.margin-box {
    margin-bottom: 30px;
}

.bottom-12 {
    margin-bottom: 12px;
}

/* Blogs Area */
.blogs_area {
    margin-top: 30px;
}

.card_wdt {
    margin-bottom: 30px;
}

.Latest_Blogs_block {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.Latest_Blogs_block:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blogs_title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.Latest_Blogs_block_p {
    color: #666;
    font-size: 0.95rem;
}

/* Exchange Listing Platform */
.exchange_listing_platform {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.content_fix {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
}

.facilitate_list {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.facilitate_list:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.facilitate_list img {
    margin-bottom: 15px;
}

.sub_title {
    font-weight: 600;
    color: #333;
}


/* Portfolio Section */
.prt_sec {
    padding: 30px 0;
    background-color: white;
}

.blog_title_heading {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.block_section1 {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.block_section1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.image_fixx {
    max-width: 50%;
    height: auto;
    margin-bottom: 15px;
}

.para_blockwara {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.para_ist_ {
    color: #666;
    font-size: 0.95rem;
}

/* Blockchain Section */
.a_blockchain {
    margin-top: 40px;
}

.section_grey_pp {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.section_grey_pp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.img_fix {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* .txt_fix {
    text-align: center;
    margin-bottom: 15px;
}

.gry_parra {
    color: #666;
    font-size: 0.95rem;
    padding-left: 20px;
}

.gry_parra li {
    margin-bottom: 8px;
    position: relative;
}

.gry_parra li:before {
    content: "•";
    color: #2ecc71;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
} */

/* Block Section */
.block_section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}



/* IDO Section */
.section_id_byu_cr {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.section_id_byu_cr:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.coinimg {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.para_idydwQ {
    font-weight: 600;
    color: #333;
}

/* Tech Container */
.tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.tech-box {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 150px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.tech-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Row Card */
.row_crd {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.sec_4_row_crd {
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: 150px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sec_4_row_crd:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sec_4_row_crd img {
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .career h2 {
        font-size: 2rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .blog_title_heading {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .career {
        padding: 40px 0;
    }
    
    .sec-4-crp-token {
        padding: 40px 0;
    }
    
    .exchange_listing_platform {
        padding: 40px 0;
    }
    
    .prt_sec {
        padding: 40px 0;
    }
    
    .team_sec1_img {
        margin-top: 30px;
    }
    
    .home-usp-flex-left {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .career h2 {
        font-size: 1.8rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .blog_title_heading {
        font-size: 1.8rem;
    }
    
    .facilitate_list {
        padding: 15px;
    }
    
    .block_section1 {
        padding: 20px;
    }
    
    .section_grey_pp {
        padding: 15px;
    }
    
    .tech-box, .sec_4_row_crd {
        width: 120px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .career h2 {
        font-size: 1.6rem;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .blog_title_heading {
        font-size: 1.6rem;
    }
    
    .call-demo-icon {
        width: 50px;
        height: 50px;
    }
    
    .call-demo-icon i {
        font-size: 20px;
    }
    
    .tech-box, .sec_4_row_crd {
        width: 100px;
        padding: 10px;
    }
    
    .sec_4_row_crd p {
        font-size: 0.9rem;
    }
}

/* Animation */
.t_slow {
    transition: all 0.5s ease;
}

/* Anchor Link */
.anchor_link {
    color: #2ecc71;
    text-decoration: none;
}

.anchor_link:hover {
    text-decoration: underline;
    color: #27ae60;
}

/* Spacing Fixes */
.splace_fix {
    margin-top: 0px;
}

.paddfix {
    padding: 0 25px;
    margin-top: 40px;
}

.textx {
    padding-top: 0px;
    padding-bottom: 60px;
}

/* Image Fixes */
.img_fixx {
    margin-bottom: 30px;
}

/* Text Fixes
.ttext_fix {
    text-align: center;
} */

/* Height Fix */
.hei_ghtmei {
    height: 100%;
}

/* Image Fix */
.imgg_fixx {
    text-align: center;
}

/* Box Fix */
.boxx_fix {
    margin: 0 -15px;
}

.box_fix {
    padding: 0 15px;
    margin-bottom: 20px;
}

/* Media Query for Modal */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}

@media (min-width: 992px) {
    .modal-dialog {
        max-width: 800px;
    }
}

/* Lottie Player */
lottie-player {
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px !important;
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb>li+li:before {
    color: #CCCCCC;
    content: "| ";
    padding: 0 5px;
}

.bc-icons .breadcrumb-item.active {
    color: #777;
}

/* Clearfix */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Responsive Columns */
@media (max-width: 767px) {
    .col-xs-6 {
        width: 50%;
    }
    
    .col-xs-12 {
        width: 100%;
    }
}

/* Button Padding Fix */
.padfix {
    padding: 12px 20px;
}