.languages .features-item img{
    width: 50px;
    max-height: 50px;
    margin-right: 10px;
}
.success-box {
    background-color: #e0f7ec;
    border-left: 6px solid #10b981;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #065f46;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.alert-box {
    position: relative;
    padding: 15px 40px 15px 15px;
    background-color: #dff0d8;
    border: 1px solid #d0e9c6;
    color: #3c763d;
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.read-more3 {
    color: #ffffff;
    font-family: var(--heading-font);
    background: #00233600;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.read-more3:hover {
    color: var(--background-color);
    font-family: var(--heading-font);
    background: #ffffff;
}
.read-more4 {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    background: var(--accent-color);
    font-weight: 500;
    font-size: 16px;
    border: 1px solid var(--accent-color);
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.read-more4:hover {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    background: var(--background-color);
    border: 1px solid var(--background-color);
}
.close-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translate(-5px, -50%);
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}
.error-text {
    color: #dc2626;
    font-size: 12px;
    margin-left: 10px;;
}
.hiddenDiv{
    display: none;
}


/*Banner Start*/
#heroBG {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}
#heroBG.fade-out {
    opacity: 0;
}

.banner-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    color: white;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.banner-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

.banner-overlay .container {
    position: relative;
    z-index: 1;
}

.banner-title {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
}

.banner-image {
    max-height: 400px;
    object-fit: contain;
}


/* Animations */
.anim-zoom-particles {
    animation: zoomIn 10s ease-in-out infinite;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.anim-pulse-dataflow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.anim-rocket-fade {
    animation: fadeInUp 3s ease-in-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.anim-parallax-code {
    background-attachment: fixed;
    animation: codeFlicker 1.5s infinite alternate;
}

@keyframes codeFlicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.anim-device-slide {
    animation: slideInDevices 2s ease-in;
}

@keyframes slideInDevices {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.anim-custom {
    animation: customAnim 3s ease-in-out infinite;
}

@keyframes customAnim {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.03); opacity: 1; }
}

/*Banner END*/
/*Slider Start*/
.auto-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.auto-carousel-track {
    display: flex;
    animation: auto-scroll 20s linear infinite;
    animation-play-state: running;
}

.auto-slide {
    flex: 0 0 16.6667%; /* 6 items */
    padding: 10px;
}


@keyframes auto-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .auto-slide {
        flex: 0 0 50%;
    }
    @keyframes auto-scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-550%);
        }
    }
}

/*Slider END*/

.faq-scroll{
    scroll-behavior: smooth;
    overflow-y: scroll;
    max-height: 575px;
}
.values-list{
    display: flex;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 15px 40px;
}
.values-list i{
    font-size: 30px;
    color: var(--accent-color);
    margin-right: 15px;
}
.values-list p{
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
    color: var(--heading-color);
    transition: 0.3s;
}

/*BUTTON*/
.send-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.send-btn .text {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.send-btn:hover {
    background-color: var(--accent-color);
    border-radius: 20px;

}

.send-btn:hover .text {
    max-width: 200px;
    opacity: 1;
    margin-left: 10px;
}
.send-btn .text {
    transform: translateX(10px);
}

.send-btn:hover .text {
    transform: translateX(0);
}

/*BUTTON*/
.listTitle{
    font-size: 18px;
    font-weight: bold;
}
.listTitle i{
    color: var(--accent-color);
}
.portfolioArea{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.portfolioArea .title{
    font-weight: bold !important;
    font-size: 18px !important;
    padding: 5px 10px;
    margin-top: 5px;
}
.portfolioArea .technologies{
    font-size: 14px;
    margin: 0 ;
}
.portfolioArea .country {
    margin-bottom: 2px;
    font-size: 14px;
    color: #002336 !important;
    font-weight: bold;
}
.portfolioArea .technologiesList{
    font-size: 14px ;
    margin-bottom: 0;
}
.boxDesign {
    width: 100%;
    background: none;
    padding: 5px 15px;
    margin: 0;
}

.blogArea{
    padding: 10px 20px;
}
.blogArea .title{
    font-weight: bold !important;
    font-size: 16px !important;
}
.blog-details .title{
    font-weight: bold !important;
    font-size: 32px !important;
}
.blogArea .technologies{
    font-size: 14px ;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blogArea .btnArea{
    text-align: right;
    font-size: 14px;
}


.blog-card-height{
    height: 150px;
    overflow: hidden;
}
/* width */
.scroll::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.scroll::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ffffff;
    border-radius: 10px;
}

/* Handle */
.scroll::-webkit-scrollbar-thumb {
    background: #808080FF;
    border-radius: 10px;
}



/*SOCIAL*/
:root {
    --primary-bg: #0f0f13;
    --secondary-bg: #181820;
    --neon-pink: #ff2d71;
    --neon-blue: #00b8ff;
    --neon-purple: #9d4edd;
    --neon-green: #39ff14;
    --neon-white: #ffffff;
    --text-color: #ffffff;
}

.share-container {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
}


.share-text {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.share-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.share-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--secondary-bg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(var(--secondary-bg), var(--secondary-bg)) padding-box,
    linear-gradient(45deg, var(--neon-color), rgba(255, 255, 255, 0.3)) border-box;
    z-index: 0;
}

.social-button i {
    font-size: 24px;
    color: var(--neon-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: var(--neon-color);
    opacity: 0;
    transform: scale(0);
    animation: ripple-animation 0.8s ease-out;
}

@keyframes ripple-animation {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--neon-color);
}

.social-button:hover i {
    transform: scale(1.2);
}

/* Specific colors for each social media */
.facebook {
    --neon-color: #1877f2;
}

.twitter {
    --neon-color: var(--neon-white);
}

.instagram {
    --neon-color: var(--neon-pink);
}

.linkedin {
    --neon-color: #1B9CFC;
}

.whatsapp {
    --neon-color: var(--neon-green);
}

.copyButton {
    --neon-color: #808080;
}

/* Tooltip */
.social-button-wrapper {
    position: relative;
}

.tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-style: solid;
    border-color: transparent transparent rgba(0, 0, 0, 0.8) transparent;
}

.social-button-wrapper:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    bottom: -35px;
}
.success-message {
    position: absolute;
    top:75%;
    /*left: 0;*/
    /*transform: translateX(-50%) translateY(-100px);*/
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
    z-index: 100;
    display: none;
}

