@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}


/* Navigation Styles */

nav {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 65px;
    position: absolute;
    z-index: 999;
    width: 100%;
    transition: background 0.3s ease, position 0.3s ease;
}

nav.fixed-nav {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

nav .mainlogo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

nav .mainlogo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

nav ul li {
    position: relative;
    margin: 0 10px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background: #00000085;
}

nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 3px solid rgb(88, 180, 250);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #000000d7;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

nav ul ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul ul li a {
    line-height: 50px;
    padding: 0 20px;
    color: #ffffff;
}

nav ul ul li a:hover {
    background: #011021;
    color: #ffffff;
}

nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

nav ul li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.icon {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

.logo {
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    margin-left: 5px;
}

.fa {
    color: white;
}


/* Navigation Media Queries */

@media (max-width: 1300px) and (min-width: 1160px) {
    nav {
        padding: 0 6px;
    }
    nav ul li a {
        font-size: 17px;
        padding: 8px 9px;
    }
}

@media (max-width: 1160px) {
    nav {
        padding: 0 40px;
        background: transparent;
    }
    nav.fixed-nav {
        background: rgb(0, 0, 0);
    }
    nav .mainlogo img {
        height: 50px;
    }
    .icon {
        display: block;
    }
    nav ul {
        display: none !important;
        position: fixed;
        top: 70px;
        right: 0;
        width: 50%;
        background: #000000d7;
        flex-direction: column;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }
    nav ul.show {
        display: flex !important;
    }
    nav ul li {
        width: 100%;
        margin: 0;
    }
    nav ul li a {
        padding: 15px 20px;
    }
    nav ul ul {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none !important;
        background: #000000;
        box-shadow: none;
        padding: 0;
        height: auto;
        /* Ensure the container shrinks to fit content */
        min-height: 0;
        /* Prevent any minimum height from adding space */
    }
    nav ul ul.show {
        display: block !important;
    }
    nav ul li:hover>ul {
        display: block;
    }
    nav ul ul li {
        border-bottom: none;
        margin: 0;
    }
    nav ul ul li:last-child {
        margin-bottom: 0;
        /* Ensure no extra margin on the last item */
    }
    nav ul ul li a {
        padding: 12px 40px;
        line-height: normal;
        margin: 0;
        /* Ensure no margins on the link itself */
    }
    nav ul li a:hover {
        background: #011021;
        color: #ffffff;
    }
}

@media (max-width: 660px) {
    nav {
        padding: 0 10px;
    }
    nav ul {
        width: 80%;
    }
    .logo {
        font-size: 1em;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        margin-left: 5px;
    }
}


/* Footer Styles */

a {
    text-decoration: none;
}

.footer {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 3rem 1rem 1rem !important;
}

.footer .second-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 2fr !important;
    }
}

.footer .footer-brand {
    text-align: center;
    margin-left: 20px;
}

@media (min-width: 640px) {
    .footer .footer-brand {
        text-align: left !important;
    }
}

.footer .footer-logo {
    display: inline-flex !important;
    margin-bottom: 1rem !important;
    align-items: center !important;
}

.footer .footer-logo img {
    height: 1.8rem !important;
    width: auto !important;
    margin-right: 0.3rem !important;
}

.footer .footer-brand-name {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
    display: block !important;
}

.footer .footer-brand-name span {
    display: block !important;
}

.footer-description {
    color: #a0a0a0 !important;
    max-width: 18rem !important;
    margin: 0 auto 1.5rem;
    line-height: 1.5 !important;
    font-size: 0.875rem !important;
    text-align: justify !important;
}

@media (min-width: 640px) {
    .footer .footer-description {
        margin: 0 0 1.5rem !important;
    }
}

.footer .social-links {
    display: flex !important;
    gap: 1rem !important;
    list-style: none !important;
    align-items: center !important;
    margin-left: -30px !important;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer .social-links {
        justify-content: flex-start !important;
    }
}

.footer .social-links a {
    color: #fff !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.8rem !important;
    height: 1.8rem !important;
    border-radius: 50% !important;
    background-color: transparent !important;
}

.footer .social-links a:hover {
    transform: scale(1.1) !important;
    color: #4a90e2 !important;
}

.footer .social-links svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    display: block !important;
}

.footer .footer-columns {
    display: grid !important;
    grid-template-columns: 2fr !important;
    gap: 1.4rem !important;
    align-items: start !important;
}

