body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === NAVBAR === */
.navbar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color:white;
    color:black;
    
}

.navbar-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
}

.navbar-brand-custom img {
}


.navbar-nav-wrapper {
   background-color:white;
    color:black;
    border-radius: 50px;
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
}

.navbar-nav-custom a,
.navbar-nav-custom button {
    
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    color: #1f1f1f;
}

.navbar-nav-custom a:hover,
.navbar-nav-custom button:hover {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: #7ac5a2;
}

.dropdown-icon {
    margin-left: 0.25rem;
}

.btn-contact {
    background-color: #88cbac;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-contact:hover {
     background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
}
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 1000;
}

.dropdown-menu a {

    text-decoration: none;
    color: black;
    white-space: nowrap;
}

.dropdown-menu a:hover {

    text-decoration: none;
    color: #7ac5a2;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 525px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    animation: hero-zoom 8s ease-in-out infinite alternate;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

@keyframes hero-zoom {
    0% {
        background-size: 100%;
        background-position: center;
    }

    100% {
        background-size: 105%;
        background-position: center top;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        /* animation: none; */
        /* Disable animation on smaller screens */
        background-size: cover !important;
        min-height: unset !u;
        height: 100%;
        /* object-fit: cover !important; */
        min-height: unset !important;
    }
    body .hero {
    height: 160px;
    }
}
.check-circle {
    background-color: #7ac5a2;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 36%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.brighter-text {
    color: transparent;
    -webkit-text-stroke: 2px #2A9CFC;
    text-stroke: 2px #2A9CFC;
    background-image: linear-gradient(to bottom, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-subtitle,
.hero-description {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero-subtitle.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-description.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.hero-subtitle.out,
.hero-description.out {
    opacity: 0;
    transform: translateY(-20px);
    transition-delay: 0s;
}



.btn-explore {
    background-color: #88cbac;
    color: white;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-explore:hover {
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
    color: white;
}

.play-btn {
    position: absolute;
    right: 10%;
    bottom: 20%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn i {
    font-size: 2rem;
    color: white;
}

/* Mobile navbar styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #2A9CFC;
    cursor: pointer;
}

.mobile-menu-icon {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    width: 24px;
    height: 24px;
}

.mobile-menu-icon span {
    display: block;
    width: 6px;
    height: 6px;
    background-color: #166c9c;
    border-radius: 1px;
}

/* Mobile navbar header - dark background */
.mobile-navbar-collapsed {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: white;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.mobile-navbar-collapsed.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Full mobile nav menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(231, 231, 231, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 2rem;
    text-align: left;
    align-items: start;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #2A9CFC;
    font-size: 1.75rem;
    cursor: pointer;
}

/* .mobile-nav-items {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav-items a,
.mobile-nav-items button {
    color: black;
    font-size: 1.25rem;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0.2rem 0;
} */

.mobile-nav-items a:hover,
.mobile-nav-items button:hover {
    color: #2A9CFC;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }
}
@media (max-width:1024px) {
    .navbar-wrapper {
        display: none;
    }

    .mobile-navbar-collapsed {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
    .navbar-brand-custom img {
        width: 200px;
        height: 60px;
    }
    
    .mobile-menu-icon{
        height: 50px;
        width: 50px;
        font-weight: 700;
    }
}

@media (max-width: 992px) {
    .mobile-menu-icon {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 3px;
        width: 24px;
        height: 24px;
    }
    @keyframes floatBanner {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-section {
    background-size: cover !important;
    height: 100%;
    animation: floatBanner 5s ease-in-out infinite;
}
    .mobile-menu-icon span {
        display: block;
        width: 6px;
        height: 6px;
        background-color: #166c9c;
        border-radius: 1px;
    }
    .navbar-wrapper {
        display: none;
    }

    .mobile-navbar-collapsed {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .play-btn {
        right: 5%;
        bottom: 15%;
    }
    .navbar-brand-custom img {
        width: auto;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }

    .hero-description {
        font-size: 1rem !important;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }
    .navbar-brand-custom img {
        width: auto;
        height: 50px;
    }
}

@media (max-width: 765px) {
    .tech-content h2 {
        margin-top: 15px;
    }   
}



@media (max-width: 576px) {
    .navbar-brand-custom img {
        width: auto;
        height: 50px;
    }

    .navbar-brand-custom span {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .btn-explore {
        padding: 0.6rem 1.5rem;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        right: 5%;
        bottom: 10%;
    }

    .play-btn i {
        font-size: 1.5rem;
    }
    .col-md-4.d-flex.align-items-center.justify-content-center {
    height: unset !important;
}
section.container.py-5.mb-5 {
    padding-bottom: 10px !important;
}
.col-md-8.mt-4.mt-md-0.rtl.visible {
    margin-top: 70px !important;
}

h2.title {
    font-size: 24px;
    margin: 10px !important;
}

h2.mb-5.display-4.btt.visible {
    font-size: 28px;
}

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

}

.rounded-xl {
    border-radius: 16px;
}

.bg-green-custom {
    background-color: #7ac5a2;
    /* Custom green */
    color: white;
}

.border:hover{
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
}

.border:hover h4,
.border:hover p,
.border:hover {
    color: #ffffff !important;
     transition: all 0.3s ease;
}
.btn-green {
    background-color: #88cbac;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    text-decoration: none;
}

.btn-green:hover {
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
}

.btn-blue {
    background-color: #166c9c ;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    text-decoration: none;
}

.btn-blue:hover {
    background-color: #7ac5a2;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.rounded-img {
    border-radius: 20px;
    object-fit: cover;
}

.grid-img {
    height: 100%;
}

.green-box {
    background-color: #166c9c;
    color: white;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.arrow-button {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 20px;
}

.position-relative {
    position: relative;
}

.img-container {
    padding-left: 20px;
}


.card-custom {
    /*border: none;*/
    /*border-radius: 15px;*/
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
    /*overflow: hidden;*/
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
    border-radius: 10px;
    transition: 0.5s;
}

.card-custom:hover {
    /*transform: translateY(-10px);*/
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

.card-img-top {
    height: 350px;

    object-fit: cover;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}
/* .card-img-top img {
    height: 350px;
    transition: 0.5s;
} */
 .card-img-top img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card-custom:hover .card-img-top img {
    transform: scale(1.2);
}

.learn-btn {
    background-color: #88cbac ;
    color: white;
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 0.9rem;
    border: none;
    transition: background-color 0.3s;
}

.learn-btn:hover {
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
}

h2.title {
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.subtext {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.card-title {
    font-weight: 700;
    text-align: left;
    color: #166c9c;
    font-size: 25px;
}

.feature-box {
    background-color: #ffffff;
    color: #006e9c ;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.feature-box i{
    color: #88cbac;
}

.feature-box-title{
    color: #166c9c;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
    color: white;
}

.feature-box:hover .feature-box-icon {
    color: white;
}

.feature-box:hover .feature-box-title {
    color: white;
}
.feature-box p {
    transition: all 0.3s ease;
    color: #63676A;
}
.feature-box:hover p {
    color: white !important;
}
a{
    text-decoration:none;
}

.service-img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-right: auto;
}

.stat-badge {
    position: absolute;
    bottom: -10px;
    right: -30px;
    background-color: #166c9c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    border: 5px solid white;
}

.custom-btn {
    background-color:#7ac5a2 ;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
     /*transition: background 0.3s ease; */
}

.custom-btn:hover {
   background: linear-gradient(140deg, #166c9c 0%, #7ac5a2 100% );
}

.feature-section {
    background-color: #ffffff;
    color: #212529;
    padding: 80px 20px;
}


.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    border: 2px solid rgba(255, 255, 255, 0.49);
    color: #63676A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
    color: white;
}

.feature-card:hover .feature-number{
    color: transparent;
    -webkit-text-stroke: 1px white;
}

.feature-card:hover .headingf{
    color: white;
}

.feature-number {
    font-weight: 600;
    border-radius: 8px;
    margin-right: 20px;
    color: transparent;
    -webkit-text-stroke: 1px #7ac5a2;
}

.arrow-btn {
    background-color: #166c9c;
    border: none;
    border-radius: 50%;
    padding: 8px;
    color: white;
    transition: background-color 0.3s ease;
}

.arrow-btn:hover {
    background-color: white;
    color: black;
}

.headingf {
    margin-left: 10px;
    line-height: 2rem;
    color: #166c9c;
}

.paraf {
    margin-right: 20px;
}


/* ✅ Cards will be sticky & stacked */
.scroll-card {
    position: sticky;
    top: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* ✅ Show on scroll */
.scroll-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* ✅ z-index for stacking */
.scroll-card:nth-child(1) {
    z-index: 1;
    transition-delay: 0.1s;
}

.scroll-card:nth-child(2) {
    z-index: 2;
    transition-delay: 0.3s;
}

.scroll-card:nth-child(3) {
    z-index: 3;
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    .headingf {
        margin-left: 0 !important;
    }

    .paraf {
        margin-right: 0 !important;
        margin-left: 10px;

    }

    .stat-badge {
        display: none;
    }

    .fc {
        display: none;
    }
    .bss {
        margin-top: 20vh;
        align-items: center;
        text-align: center;
    }

}

.main-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
    background-attachment: fixed;
    /* min-height: 600px; */
    position: relative;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    position: relative;
    /* height: 700px; */
    text-align: center !important;
    padding-top: 50px;
    padding-bottom: 50px;
}

.top-nav {
    width: 100%;
    padding: 15px 30px;
}

.top-nav-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-top: 25vh;
}

.main-title {
    color: white;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    display: block;
    /* text-align: center; */
    padding: 0px 250px;
    padding-bottom: 50px;
    padding-top: 30px;
}

.cards-container {
    /* position: absolute; */
    /* bottom: -40px; */
    left: 40%;
    /* transform: translateX(-50%); */
    /* width: 85%; */
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    text-align: center;
    display: block;

}

.solution-card {
    background-color: white ;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #63676A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 48px;
    color: #88cbac;
    margin-bottom: 15px;
}

.card-title {
    color: #166c9c;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.texts-blue{
    color: #166c9c;
}
.txt-font{
    color: #63676A;
}
.card-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #63676A;
}
.solution-card:hover  {
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
    color: white;
}

.solution-card:hover .card-icon{
    color: white;
}

.solution-card:hover .card-title{
    color: white;
}

.solution-card:hover .card-text {
    color: white !important;
}

.learn-more-btn {
    background-color: #2196F3;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: white;
    color: black;
}

.bss {
    margin-top: 20vh;
    align-items: center;
    text-align: center;
}

/* MAIN CARD */
.leadership-card {
    position: relative;
    aspect-ratio: 3 / 4; /* keep image height proportional */
    width: 100%;
    border-radius: 50px 50px 10px 10px;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay-content {
     position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    border: 1px solid white;
    border-radius: 50px 50px 10px 10px;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.leadership-card:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}   
/* SCALE on hover */
.leadership-card:hover {
    transform: scale(1.05);
}

/* Text styling */
.caption h5 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}

.caption h3 {
    font-size: 24px;
    color: #fff;
}

.caption p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    color: #fff;
}
.caption i {
    font-size: 20px;
    line-height: 1.6;
    color: white;
}
.caption i:hover {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    transition: all 0.5s ease;  
}

@media (min-width: 320px) {
    .leadership-box{
        display: flex;
        justify-content: center;
    }
    .leadership-card{
        margin-bottom: 50px;
        display: flex;
}
      /* .why-invest h1{
        font-size:  20px ;
    }
    .why-invest h3{
        font-size: 15px ;
    } */

}
 /* .leadership-card {

    width: 100%;
    position: relative;
    max-height: 30rem;
    margin-bottom: 1.2rem;
    overflow: hidden;
  }
  .leadership-card img{
    border-radius: 10%;
    width: 100%;
    height: 100%;
  }
.leadership-card .overlay-content {
    border-radius: 10%;
    position: absolute;
    top: 0;
    left: 0;
     background-color: rgba(0, 0, 0, 0.7); 
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
.leadership-card .overlay-content .caption {
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
}  

.leadership-card:hover img {

    transform: scale(1.5);
    transition-duration: 1000ms;
    transition-property: all;
}
.leadership-card:hover .overlay-content {
    opacity: 1;
    visibility: visible;
    transition-duration: 1000ms;
    transition-property: all;
} */


@media (max-width: 1200px) {
    .main-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
        background-attachment: fixed;
        min-height: 50vh !important;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
     .main-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
        background-attachment: fixed;
        min-height: 50vh !important;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        margin-bottom: 10%;
    }

    .cards-container {
        flex-wrap: wrap;
        top: 30vh;
        align-items: center;
        /* left: 50%; */
        /* position: absolute; */
    }
    .investor-container {
        flex-wrap: wrap;
        top: 30vh;
        align-items: center;
        left: 50%;
        position: absolute;
    }

    .top-nav-text {
        color: white;
        font-weight: 500;
        margin-top: 5vh;
    }

    .bss {
        margin-top: 15%;
        align-items: center;
        text-align: center;
    }

}

@media screen and (max-width: 1000px) {
  .mobile-dropdown-menu {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    width: 90vw;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
  }

  .mobile-blockchain-submenu {
    display: none;
    position: relative;
    background: #f9f9f9;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
  }

  .mobile-adjust-size {
    display: block;
    padding: 12px 10px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
  }

  .mobile-blockchain-toggle::after {
    content: "▾";
    float: right;
  }

  .mobile-dropdown > a {
    display: block;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    border-radius: 8px;
    text-align: center;
  }

  .mobile-blockchain-wrapper {
    margin-top: 10px;
  }
}

/* 1001px se upar mobile wala menu hide kar do */
@media screen and (min-width: 1001px) {
  .mobile-dropdown {
    display: none !important;
  }
}


@media (max-width: 768px) {
    .main-banner {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/abt3.jpeg') center/cover;
        background-attachment: fixed;
        min-height: 50vh !important;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        position: relative !important;
    }

    .main-title {
        margin-bottom: 10%;
        padding: 0 10px;
    }

    .cards-container {
        flex-wrap: wrap;
        /* top: 30vh; */
        align-items: center;
        /* left: 50%; */
        /* position: absolute; */
        margin: 0 10px;
    }
    .investor-container {
        flex-wrap: wrap;
        top: 30vh;
        align-items: center;
        left: 50%;
        position: absolute;
    }

    .top-nav-text {
        color: white;
        font-weight: 500;
        margin-top: 5vh;
    }

    .bss {
        margin-top: 10%;
        align-items: center;
        text-align: center;
    }
    .overlay-content {
        padding: 15px;
        border-radius: 30px;
    }

    .overlay-content h3 {
        font-size: 1.25rem;
    }

    .overlay-content p {
        font-size: 0.95rem;
    }

    .caption h3 {
        font-size: 1.2rem;
    }

    .caption p {
        font-size: 0.9rem;
    }
    .leadership-box {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
  }

  .leadership-card {
        width: 90%;           
        max-width: 300px;     
        margin: 0 auto;       
  }

  .leader-img {
        height: auto;         
  }


}

.leadership-box,
.col-lg-3, .col-md-6, .col-sm-12 {
    padding: 10px;
}

.sticky-container {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cards-wrapper {
    width: 320px;
    height: 280px;
    position: relative;
}

.card_2 {
    position: absolute;
    width: 100%;
    background-color: #4CAF50;
    border-radius: 12px;
    padding: 16px;
    box-sizing: border-box;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    top: 0;
}

.card_2 .icon-container {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.card_2 h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
}

.card_2 p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.cta {
    background-color: #2196F3;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-top: 16px;
}

/* Testimonials Section Container */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    min-height: 200px;
}

.testimonial-card .stars {
    color: #FFA534;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: #23403A;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.testimonial-card .author {
    font-weight: bold;
    color: #0F2B22;
}

.testimonial-card .role {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-card::after {
    content: "❝❞";
    font-size: 3rem;
    color: #eee;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-nav button {
    display: none !important;
}

.owl-dot {
    display: none !important;
}

.owl-prev {
    display: none !important;
}

.owl-next {
    display: none !important;
}

.mbldp,
.mbldp-sub {
  display: none;
  flex-direction: column;
  background-color: white;
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 0.25rem;
}

.mbldp a,
.mbldp-sub a {
  padding: 0.5rem 1rem;
  color: black;
  text-decoration: none;
}

.dropdown-submenu {
  margin-top: 0.5rem;
}


.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: auto;
}
 
.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #FFC42E;
}

.contact-info {
    display: flex;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
    color: #7ac5a2;
}

.contact-text h4 {
    font-weight: 700;
    margin-bottom: 4px;
}


.middle-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*padding: 40px 0;*/
    border-bottom: 1px solid rgba(255, 255, 255, 0.295);
    /*border-top: 1px solid rgba(255, 255, 255, 0.295);*/
}



.tagline h2 {

    font-weight: 700;
    line-height: 1.2;
}

.arrow-button {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #7ac5a2;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    color:#7ac5a2 ;
    text-decoration: none
}

.social-icon:hover {
    background-color: white;
    color: #1a1a1a;
}
.sci:hover{
    color: white;
}
.sci{
    color: #7ac5a2;
}
.copyright-section {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    color: #aaa;
}

.copyright {
    display: flex;
    align-items: center;
}

.policy-links {
    display: flex;
    gap: 20px;
}

.policy-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.policy-links a:hover {
    color: #2196F3;
}

/* Keyframes */
@keyframes topToBottom {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes bottomToTop {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes leftToRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  @keyframes rightToLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }
  
  /* Direction + Trigger on .visible */
  .rtl {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .rtl.visible {
    animation: rightToLeft 1s ease-out forwards;
    opacity: 1;
  }
  
  .ltr {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .ltr.visible {
    animation: leftToRight 1s ease-out forwards;
    opacity: 1;
  }
  
  .ttb {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .ttb.visible {
    animation: topToBottom 1s ease-out forwards;
    opacity: 1;
  }
  
  .btt {
    opacity: 0;
    transition: all 0.5s ease;
  }
  .btt.visible {
    animation: bottomToTop 1s ease-out forwards;
    opacity: 1;
  }
  
  
  
  .card-stack {
    background-color: #00b050;
    color: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: -40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card-stack:hover {
    transform: translateY(-5px);
    z-index: 3;
  }

  .icon-box {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }

  .icon-box i {
    font-size: 1.5rem;
    color: #00b050;
  }

  .learn-btn_2 {
    background-color: #88cbac;
    border: none;
    padding: 8px 18px;
    border-radius: 30px;
    color: white;
    margin-top: 10px;
    font-size: 0.9rem;
  }

 .learn-btn_2:hover {
    background-color: white;
    color: #63676A !important;
}

  .etra_space {
    height: 350px; /* Default for large screens */
}
  .investor-space {
    height: 10px;
}

/* Medium screens: max-width 1200px */
@media (max-width: 1200px) {
    .etra_space {
        height: 390px;
    }
}


@media (max-width: 767.98px) {
  
    
    .tagline {
        width: 100%;
    }
    
    .footer-arrow{
        display:none;
    }

}

@media (max-width: 1440px) {
  .etra_space {
    height: 10rem;
  }
   .investor_space{
        height: 230px;
    }
    ul.accordian-list {
        padding-left: 87px;
    }
}
@media (min-width: 1440px) {
  .etra_space {
    height: 215px;
  }
   .investor_space{
        height: 215px;
    }
     ul.accordian-list {
        padding-left: 87px;
    }
    .investor-title{
        margin-top: 70px;
    }
    
}
@media (max-width: 1024px ){
    .etra_space {
        height: 25rem;
    }
     .investor_space{
        height: 300px;
    }
      .cards-container {
        flex-wrap: wrap;
        /* top: 38vh; */
        align-items: center;
        /* left: 50%; */
        /* position: absolute; */
    }

    .investor-title{
        margin-top: -30px;
    }

    
}


.arrow-btn {
 background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.623);
}
.arrow-btn i{
    font-size: 25px ;
    
}
button.arrow-btn.p-3.footer-arrow {
    padding: 5px 10px !important;
}


/* @media (max-width: 768px) and (min-width: 424px) {
  .etra_space {
    height: 35rem !important;
  }
} */
@media (max-width: 768px ){
    .etra_space {
        height: 80rem;
    }
    .blockchain-image img {
        order: 1;
    }
    .content {
        order: 2;
    }
     .investor_space{
        height: 400px;
    }
    ul.accordian-list {
        padding-left: 70px;
    }
    .top-gape{
        padding-top: 35px;
    }
    .home-image {
        width: 100%;
        height: 300px !important;
        overflow: hidden;
}   
   

} 
@media (max-width: 618px ){
     .investor_space{
        height: 700px;
    }

} 
            
@media (max-width: 425px ){
     .etra_space {
        height: 85rem;
    }
     .investor_space{
        height: 947px;
    }
    .cards-container {
        flex-wrap: wrap;
        /* top: 37vh; */
        align-items: center;
        /* left: 50%; */
        /* position: absolute; */
        margin: 0 10px;
        margin: 0;
    }
    .accordion-button{
        font-size: 20px !important;
    }
    ul.accordian-list {
        padding-left: 5px;
    }
    .bloch-detail h2{
        font-size: 23px;
    }
    .bloch-detail span{
        font-size: 18px !important;
    }
    .investor-title{
        margin-top: 28px;
    }
    .home-image {
        height: 250px !important;
    }
    .why-invest-content h2{
        font-size: 25px !important;
    }   


}
@media (max-width: 412px ){
    .investor_space{
        height: 1066px;
    }
}
@media (max-width: 390px ){
    .investor_space{
        height: 1043px;
    }
}

@media (max-width: 375px ){
     .etra_space {
        height: 1300px;
    }
     .investor_space{
        height: 1016px;
    }
}
@media (max-width: 360px ){
    .investor_space{
        height: 1105px;
    }
}
@media (max-width: 325px ){
     .etra_space {
        height: 90rem;
    }
    .investor_space{
        height: 1190px;
    }
    .cards-container {
        flex-wrap: wrap;
        top: 34vh;
        align-items: center;
        left: 50%;
        /* position: absolute; */
    }
    .accordion-button{
        font-size: 18px !important;
    }
}


.hero {
    background: url("./img/new-image/breadcrumb-banner-1.jpg") center center/cover no-repeat;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    transition: background-size 0.6s ease-in-out,
        filter 0.6s ease-in-out;
    overflow: hidden;
    /* background-position: top center !important; */
    margin-top: 60px;
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100%);
}

.hero:hover {
    filter: brightness(1.1);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgb(0 0 0 / 32%); */ /* overlay */
    z-index: 1;
    transition: background 0.4s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.3s;
    margin-top: 34px;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb {
    background: transparent;
    padding: 0;
    justify-content: center;
}
body {
    font-family: Arial, sans-serif;
}

.contact-card {
    background-color: #7ac5a2;
    color: white;
    padding: 2.5rem;
    border-radius: 10px;
    height: 100%;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.contact-subheading {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.info-card:hover{
    background: linear-gradient(140deg, #166c9c 0%, #7ac5a2 100% );
    color: white;
}

.info-card:hover .circle-icon{
    border: 2px solid white;
    color: white;
}

.info-card:hover .info-title{
    color: white;
}

.info-card {
    background-color: white ;
    border-radius: 10px;
    color: #63676A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
}

.circle-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 2px solid #7ac5a2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #7ac5a2;
    font-size: 1.5rem;
    padding: 20px !important;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}


.info-content {
    flex-grow: 1;
}

.info-title {
    font-size: 1.3rem;
    color: #166c9c;
    margin-bottom: 0;
    font-weight:600;
}

.info-subtitle {
    font-size: 0.9rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
}

.btn-submit {
    background-color: #7ac5a2;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-submit:hover {
    background-color: #166c9c;
    color: white;
}

.form-title {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-card, .info-card {
        margin-bottom: 1rem;
    }
}

.benfit_icons{
    color: #7ac5a2;
}

.key_features_icons{
    color: #7ac5a2;
}

.sec-3-card{
    color: #a0a0a0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: white ;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.sec-3-card-heading{
    color: #166c9c;
}

.icons{
    color:#7ac5a2;
}

.sec-3-card:hover,
.sec-3-card.active {
  background: linear-gradient(140deg, #166c9c 0%, #88cbac 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.sec-3-card:hover .sec-3-card-heading,
.sec-3-card.active .sec-3-card-heading {
  color: white;
}

.sec-3-card:hover .text-2 b,
.sec-3-card.active .text-2 b {
  color: white;
}

.sec-3-card:hover .icons,
.sec-3-card.active .icons {
  color: white;
}
.text-2 b {
    color: #818181;
    font-weight: bold;
}


.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, );
    
}

        .team-card {
            background-color: #fff;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 30px;
            padding: 0;
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-5px);
            
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .team-img-container {
            width: 100%;
            height: 350px;
            overflow: hidden;
        }
        
        .team-img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            border-radius: 20px;
        }
        
        .team-info {
            padding: 20px 15px;
            text-align: center;
        }
        
        .team-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .team-position {
            font-size: 14px;
            color: #777;
            margin-bottom: 15px;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #7ac5a2 ;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white ;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background-color: #166c9c;
            color: white ;
        }

/* INVESTOR SECTION */

@media (min-width: 1440px){
     .why-invest h1{
        font-size:  48px;
    }
    .why-invest h3{
        font-size: 20px ;
    }

}
@media (min-width: 768px){
     .why-invest h1{
        font-size:  38px;
    }
    .why-invest h3{
        font-size: 13px;
    }
     
}
@media (max-width: 576px) {
   .why-invest h1{
        font-size:  30px;
    }
    .why-invest h3{
        font-size: 20px ;
    }
    /* .etra_space{
        display: none;
    }
} */
}



.why-invest h1{
    /* font-size: 48px; */
    margin-bottom: 15px;
    color: #166c9c;
}
.why-invest h3{
    font-size: 18px ;
    color: #166c9c;
}
.why-invest-content p{
    color: #63676A;
}
.why-invest-content h2{
    color: #166c9c  ;
    font-size: 30px;
}

/* Investor Banner */
.investor-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/new-image/iStock-investors-2-min.jpg') center/cover;
    background-attachment: fixed;
    min-height: 500px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Add padding bottom to accommodate the absolutely positioned container */
    padding-bottom: 300px;
}

.investor-title {
    color: white;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    max-width: 900px;
}

.investor-container {
    position: absolute;
    bottom: -240px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    /* Add z-index to ensure it stays above other content */
    z-index: 10;
}

/* Add margin-top to investor-last to prevent overlap */
.investor-last {
    /* margin-top: 300px; */
    margin-top: 50px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .investor-banner {
        padding-bottom: 450px;
    }
    
    .investor-last {
        margin-top: 350px;
    }
}

@media (max-width: 576px) {
    .investor-banner {
        padding-bottom: 600px;
    }
    
    .investor-last {
        margin-top: 950px;  
    }
}

@media (max-width: 425px) {
    .investor-banner {
        padding-bottom: 930px;
    }
    
    .investor-last {
        margin-top: 350px;
    }
}
@media (max-width: 414px) {
    .investor-banner {
        padding-bottom: 1056px;
    }
    .investor-last {
        margin-top: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 375px) {
    .investor-banner {
        padding-bottom: 1010px;
    }
    
    .investor-last {
        /* margin-top: 350px; */
    }
}
@media (max-width: 320px) {
    .investor-banner {
        padding-bottom: 1190px;
    }
    
    .investor-last {
        margin-top: 350px;
    }
}
.investor-last h3 {
    color: #166c9c;
    font-size: 30px;
    font-weight: bold;
}

.investor-last p {
    color: #63676A;
}

/* TECHLOGOGY SECTION */

.tech-content h2{
    font-size: 30px;
    color: #006e9c;
}

.tech-content p{
    color: #63676A;
    font-size: 19px;
}
.adjust-size{
    font-size: 14px !important;
}
.blockchain-image {
    width: 100%;
    height: 320px;
     overflow: hidden;
}
.blockchain-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DROPDOWN MENU */

#main-dropdown {
    position: relative;
    display: inline-block;
    z-index: 100;
}

#main-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: white;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
}

/* Blockchain submenu wrapper */
.blockchain-wrapper {
    position: relative;
}


#main-dropdown:hover #main-dropdown-menu {
    display: block;
}

.blockchain-wrapper:hover .blockchain-submenu {
    display: block;
}
/* NESTED submenu */
.blockchain-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    min-width: 250px;
    z-index: 1100;
}


/* Mobile menu scrollable */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: none; 
  transition: all 0.3s ease-in-out;
}

.accordion-toggle,
.sub-accordion-toggle {
    font-weight: bold;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 6px;
    display: block;
    margin-top: 10px;
}


.accordion-content,
.sub-accordion-content {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}

.mobile-nav-items a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #222;
    font-size: 17px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    float: right;
}

.mobile-dropdown-menu, .mobile-blockchain-submenu {
    display: none;
}


/* ACCORDIAN SECTION */

.accordian button {
    font-size: 30px;
    font-weight: 600;
    color: #006e9c;
}

.accordion-item:hover {

  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Button ki default hover/focus styling hatao */
.accordion-button {
  background-color: transparent;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  background: linear-gradient(140deg, #166c9c 0%, #88cbac 100%);
  box-shadow: none;
  color: white;
  outline: none; /* optional, agar focus outline na chahiye */
}

/* Remove hover effect */
.accordion-item:hover {
  transform: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: #63676A;
}


.accordion-item {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.49);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #63676A;
}


.accordion-button {
  background: transparent !important;
  color: #006e9c ;
  box-shadow: none !important;
  border: none;
  transition: none;
}

/* Accordion-item open ya focus par hi sab kuch ho */
.accordion-item:has(.accordion-button:focus),
.accordion-item:has(.accordion-button:not(.collapsed)) {
  background: linear-gradient(140deg, #166c9c 0%, #88cbac 100%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
  transform: translateY(-5px);
}

/* Inner content color change */
.accordion-item:has(.accordion-button:focus) .feature-number,
.accordion-item:has(.accordion-button:not(.collapsed)) .feature-number {
  color: transparent;
  -webkit-text-stroke: 1px white;
}

.accordion-item:has(.accordion-button:focus) .headingf,
.accordion-item:has(.accordion-button:not(.collapsed)) .headingf {
  color: white;
}

.accordion-item:has(.accordion-button:focus) .accordian-list li,
.accordion-item:has(.accordion-button:not(.collapsed)) .accordian-list li {
  color: white;
}

/* SECTION TICKER */

.triker-wrap{
    margin-top: 20px;
    overflow: hidden;
    background: linear-gradient(140deg, #166c9c 0%, #88cbac 100% );
    color: white;
    white-space: nowrap;
    position: relative;
    padding: 20px;
}

.ticker {
  display: flex;
}
.ticker__move {
  display: flex;
  animation: tickerMove 50s linear infinite;
}
.ticker__move span {
  display: inline-block;
  padding: 0 2rem;
  font-weight: bold;
  color: white;
  font-size: 1rem;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0%);
   }
  100% {
    transform: translateX(-50%);
  }
}  

.new-custom-image{
    height: 100%;
}
.home-image {
    width: 100%;
    /* aspect-ratio: 16 / 9;  */
    overflow: hidden;
    border-radius: 20px;
}

.home-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}













/* .custom-image img:hover{
    transform: scale(1.2);
} */

/* Blogs details */
/* .custom-img {
  display: block;
  margin-bottom: 20px; /* Adjust as needed */
/* }
.custom-img-container {
  position: relative;
}

.blog-date {
  color: #63676a;
  padding: 5px 10px;
  border-radius: 10px;
  z-index: 10;
}
.blog-date-text, span {
    margin-right: 20px;
    color: #63676a;
    font-weight:600;
    font-size: 15px;
} */
.bg-white.text-dark.p-4.rounded.h-100.shadow:hover {
    background: linear-gradient(140deg, rgb(22, 108, 156) 0%, rgb(136, 203, 172) 100%);
    color: #fff !important;
    /* transition: 0.5s; */
}

.shadow .fw-bold {
    color: #166c9c;
}
.bg-white.text-dark.p-4.rounded.h-100.shadow:hover h5 {

    color: #fff !important;
    /* transition: 0.5s; */
}
section.feature-section {
    padding-bottom: 10px;
}

.container-fluid.text-white.py-4 {
    padding-bottom: 0 !important;
}

section.leadership.mt-3 {
    padding-top: 50px;
}
.cards-container.py-3 {
    overflow: hidden;
}
section.container.py-5 {
    overflow: hidden;
}