.success-message.show {
    display: block;
}

/*SOCIAL*/
.themeImage{
    display: block;
    height: 200px;
    width: 320px;
    overflow: hidden;
}

 #partner-section {
     background: linear-gradient(135deg, #f8f9fc, #edf0f8);
 }

#partner-section .partner-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #1e2a38;
}

#partner-section .partner-subheading {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

#partner-section .partner-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
}
.partner-item {
    display: flex;
    flex-direction: row;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    background: white;
    height: 100%;
}

#partner-section .partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

#partner-section .icon-wrap {
    border: 1px solid var(--accent-color);
    color:  var(--accent-color);
    font-size: 2.5rem;
    padding: 40px;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

#partner-section h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

#partner-section p {
    margin-bottom: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Scoped styles for partner-benefits section only */
#partner-benefits {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#partner-benefits .pb-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

#partner-benefits .pb-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#partner-benefits .pb-icon {
    font-size: 30px;
    line-height: 1;
    color: #e8c248;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    border: 1px solid #002337;
    border-radius: 50%;
    background: #002337;
}

#partner-benefits .pb-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #212529;
}

#partner-benefits .pb-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #555;
}

#partner-benefits .pb-list {
    list-style-type: circle;
}
#partner-benefits .pb-list li {
    margin-bottom: 0.5rem;
    line-height: 1;
}

#partner-benefits .bordrLeft {
    border-left: 3px solid #002337;
}

#partner-benefits .card-box {
    border: 1px solid #002337;
    padding: 10px;
    border-radius: 12px;
    width: 100%;
    box-shadow: #8e979d 0px 4px 12px;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    #partner-benefits .pb-item {
        flex-direction: column;
    }

    #partner-benefits .pb-icon {
        margin-bottom: 8px;
        width: auto;
        font-size: 2.8rem;
    }
}
.roles-section {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
    border-radius: 0.5rem;
}

.roles-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.roles-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.roles-icon {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.final-note {
    background: #fdf2ce;
    border-left: 4px solid #e8c248;
    padding: 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
}
#partner-process .timeline {
    position: relative;
    margin: 2rem 0;
    padding-left: .5rem;
}

#partner-process .timeline::before {
    content: "";
    position: absolute;
    left: 50.3%;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #e8c236;
    transform: translateX(-50.3%);
}

#partner-process .timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
}

#partner-process .timeline-item.left {
    left: 0;
    text-align: right;
}

#partner-process .timeline-item.right {
    left: 50%;
    text-align: left;
}

#partner-process .timeline-marker {
    position: absolute;
    color: #fff;
    font-size: 28px;
    width: 75px;
    height: 75px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px #fff;
    background-color: #002337;
}

#partner-process .left .timeline-marker {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

#partner-process .right .timeline-marker {
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
}

#partner-process .timeline-content {
    background: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
}