@media (min-width: 640px) {
    .footer .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .footer .footer-columns {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.footer .footer-column {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer .footer-title {
    position: relative !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    text-align: left !important;
    padding: 0 !important;
    display: inline-block !important;
    width: 100% !important;
}

.footer .footer-title:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 30px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #4a90e2, transparent) !important;
}

.footer .footer-links {
    list-style: none !important;
    margin-top: 1rem !important;
    text-align: left !important;
    padding: 0 !important;
}

.footer .footer-links li {
    margin: 0 0 0.75rem 0 !important;
    padding: 0 !important;
}

.footer .footer-links a {
    position: relative !important;
    color: #fff !important;
    transition: color 0.3s ease !important;
    display: block !important;
    text-align: left !important;
    font-size: 0.875rem !important;
}

.footer .footer-links a:after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 0.5px !important;
    bottom: -2px !important;
    left: 0 !important;
    background-color: #4a90e2 !important;
    transition: width 0.3s ease !important;
}

.footer .footer-links a:hover:after {
    width: 20% !important;
}

.footer .footer-links a:hover {
    color: #4a90e2 !important;
}

.footer .contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
    margin-left: -30px !important;
    font-size: 0.875rem !important;
}

.footer .contact-item svg {
    width: 1rem !important;
    height: 1rem !important;
    stroke: #fff !important;
    flex-shrink: 0 !important;
    margin-right: 0.2rem !important;
    display: block !important;
}

.footer .contact-item:hover {
    color: #4a90e2 !important;
}

.footer .contact-item address,
.footer .contact-item span {
    color: #fff !important;
    margin: 0 !important;
    text-align: left !important;
    display: inline-block !important;
    line-height: 1.25rem !important;
}

.footer .contact-item:hover address,
.footer .contact-item:hover span {
    color: #4a90e2 !important;
}

.footer .footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 1rem !important;
    text-align: center !important;
}

@media (min-width: 640px) {
    .footer .footer-bottom {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.footer .footer-bottom p {
    color: #a0a0a0 !important;
    font-size: 0.75rem !important;
}

.footer .footer-bottom a {
    color: #4a90e2 !important;
    transition: color 0.3s ease !important;
}

.footer .footer-bottom a:hover {
    color: #357abd !important;
}




/* Chatbot Styles */


/* Styles for the chatbot container */

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


/* Styles for the chatbot icon */

.chatbot-icon {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.chatbot-icon:hover {
    transform: scale(1.1);
}

.chatbot-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}


/* Styles for the chat window */

.chatbot-window {
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/* Hidden class for toggling visibility */

.hidden {
    display: none;
}


/* Styles for the chat header */

.chatbot-header {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.chatbot-close:hover {
    color: #ffca2c;
}


/* Styles for the messages area */

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #f9f9f9;
}

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.message.bot {
    justify-content: flex-start;
}

.message.user {
    justify-content: flex-end;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.text {
    padding: 8px 12px;
    border-radius: 15px;
    background: #e0e0e0;
    max-width: 70%;
}

.message.bot .text {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
}

.message.user .text {
    background: #d1e7ff;
}


/* Styles for the button container */

.button-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* Styles for main menu buttons (Home, Company, etc.) */

.main-nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #007bff, #00b7ff);
    color: white;
    transition: background 0.3s, transform 0.1s;
    margin: 5px;
}

.main-nav-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0096cc);
    transform: scale(1.05);
}

.main-nav-btn:active {
    transform: scale(0.95);
}


/* Styles for sub-menu buttons (AI & ML, Farm2Plate, etc.) */

.sub-nav-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(45deg, #17a2b8, #20c997);
    color: white;
    transition: background 0.3s, transform 0.1s;
    margin: 5px;
}

.sub-nav-btn:hover {
    background: linear-gradient(45deg, #138496, #1aab7d);
    transform: scale(1.05);
}

.sub-nav-btn:active {
    transform: scale(0.95);
}


/* Styles for default response Yes/No buttons */

.contact-yes-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #28a745;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.contact-yes-btn:hover {
    background: #218838;
    transform: scale(1.05);
}

.contact-yes-btn:active {
    transform: scale(0.95);
}

.contact-no-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #dc3545;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.contact-no-btn:hover {
    background: #c82333;
    transform: scale(1.05);
}

.contact-no-btn:active {
    transform: scale(0.95);
}


/* Styles for "No" response buttons */

.doubt-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #ffca2c;
    color: #333;
    transition: background 0.3s, transform 0.1s;
}

.doubt-btn:hover {
    background: #e0b024;
    transform: scale(1.05);
}

