@media (max-width: 768px) {
    .hero {
        width: 100%;
        min-height: 40vh;
        position: relative;
        padding: 85px 0 80px 0;
        display: flex;
        align-items: center;
    }
}
.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;
}

.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;
    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);
}

.values h3 {
    color: var(--heading-color);
    font-size: 22px;
    margin-bottom: 20px;
}

.value-card {
    display: flex;
    gap: 16px;
    background: #fafafa;
    border-left: 4px solid var(--heading-color);
    padding: 16px;
    border-radius: 6px;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.value-card:hover {
    /*box-shadow: 0 6px 25px rgba(0,0,0,0.08);*/
    transform: translateX(25px);
}

.value-card i {
    font-size: 30px;
    color: var(--heading-color);
    margin-top: 4px;
    flex-shrink: 0;
    transition: transform 0.6s ease; /* smooth animation */
    transform-style: preserve-3d;
}

.value-card:hover i {
    transform: rotateY(180deg);
}

.value-card h4 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #333;
}

.value-card p {
    margin: 0;
    font-size: 15px;
    color: #555;
}


/*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(145deg, #002336 0%, #57c785 50%, #eddd53 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partner-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-section h1 span {
    color: #e8c236;
}

.partner-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #fefefe;
}

.partner-section .cta-button {
    background-color: #ffffff;
    color: #002336;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.partner-section .cta-button:hover {
    background-color: #e8c236;
    color: #002336;
    text-decoration: none;
}

@media (max-width: 768px) {
    .partner-section h1 {
        font-size: 2rem;
    }

    .partner-section p {
        font-size: 1rem;
    }
}

/* Decorative angle overlays */
.partner-section::before,
.partner-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    transform: skewY(-5deg);
    z-index: 0;
}

.partner-section::after {
    bottom: 0;
    transform: skewY(5deg);
}

/* Floating shape decorations */
.partner-section .float-shape {
    position: absolute;
    opacity: 0.2;
    font-size: 100px;
    z-index: 1;
    animation: floatAnim 12s ease-in-out infinite alternate;
}

.partner-section .float1 {
    top: 10%;
    left: 10%;
}

.partner-section .float2 {
    top: 20%;
    right: 10%;
    animation-delay: 4s;
}

.partner-section .float3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes floatAnim {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(20px) rotate(10deg);
    }
}

/* Optional glowing radial background */
.partner-section::before {
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.05), #ffffff14 70%);
}

/*OFFER*/

.offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 106vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.offer-modal-box {
    background: linear-gradient(to bottom, #071c3b, #000d1a);
    border-radius: 20px;
    color: #ffffff;
    max-width: 500px;
    width: 80%;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.08);
    position: relative;
    animation: slideDown 0.5s ease-out;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
}

@keyframes slideDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.offer-close {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 1.9rem;
    color: #aaa;
    cursor: pointer;
    z-index: 999;
}

.offer-modal-box .action-btn{
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -80%);
    padding: 12px 55px;
    color: transparent;
    background-color: transparent;
}
/*AI*/
/* Floating Button */
#chat-btn {
    position: fixed;
    bottom: 15px;
    left: 30px;
    background-color: var(--accent-color);;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    z-index: 999;
}
#chat-btn:hover {
    transform: scale(1.1);
}

/* Chat Modal */
#chat-modal {
    font-family: var(--heading-font);
    position: fixed;
    bottom: 80px;
    left: 30px;
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    z-index: 999;
}

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

#chat-header {
    background: var(--accent-color);;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

#chat-body {
    padding: 10px;
    flex: 1;
    overflow-y: auto;
    font-size: 12px;
    font-weight: 600;
}

.message {
    margin-bottom: 10px;
}

.user { text-align: right; color: var(--accent-color);; }
.bot { text-align: left; color: #333; }

#chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}

#chat-input input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
}

#chat-input button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}