/* ✅ Mobile/Tablet Responsiveness */
@media (max-width: 991px) {
    #partner-process .timeline::before {
        left: 26px;
        transform: none;
    }

    #partner-process .timeline-item,
    #partner-process .timeline-item.left,
    #partner-process .timeline-item.right {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 1rem;
        text-align: left;
        left: 0 !important;
    }

    #partner-process .timeline-marker {
        left: 20px !important;
        top: 0;
        transform: translateY(-50%);
    }

    #partner-process .timeline-content {
        padding: 1rem 1rem 1rem 1rem !important;
    }
}
/* Scoped styles for Earning Model */
#earning-model .em-box {
    background: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #198754;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

#earning-model .em-box h5 {
    font-weight: 600;
    color: #198754;
}

#earning-model .em-tier-card {
    transition: 0.3s ease;
}

#earning-model .em-tier-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

#earning-model .em-tier-list li:last-child {
    border-bottom: none;
}
#earning-model .list-unstyled li{
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    #earning-model .em-tier-card {
        text-align: center;
    }

    #earning-model .em-tier-list li {
        text-align: left;
    }
}
#partner-recognition {
    background-color: #f9fafc;
}

.ribbon-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.ribbon {
    position: relative;
    width: 18%;
    background-color: #e8c236;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ribbon:hover {
    transform: translateY(-10px);
}

.ribbon-content {
    padding: 1rem;
    color: white;
}

.ribbon-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ribbon-content p {
    font-weight: bold;
    margin: 0;
}

/* Scoped styles for Ideal Partner Profile */
#ideal-partner .ipp-item {
    transition: all 0.25s ease;
}

#ideal-partner .ipp-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

#ideal-partner i {
    min-width: 40px;
}
/* Scoped styles for Let's Grow Together */
#lets-grow a.btn {
    transition: transform 0.2s ease;
    border-radius: 8px;
    font-size: 1rem;
}

#lets-grow a.grow-btn {
    background-color: var(--accent-color);
    color: var(--heading-color);
    border: none;
}

#lets-grow a.grow-btn-outline {
    border: 2px solid var(--heading-color);
    color: var(--heading-color);
    background-color: transparent;
}

#lets-grow a.btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

@media (max-width: 767px) {
    #lets-grow a.btn {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }
}

     /* Modal Dialog Full Height */
 .modal-dialog.login-modal {
     margin: 0 auto;
     display: flex;
     align-items: center;
 }

/* Ensure modal-content fills the modal-dialog */
.modal-content.login-modal {
    height: 75%;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
/* Body inside modal (login/register layout) */
.model-main-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modal-body {
    flex: 1;
    display: flex;
    flex-direction: row;
    padding: 0;
    height: 100%;
}
/* Left panel should fill height */
.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #04021cc4, #fbe806);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Top logo */
.left-panel .logo {
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

/* Welcome text in middle */
.left-panel .welcome-message {
    text-align: center;
    margin: auto 0;
    z-index: 2;
}
.left-panel .welcome-message h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.left-panel .welcome-message p {
    font-size: 1rem;
    color: #fff9db;
    padding: 0 10%;
}

/* Bottom text */
.left-panel .description-text {
    font-size: 0.9rem;
    color: #fff3c1;
    z-index: 2;
    text-align: center;
}

/* Stylish background shapes */
.left-panel .shape-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.left-panel .circle1 {
    width: 220px;
    height: 220px;
    top: -40px;
    right: -40px;
}
.left-panel .circle2 {
    width: 150px;
    height: 150px;
    bottom: 60px;
    left: -30px;
}
.left-panel .ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    bottom: 25%;
    left: 65%;
    transform: translateX(-50%);
    z-index: 0;
}
.left-panel .ring2 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
}


/* Right form panel */
.scrollable-form {
    max-height: 80vh;
    overflow-y: auto;
    padding-bottom: 2rem;
}
@media (max-height: 700px) {
    .scrollable-form {
        max-height: 70vh;
        overflow-y: auto;
    }
}

.form-panel {
    flex: 1;
    background: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-container {
    width: 100%;
    max-width: 350px;
}

.toggle-form {
    cursor: pointer;
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.toggle-form:hover {
    text-decoration: underline;
}
.btn-close {
    z-index: 9999;
}
@media (max-width: 991.98px) {
    .modal-body {
        flex-direction: column;
    }
    .left-panel,
    .form-panel {
        width: 100%;
        height: auto;
        padding: 2rem;
    }
    .left-panel .circle1 {
        top: -40px;
        right: -40px;
    }
    .left-panel .circle2 {
        bottom: 0;
        left: -30px;
    }
    .left-panel .ring{
        bottom: -15%;
        left: 54%;
    }
    .left-panel .ring2{
        top: 19%;
        left: 20%;
    }
}