.doubt-btn:active {
    transform: scale(0.95);
}

.menu-return-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    background: #6c757d;
    color: white;
    transition: background 0.3s, transform 0.1s;
}

.menu-return-btn:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.menu-return-btn:active {
    transform: scale(0.95);
}


/* Styles for the input container */

.chatbot-input-container {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f1f1f1;
    border-top: 1px solid #ddd;
}


/* Styles for the input field */

.chatbot-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 15px;
    font-size: 14px;
    outline: none;
    margin-right: 10px;
}

.chatbot-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}


/* Styles for the send button */

.chatbot-send {
    background: linear-gradient(45deg, #007bff, #00b7ff);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: background 0.3s, transform 0.1s;
}

.chatbot-send:hover {
    background: linear-gradient(45deg, #0056b3, #0096cc);
    transform: scale(1.05);
}

.chatbot-send:active {
    transform: scale(0.95);
}


/* Styles for the mic button (added via JS) */

.chatbot-mic {
    background: linear-gradient(45deg, #ffca2c, #ffdb6d);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 16px;
    margin-left: 10px;
    transition: background 0.3s, transform 0.1s;
}

.chatbot-mic:hover {
    background: linear-gradient(45deg, #e0b024, #e0c056);
    transform: scale(1.05);
}

.chatbot-mic:active {
    transform: scale(0.95);
}


/* Typing indicator styles (used in components.js) */

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

.orange-container {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.orange-container .heading {
    font-weight: bold;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.orange-container .heading .big-e {
    position: relative;
    bottom: -5px;
    left: 5px;
    font-size: 200px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    line-height: 1;
    margin-right: -5px;
    transform: translateZ(40px);
    transition: transform 0.5s ease;
}

.content-container {
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin: 0 auto 10px;
    opacity: 0;
    transform: translateY(50px) rotateX(30deg);
    box-sizing: border-box;
    transform-style: preserve-3d;
    color: white;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateZ(20px) rotateX(10deg);
}

.tab.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateZ(30px);
}

.orange-container .description {
    font-size: clamp(14px, 2vw, 24px);
    color: white;
    opacity: 0;
    max-width: 550px;
    font-weight: 600;
    border-left: 8px solid white;
    padding-left: 20px;
    text-align: left;
    line-height: 1.4;
}

.content-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-top: 0;
    transform: translateY(20px) translateZ(10px);
    line-height: 1.6;
    color: white;
    opacity: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-heading {
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.stats-container {
    display: grid;
    margin-bottom: 20px;
    justify-items: center;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 5px;
    border: 2px solid white;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    position: relative;
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    overflow: visible;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box:hover {
    transform: translateY(0) scale(1.05);
}

.stat-box i {
    position: absolute;
    top: 6px;
    right: 6px;
    background: green;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transform: translateZ(10px);
}

.stat-name {
    font-size: 0.8rem;
    color: white;
    line-height: 1.1;
    font-weight: 500;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1.3rem;
}

.back-button:hover {
    background: #0056b3;
}
/* Hero Section Styles */

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 70px;
    perspective: 1000px;
    z-index: 2;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/ecom-page-bg.png) no-repeat center center/cover;
    z-index: -1;
    transform: scale(1.1);
}

.orange-container {
    background: rgba(7, 115, 204, 0.5);
    padding: 0px 40px 0px 40px;
    transform: translateY(-50px) rotateX(-30deg);
    align-items: last baseline;
    margin: 0 auto;
    gap: 100px;
    margin-bottom: 40px;
    height: 160px;
    margin-top: 50px;
    box-sizing: border-box;
}

.orange-container .heading {
    align-items: last baseline;
    white-space: nowrap;
}

.orange-container .heading .big-e {
    bottom: -15px;
}

.orange-container:hover .big-e {
    transform: translateZ(60px) rotateY(15deg);
}

.orange-container .heading span {
    font-size: 90px;
    color: white;
    line-height: 1;
    text-transform: uppercase;
}

.orange-container .description {
    font-size: 20px;
    max-width: 600px;
    padding-left: 30px;
}

.content-container {}

.tabs {}

.tab {}

.tab:hover {}

.tab.active {}

.content-description {
    font-size: 1rem;
    width: 80%;
}

.tech-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-box {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: rgba(29, 29, 29, 0.63);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tech-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.tech-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #0773cc;
}

.tech-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
}

.tech-item i {
    color: #fff;
    font-size: 1rem;
}


/* Features Section */

.features-section {
    padding: 60px 10px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    overflow: visible;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.features-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 0px;
}

.feature-card {
    flex: 0 0 25%;
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

.card-content.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.card-content.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    max-width: 200px;
    height: 190px;
    border-radius: 40px 0 40px 0;
    margin: 0 auto 15px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.card-content:hover img {
    transform: scale(1.05);
}

.feature-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    text-align: center;
}

.feature-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(to right, #6b48ff, #00d4ff);
    transform: scale(1.3);
}


/* Parallax Section */

.parallax-section {
    height: 80vh;
    background: url(/assets/ecom-sec3-bg.png) no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.parallax-section .overlay {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.parallax-section h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

.parallax-section p {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #ddd;
}

.parallax-section .showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    width: 95%;
    max-width: 1500px;
    flex-wrap: nowrap;
}

.website-img,
.logo-img {
    max-width: 350px;
    width: 40%;
    height: auto;
    padding-top: 40px;
    opacity: 0;
    transition: all 0.6s ease;
    position: relative;
    z-index: 3;
    transform: translateY(50px);
}

.logo-img {
    max-width: 220px;
    width: 30%;
}

.website-img.visible,
.logo-img.visible {
    opacity: 1;
    transform: translateY(0);
}

.website-img:nth-child(1):hover,
.website-img:nth-child(3):hover {
    transform: scale(1.13) translateY(0);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.website-img:nth-child(1)::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 70px;
    height: 4px;
    background: #fff;
}

.website-img:nth-child(1)::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 4px;
    height: 70px;
    background: #fff;
}

.website-img:nth-child(3)::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 70px;
    height: 4px;
    background: #fff;
}

.website-img:nth-child(3)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 4px;
    height: 70px;
    background: #fff;
}

.parallax-section .background {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    opacity: 0.25;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s linear;
}


/* E-Commerce Implementations Section */

.ecommerce-section {
    padding: 70px 40px;
    text-align: center;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.ecommerce-section h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.ecommerce-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 4px;
    background: #4a90e2;
    transform: translateX(-50%);
}

.ecommerce-section p {
    font-size: 1.1em;
    font-weight: 300;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0;
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

.ecommerce-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.ecommerce-card.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ecommerce-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ecommerce-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: #f0f7ff;
}

.ecommerce-card:hover img {
    transform: scale(1.02);
}

.ecommerce-card-content {
    padding: 18px;
    text-align: left;
    min-height: 120px;
}

.ecommerce-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: #4a90e2;
    margin-bottom: 10px;
}

.ecommerce-card p {
    font-size: 1em;
    font-weight: 400;
    color: #777;
    margin: 0 0 15px 0;
    visibility: visible;
    opacity: 1;
}

.ecommerce-card a {
    display: inline-block;
    margin-top: 15px;
    font-size: 1em;
    font-weight: 600;
    color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ecommerce-card a:hover {
    color: #357abd;
}


/* Fallback to ensure visibility */

.ecommerce-card-content p {
    display: block !important;
    opacity: 1 !important;
    color: #777 !important;
}


/* Background Decorative Elements */

.bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    animation: pulse 5s infinite ease-in-out;
}

.tech-circle:nth-child(1) {
    width: 180px;
    height: 180px;
    top: 15%;
    left: 10%;
}

.tech-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.tech-circle:nth-child(3) {
    width: 90px;
    height: 90px;
    top: 40%;
    left: 75%;
    animation-delay: 3s;
}


/* Animation Classes */

.animate-hero {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Animations */

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}


/* Responsive Design */

@media (max-width: 1300px) {
    .hero-section {
        height: 112vh;
    }
    .orange-container .description {
        font-size: 18px;
    }
    .orange-container .heading .big-e {
        font-size: 200px;
    }
    .orange-container {
        padding: 0px 20px 0px 20px;
        gap: 100px;
        margin-top: 90px;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        height: 110vh;
        padding-top: 30px;
    }
    .orange-container {
        gap: 30px;
        height: 160px;
        padding: 0px 5px 0px 0px;
    }
    .orange-container .heading .big-e {
        font-size: 180px;
    }
    .orange-container .heading span {
        font-size: 60px;
    }
    .orange-container .description {
        font-size: 18px;
        max-width: 500px;
        padding-left: 10px;
    }
    .content-container {
        width: 90%;
        padding: 15px;
    }
    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ecommerce-card {
        max-width: 400px;
    }
}

@media (max-width: 1024px) {
    .feature-card {
        flex: 0 0 50%;
    }
    .card-content {
        max-width: 320px;
        padding: 15px;
    }
    .feature-card img {
        max-width: 150px;
        height: 140px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        height: 110vh;
    }
    .orange-container {
        gap: 30px;
        height: 270px;
        padding: 0px 5px 0px 0px;
    }
    .orange-container .heading .big-e {
        font-size: 180px;
    }
    .orange-container .heading span {
        font-size: 60px;
    }
    .orange-container .description {
        font-size: 18px;
        max-width: 500px;
        padding-left: 10px;
    }
    .content-container {
        width: 90%;
        padding: 15px;
    }
    .ecommerce-section h2 {
        font-size: 2.8em;
    }
    .ecommerce-section p {
        font-size: 1.1em;
        max-width: 90%;
    }
    .ecommerce-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ecommerce-card {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 150vh;
        padding-top: 0px;
    }
    .orange-container {
        flex-direction: column;
        gap: 10px;
        height: auto;
        min-height: 240px;
        padding: 20px;
        justify-content: center;
        align-items: center;
    }
    .orange-container .heading .big-e {
        font-size: 120px;
    }
    .orange-container .heading span {
        font-size: 40px;
    }
    .orange-container .description {
        font-size: 16px;
        border-left: none;
        border-top: 4px solid white;
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
        max-width: 100%;
    }
    .content-container {
        width: 95%;
        padding: 10px;
    }
    .tech-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .feature-card {
        flex: 0 0 100%;
        padding: 0 10px;
    }
    .card-content {
        max-width: 360px;
        padding: 15px;
    }
    .feature-card img {
        max-width: 180px;
        height: 170px;
    }
    .ecommerce-grid {
        grid-template-columns: 1fr;
    }
    .ecommerce-card {
        max-width: 320px;
    }
    .ecommerce-card img {
        height: 220px;
    }
}

@media (max-width: 700px) {
    .parallax-section {
        height: auto;
        min-height: 90vh;
        padding: 40px 0;
    }
    .parallax-section .showcase {
        flex-direction: column;
        gap: 30px;
    }
    .parallax-section .website-img {
        width: 70%;
        max-width: 300px;
        padding-top: 20px;
    }
    .parallax-section .logo-img {
        width: 50%;
        max-width: 200px;
    }
    .parallax-section h1 {
        font-size: 2.5em;
    }
}

@media (max-width: 600px) {
    .ecommerce-section {
        padding: 60px 15px;
    }
    .ecommerce-section h2 {
        font-size: 2.2em;
    }
    .ecommerce-section p {
        font-size: 1em;
    }
    .ecommerce-grid {
        grid-template-columns: 1fr;
    }
    .ecommerce-card {
        max-width: 320px;
    }
    .ecommerce-card img {
        height: 220px;
    }
    .tech-circle:nth-child(1) {
        width: 120px;
        height: 120px;
    }
    .tech-circle:nth-child(2) {
        width: 100px;
        height: 100px;
    }
    .tech-circle:nth-child(3) {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .parallax-section h1 {
        font-size: 2em;
    }
    .parallax-section p {
        font-size: 0.9em;
    }
    .parallax-section .website-img {
        width: 80%;
        max-width: 250px;
    }
    .parallax-section .logo-img {
        width: 60%;
        max-width: 160px;
    }
    .website-img:nth-child(1)::before,
    .website-img:nth-child(3)::before {
        width: 50px;
    }
    .website-img:nth-child(1)::after,
    .website-img:nth-child(3)::after {
        height: 50px;
    }
    .ecommerce-section h2 {
        font-size: 1.8em;
    }
    .ecommerce-card img {
        height: 180px;
    }
    .ecommerce-card h3 {
        font-size: 1.3em;
    }
    .ecommerce-card p {
        font-size: 0.9em;
    }
    .feature-card img {
        max-width: 170px;
        height: 160px;
    }
    .card-content {
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .hero-section {
        height: 130vh;
        padding-top: 20px;
    }
}.footer .footer-brand {
    text-align: left !important;
    margin-left: 00px;
}

@media (max-width: 640px) {
    .footer-description {
        color: #a0a0a0 !important;
        max-width: 18rem !important;
        margin: 0px 0px 1.5rem !important;
        line-height: 1.5 !important;
        font-size: 0.875rem !important;
        text-align: justify !important;
    }
    .footer .social-links {
        display: flex !important;
        gap: 1rem !important;
        list-style: none !important;
        align-items: center !important;
        margin-left: -30px !important;
        justify-content: flex-start !important;
    }
}

