:root {
    --primary-blue: #1e73be;
    --primary-teal: #4eb8c0;
    --dark-bg: #111927;
    --light-text: #ffffff;
    --heading-font: 'Arial', sans-serif;
    --body-font: 'Arial', sans-serif;
    --hover-color: #000000; /* Added solid black color for hover states */
    --accent-coral: #ff7f7f;
    --accent-purple: #6c63ff;
    --light-bg: #f5f8ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
}

/* Header Styles - Updated to be transparent */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 5%;
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* background-color: rgba(78, 184, 192, 0.1); */
    background-color: rgb(255 255 255 / 91%);
    backdrop-filter: blur(5px);
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: black;
    z-index: 1100; /* Ensure button is above modal */
}

.logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: 10px;
}

.nav-links a {
    text-decoration: none;
    color: #0b1128;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--hover-color); /* Changed to solid black for better visibility */
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--hover-color); /* Changed to solid black for better visibility */
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-btn {
    background-color: transparent;
    border: 2px solid #0b1128;
    color: #0b1128;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: white;
    color: var(--primary-blue);
}

.phone {
    color: #0b1128;
    font-weight: bold;
    position: relative; /* Added for hover effect similar to menu items */
    padding: 5px 0; /* Added padding for hover effect */
    transition: color 0.3s;
}

/* Added hover effect for phone number similar to menu items */
.phone::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--hover-color); /* Changed to solid black for better visibility */
    transition: width 0.3s ease;
}

.phone:hover {
    color: var(--hover-color); /* Changed to solid black for better visibility */
}

.phone:hover::after {
    width: 100%;
}

.phone-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from parent */
    display: inline-block; /* Ensure the link properly contains the span */
}

/* Full screen modal menu - Updated to be more transparent */
.modal-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Changed from 0.95 to 0.85 for more transparency */
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    overflow-y: auto;
    backdrop-filter: blur(5px); /* Added blur effect for better readability with transparency */
}

.modal-menu.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 5%;
    transform: translateY(-50px);
    transition: all 0.4s ease;
}

.modal-menu.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: flex-end; /* Changed to push close button to the right */
    align-items: center;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 40px;
}

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

.close-btn:hover {
    color: var(--primary-teal);
}

.modal-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-left: 5%;
}

.modal-nav a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
    transform-origin: left;
    width: fit-content;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
}

.modal-menu.active .modal-nav a {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation delay for nav items */
.modal-nav a:nth-child(1) { transition-delay: 0.1s; }
.modal-nav a:nth-child(2) { transition-delay: 0.2s; }
.modal-nav a:nth-child(3) { transition-delay: 0.3s; }
.modal-nav a:nth-child(4) { transition-delay: 0.4s; }
.modal-nav a:nth-child(5) { transition-delay: 0.5s; }
.modal-nav a:nth-child(6) { transition-delay: 0.6s; }

.modal-nav a:hover {
    color: var(--primary-teal);
    transform: translateX(10px);
}

.modal-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-teal);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.modal-nav a:hover::after {
    width: 100%;
}

/* Banner Styles - Updated to be 100% of screen height */
.banner {
    margin-top: 0; /* Removed margin to make it start from the top */
    position: relative;
    background: linear-gradient(135deg, #4eb8c0 0%, #1e73be 100%);
    padding: 0;
    height: 100vh; /* Already set to 100vh */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-content {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 0 5%;
}

.banner h1 {
    font-family: var(--heading-font);
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
}

.banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.8s;
}

.banner-btn {
    display: inline-block;
    background-color: white;
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 1.1s;
}

.banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.float-item {
    position: absolute;
    opacity: 0;
    animation: float 8s linear infinite, fadeIn 1s ease forwards;
}

.lightbulb {
    top: 20%;
    left: 10%;
    font-size: 40px;
    color: #FFD700;
    animation-delay: 0.5s;
}

.gear {
    top: 30%;
    right: 15%;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.7);
    animation-delay: 1s;
}

.code {
    bottom: 20%;
    left: 20%;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    animation-delay: 1.5s;
}

.mobile {
    top: 60%;
    right: 25%;
    font-size: 35px;
    color: rgba(255, 255, 255, 0.8);
    animation-delay: 2s;
}

.cloud {
    top: 15%;
    right: 30%;
    font-size: 45px;
    color: rgba(255, 255, 255, 0.6);
    animation-delay: 2.5s;
}

.database {
    bottom: 30%;
    right: 10%;
    font-size: 35px;
    color: rgba(255, 255, 255, 0.7);
    animation-delay: 3s;
}

.document {
    top: 40%;
    left: 25%;
    font-size: 35px;
    color: rgba(255, 255, 255, 0.7);
    animation-delay: 3.5s;
}

/* New software-related icons on the right side */
.server {
    top: 25%;
    right: 40%;
    font-size: 38px;
    color: rgba(255, 255, 255, 0.75);
    animation-delay: 1.2s;
}

.laptop-code {
    top: 45%;
    right: 35%;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.8);
    animation-delay: 1.8s;
}

.chart-line {
    top: 65%;
    right: 45%;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.7);
    animation-delay: 2.3s;
}

.shield {
    top: 35%;
    right: 50%;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.65);
    animation-delay: 2.7s;
}

.network-wired {
    top: 55%;
    right: 55%;
    font-size: 34px;
    color: rgba(255, 255, 255, 0.75);
    animation-delay: 3.2s;
}

/* New icons for bottom-right part of banner */
.calculator {
    bottom: 15%;
    right: 15%;
    font-size: 38px;
    color: rgba(255, 255, 255, 0.8);
    animation-delay: 1.3s;
}

.users {
    bottom: 10%;
    right: 25%;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.75);
    animation-delay: 1.7s;
}

.credit-card {
    bottom: 20%;
    right: 35%;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.7);
    animation-delay: 2.1s;
}

.chart-pie {
    bottom: 25%;
    right: 20%;
    font-size: 34px;
    color: rgba(255, 255, 255, 0.65);
    animation-delay: 2.5s;
}

.tasks {
    bottom: 15%;
    right: 30%;
    font-size: 30px;
    color: rgba(255, 255, 255, 0.7);
    animation-delay: 2.9s;
}

.pulse {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: scale(0);
    animation: pulse 4s infinite;
}

.pulse-1 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 30%;
    animation-delay: 0s;
}

.pulse-2 {
    width: 300px;
    height: 300px;
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.client-counter {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px 25px;
    max-width: fit-content;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 1.4s;
}

.counter-number {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.counter-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -15px) rotate(5deg);
    }
    50% {
        transform: translate(0, -30px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, -15px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes fadeIn {
    to {
        opacity: 0.8;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end);
    margin-top: 10px;
    color: white;
    font-size: 22px;
    font-weight: 500;
    opacity: 0;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

.subtle-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
    opacity: 0.4;
    z-index: 0;
}

/* Mobile Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 3s, bounce 2s infinite;
    z-index: 10;
    display: none; /* Hidden by default, shown on mobile */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* NEW STYLES FOR FEATURES SECTION */
.features-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.features-row:last-child {
    margin-bottom: 0;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-content {
    flex: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.features-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-image {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.features-image.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-content h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
}

.features-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    border-radius: 2px;
}

.features-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.features-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.features-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    transition: all 0.4s;
    z-index: -1;
}

.features-btn:hover::before {
    left: 0;
}

.features-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Solutions animation */
.solutions-animation {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background-color: #2a2c70;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.computer-mockup {
    width: 90%;
    height: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1b4b;
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
}

.screen {
    width: 100%;
    height: 100%;
    background-color: #2d2f8e;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.mockup-content {
    padding: 15px;
}

.code-line {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    width: 100%;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.code-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: codeScan 2s linear infinite;
}

.code-line:nth-child(odd) {
    width: 85%;
}

.code-line:nth-child(3n) {
    width: 65%;
}

@keyframes codeScan {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: floatIcon 8s infinite alternate;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    background-color: var(--accent-coral);
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    background-color: var(--primary-teal);
}

.icon-3 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
    background-color: var(--accent-purple);
}

.person-illustration {
    position: absolute;
    bottom: 5%;
    left: 10%;
    width: 30%;
    height: 85%;
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 300' width='100' height='300'%3E%3Crect x='40' y='20' width='20' height='20' rx='10' fill='%236c63ff'/%3E%3Crect x='35' y='45' width='30' height='40' fill='%236c63ff'/%3E%3Crect x='20' y='85' width='25' height='10' fill='%236c63ff'/%3E%3Crect x='55' y='85' width='25' height='10' fill='%236c63ff'/%3E%3Crect x='38' y='95' width='24' height='40' fill='%236c63ff'/%3E%3Crect x='38' y='135' width='10' height='30' fill='%236c63ff'/%3E%3Crect x='52' y='135' width='10' height='30' fill='%236c63ff'/%3E%3C/svg%3E"); */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200' width='100' height='200'%3E%3Ccircle cx='50' cy='30' r='20' fill='%234eb8c0'/%3E%3Crect x='35' y='50' width='30' height='60' fill='%234eb8c0'/%3E%3Crect x='15' y='70' width='20' height='8' fill='%234eb8c0'/%3E%3Crect x='65' y='70' width='20' height='8' fill='%234eb8c0'/%3E%3Crect x='35' y='110' width='12' height='40' fill='%234eb8c0'/%3E%3Crect x='53' y='110' width='12' height='40' fill='%234eb8c0'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    animation: personMove 3s ease-in-out infinite alternate;
}

@keyframes personMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes floatIcon {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -15px);
    }
    100% {
        transform: translate(-10px, 10px);
    }
}

/* Support animation */
.support-animation {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    background-color: #f0f7ff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.people-container {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.person {
    position: absolute;
    width: 80px;
    height: 160px;
}

.person-1 {
    left: 30%;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200' width='100' height='200'%3E%3Ccircle cx='50' cy='30' r='20' fill='%23ff7f7f'/%3E%3Crect x='35' y='50' width='30' height='60' fill='%23ff7f7f'/%3E%3Crect x='25' y='70' width='20' height='8' fill='%23ff7f7f'/%3E%3Crect x='55' y='70' width='20' height='8' fill='%23ff7f7f'/%3E%3Crect x='35' y='110' width='12' height='40' fill='%23ff7f7f'/%3E%3Crect x='53' y='110' width='12' height='40' fill='%23ff7f7f'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: personTalk 3s infinite alternate;
}

.person-2 {
    right: 30%;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200' width='100' height='200'%3E%3Ccircle cx='50' cy='30' r='20' fill='%234eb8c0'/%3E%3Crect x='35' y='50' width='30' height='60' fill='%234eb8c0'/%3E%3Crect x='15' y='70' width='20' height='8' fill='%234eb8c0'/%3E%3Crect x='65' y='70' width='20' height='8' fill='%234eb8c0'/%3E%3Crect x='35' y='110' width='12' height='40' fill='%234eb8c0'/%3E%3Crect x='53' y='110' width='12' height='40' fill='%234eb8c0'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: personTalk 3s infinite alternate-reverse;
}

.briefcase {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #ff9e7f;
    border-radius: 5px;
    bottom: 30%;
    right: 35%;
    transform: translateY(-50%) rotate(-10deg);
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.briefcase::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background-color: #ff9e7f;
    border-radius: 5px 5px 0 0;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.chat-bubble {
    position: absolute;
    background-color: white;
    border-radius: 15px;
    padding: 10px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: bubbleAppear 6s infinite;
}

.bubble-1 {
    top: 20%;
    left: 40%;
    max-width: 120px;
    animation-delay: 0s;
}

.bubble-2 {
    top: 30%;
    right: 40%;
    max-width: 120px;
    animation-delay: 3s;
}

.chat-bubble p {
    margin: 0;
    font-size: 12px;
    color: #444;
}

.handshake {
    position: absolute;
    width: 60px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: handshakeMove 3s infinite;
}

.handshake::before, .handshake::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 8px;
    background-color: #ffbd7f;
    border-radius: 4px;
}

.handshake::before {
    top: 10px;
    left: 15px;
    transform: rotate(45deg);
}

.handshake::after {
    top: 10px;
    right: 15px;
    transform: rotate(-45deg);
}

@keyframes bubbleAppear {
    0%, 20% {
        opacity: 0;
        transform: translateY(10px);
    }
    30%, 70% {
        opacity: 1;
        transform: translateY(0);
    }
    80%, 100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@keyframes personTalk {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    30% {
        transform: translateY(-53%) rotate(2deg);
    }
    60% {
        transform: translateY(-47%) rotate(-2deg);
    }
    100% {
        transform: translateY(-50%) rotate(0deg);
    }
}

@keyframes handshakeMove {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* NEW STYLES FOR PRODUCTS SECTION */
.products-section {
    padding: 120px 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 48px;
    color: white;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

.product-card {
    position: relative;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(30, 40, 60, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for product cards */
.product-card:nth-child(1) { transition-delay: 0.1s; }
.product-card:nth-child(2) { transition-delay: 0.2s; }
.product-card:nth-child(3) { transition-delay: 0.3s; }
.product-card:nth-child(4) { transition-delay: 0.4s; }
.product-card:nth-child(5) { transition-delay: 0.5s; }
.product-card:nth-child(6) { transition-delay: 0.6s; }
.product-card:nth-child(7) { transition-delay: 0.7s; }
.product-card:nth-child(8) { transition-delay: 0.8s; }
.product-card:nth-child(9) { transition-delay: 0.9s; }
.product-card:nth-child(10) { transition-delay: 1.0s; }
.product-card:nth-child(11) { transition-delay: 1.1s; }
.product-card:nth-child(12) { transition-delay: 1.2s; }
.product-card:nth-child(13) { transition-delay: 1.3s; }
.product-card:nth-child(14) { transition-delay: 1.4s; }
.product-card:nth-child(15) { transition-delay: 1.5s; }
.product-card:nth-child(16) { transition-delay: 1.6s; }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(78, 184, 192, 0.3), transparent 60%);
    opacity: 0.5;
    transition: all 0.5s ease;
}

.product-card:hover::before {
    opacity: 0.8;
    background: radial-gradient(circle at 70% 70%, rgba(78, 184, 192, 0.5), transparent 70%);
}

.product-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.5s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
}

.product-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.product-card:hover .product-title {
    transform: translateY(-5px);
}

.product-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 1;
    max-height: 100px;
    margin-top: 10px;
}

.product-card:hover .product-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

.product-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-teal);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.product-card:hover .product-link {
    opacity: 1;
    transform: translateY(0);
}

.product-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}

/* Particle animation for products section */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px) translateX(100px);
        opacity: 0;
    }
}

/* Glowing effect for product cards */
.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(78, 184, 192, 0.3), transparent 70%);
    opacity: 1;
    transition: all 0.5s ease;
}

.product-card:hover .glow {
    opacity: 1;
}

/* NEW STYLES FOR TECHNOLOGIES SECTION */
.technologies-section {
    padding: 120px 0;
    background-color: #0a1128;
    position: relative;
    overflow: hidden;
}

.technologies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.tech-category {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tech-category.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for tech categories */
.tech-category:nth-child(1) { transition-delay: 0.2s; }
.tech-category:nth-child(2) { transition-delay: 0.4s; }
.tech-category:nth-child(3) { transition-delay: 0.6s; }

.tech-list {
    list-style: none;
}

.tech-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.tech-category.animate .tech-item {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for tech items */
.tech-item:nth-child(1) { transition-delay: 0.1s; }
.tech-item:nth-child(2) { transition-delay: 0.2s; }
.tech-item:nth-child(3) { transition-delay: 0.3s; }
.tech-item:nth-child(4) { transition-delay: 0.4s; }
.tech-item:nth-child(5) { transition-delay: 0.5s; }

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 22px;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 15px rgba(78, 184, 192, 0.5);
}

.tech-name {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.tech-check {
    margin-right: 15px;
    color: var(--primary-teal);
    font-size: 20px;
}

/* Background elements for technologies section */
.tech-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tech-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 184, 192, 0.2), transparent 70%);
    opacity: 0.3;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
}

.tech-bg-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(78, 184, 192, 0.3), transparent);
}

.line-1 {
    top: 20%;
}

.line-2 {
    top: 50%;
}

.line-3 {
    top: 80%;
}

/* Code animation for technologies section */
.code-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
    overflow: hidden;
}

.code-line {
    position: absolute;
    font-family: monospace;
    color: var(--primary-teal);
    white-space: nowrap;
    font-size: 14px;
    opacity: 0.7;
    animation: codeDrift 20s linear infinite;
}

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

/* Floating tech icons */
.floating-tech {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    animation: floatTech 10s ease-in-out infinite alternate;
    opacity: 0.5;
}

.float-tech-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-tech-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.float-tech-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.float-tech-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatTech {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(10deg);
    }
    100% {
        transform: translate(-20px, 20px) rotate(-10deg);
    }
}

/* NEW STYLES FOR ABOUT SECTION */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-col {
    flex: 1;
    position: relative;
}

.about-content-col {
    flex: 1;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-50px) perspective(1000px) rotateY(-5deg);
}

.about-image-wrapper.animate {
    opacity: 1;
    transform: translateX(0) perspective(1000px) rotateY(-5deg);
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 115, 190, 0.2), rgba(78, 184, 192, 0.4));
    opacity: 0.7;
    transition: all 0.5s ease;
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 0.4;
}

.about-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.about-image-wrapper.animate .about-image-badge {
    transform: translateY(0);
    opacity: 1;
}

.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-title {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 25px;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    border-radius: 2px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-text:last-of-type {
    margin-bottom: 35px;
}

.about-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(78, 184, 192, 0.3);
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-teal));
    transition: all 0.4s ease;
    z-index: -1;
}

.about-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(78, 184, 192, 0.4);
}

.about-btn:hover::before {
    left: 0;
}

.about-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* About section background elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-shape {
    position: absolute;
    opacity: 0.1;
}

.about-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--primary-teal);
    animation: morphShape 15s linear infinite alternate;
}

.about-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background-color: var(--primary-blue);
    animation: morphShape 12s linear infinite alternate-reverse;
}

.about-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    background-color: var(--accent-purple);
    opacity: 0.05;
    animation: morphShape 20s linear infinite;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* About section floating elements */
.about-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.about-float-item {
    position: absolute;
    opacity: 0;
    animation: aboutFloat 10s linear infinite, aboutFadeIn 1s ease forwards;
}

.about-float-1 {
    top: 15%;
    left: 10%;
    font-size: 30px;
    color: var(--primary-teal);
    animation-delay: 0.5s;
}

.about-float-2 {
    top: 25%;
    right: 15%;
    font-size: 35px;
    color: var(--primary-blue);
    animation-delay: 1.5s;
}

.about-float-3 {
    bottom: 20%;
    left: 15%;
    font-size: 28px;
    color: var(--accent-coral);
    animation-delay: 2.5s;
}

.about-float-4 {
    bottom: 30%;
    right: 10%;
    font-size: 32px;
    color: var(--accent-purple);
    animation-delay: 3.5s;
}

@keyframes aboutFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes aboutFadeIn {
    to {
        opacity: 0.6;
    }
}

/* About section stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.3s;
}

.about-stats.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    flex: 1;
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(78, 184, 192, 0.1), rgba(30, 115, 190, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-blue);
    font-size: 24px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(78, 184, 192, 0.2), rgba(30, 115, 190, 0.2));
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 16px;
    color: #666;
}

/* Responsive Styles */
/* Tablet Styles */
@media (max-width: 1024px) {
    .banner h1 {
        font-size: 48px;
    }
    
    .banner p {
        font-size: 16px;
        max-width: 600px;
    }
    
    .typing-text {
        font-size: 20px;
    }
    
    .float-item {
        font-size: 80%; /* Reduce icon sizes */
    }
    
    .modal-nav a {
        font-size: 28px;
    }
    
    .client-counter {
        padding: 12px 20px;
    }
    
    .counter-number {
        font-size: 24px;
    }
    
    .counter-text {
        font-size: 14px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .logo {
        max-width: 180px;
    }
    
    .contact-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .phone {
        font-size: 14px;
    }

    /* Features section tablet styles */
    .features-row {
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .features-content h2 {
        font-size: 30px;
    }
    
    .features-content p {
        font-size: 16px;
    }
    
    .image-container {
        height: 350px;
    }
    
    .solutions-animation, .support-animation {
        height: 350px;
    }

    /* Products section tablet styles */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .product-card {
        height: 200px;
    }
    
    .product-icon {
        font-size: 32px;
    }
    
    .product-title {
        font-size: 18px;
    }

    /* Technologies section tablet styles */
    .technologies-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .tech-item {
        padding: 12px 15px;
    }
    
    .tech-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .tech-name {
        font-size: 16px;
    }

    /* About section tablet styles */
    .about-row {
        gap: 40px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .about-shape-1, .about-shape-2 {
        width: 200px;
        height: 200px;
    }
    
    .about-shape-3 {
        width: 400px;
        height: 400px;
    }
}

/* Mobile Styles - Improved */
@media (max-width: 768px) {
    .header {
        padding: 15px 4%;
        justify-content: space-between;
    }
    
    /* Rearrange header for mobile - menu on left, logo centered */
    .menu-btn {
        order: 1;
        font-size: 24px; /* Increased from 20px for better visibility */
        padding: 8px; /* Added padding for larger touch target */
    }
    
    .logo {
        order: 2;
        max-width: 175px;
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-links {
        display: none; /* Hide nav links on mobile */
    }
    
    .contact-info {
        order: 3;
        gap: 10px;
    }
    
    .contact-btn {
        display: none; /* Hide contact button on mobile */
    }
    
    .phone {
        font-size: 14px; /* Increased from 12px for better readability */
    }
    
    /* Banner adjustments for mobile */
    .banner-content {
        padding: 0 4%;
        text-align: center;
        margin-top: 30px; /* Added space at the top */
    }
    
    .banner h1 {
        font-size: 36px;
        margin-bottom: 15px;
        line-height: 1.2; /* Improved line height */
    }
    
    .banner p {
        font-size: 16px; /* Increased from 14px */
        margin-bottom: 20px;
        max-width: 100%;
        line-height: 1.5; /* Improved line height */
    }
    
    .typing-text {
        font-size: 18px; /* Increased from 16px */
        white-space: normal; /* Allow text to wrap on mobile */
        animation: fadeUp 1s ease forwards 2s; /* Change animation for mobile */
        line-height: 1.4; /* Added line height */
    }
    
    .client-counter {
        margin: 20px auto 0; /* Increased top margin */
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 20px; /* Increased padding */
        width: 80%; /* Set width to make it more prominent */
        max-width: 300px;
    }
    
    .counter-number {
        font-size: 32px; /* Increased from 22px */
        margin-bottom: 5px; /* Added space between number and text */
    }
    
    .counter-text {
        font-size: 14px; /* Increased from 12px */
        line-height: 1.4;
    }
    
    /* Adjust modal for mobile */
    .modal-nav {
        margin-left: 0;
        align-items: center;
        text-align: center;
        gap: 30px; /* Increased from 25px */
    }
    
    .modal-nav a {
        font-size: 28px; /* Increased from 24px */
        padding: 10px 0; /* Added padding for larger touch target */
    }
    
    .modal-header {
        padding: 15px 0;
        margin-bottom: 30px;
    }
    
    .close-btn {
        font-size: 30px; /* Increased from 24px */
        padding: 10px; /* Added padding for larger touch target */
    }
    
    /* Adjust floating elements for mobile - INCREASED SIZES */
    .float-item {
        font-size: 120% !important; /* Significantly increased from 70% */
    }
    
    /* Show fewer but larger icons on mobile */
    .server, .network-wired, .chart-line, .tasks {
        display: none;
    }
    
    /* Keep these key icons visible and make them larger */
    .lightbulb {
        top: 15%;
        left: 15%;
        font-size: 32px !important;
    }
    
    .gear {
        top: 25%;
        right: 15%;
        font-size: 36px !important;
    }
    
    .code {
        bottom: 35%;
        left: 15%;
        font-size: 30px !important;
    }
    
    .mobile {
        top: 50%;
        right: 15%;
        font-size: 34px !important;
    }
    
    .database {
        bottom: 20%;
        right: 20%;
        font-size: 32px !important;
    }
    
    .cloud {
        top: 20%;
        right: 25%;
        font-size: 38px !important;
    }
    
    .document {
        top: 40%;
        left: 20%;
        font-size: 30px !important;
    }
    
    .credit-card {
        bottom: 30%;
        right: 25%;
        font-size: 32px !important;
    }
    
    .pulse {
        width: 150px !important;
        height: 150px !important;
    }
    
    /* Show scroll indicator on mobile */
    .scroll-indicator {
        display: block;
    }
    
    /* Add a subtle shadow to the header for better visibility */
    .header {
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
        /* background-color: rgba(78, 184, 192, 0.1); */
        backdrop-filter: blur(5px);
    }
    
    /* Add touch-friendly tap highlight */
    a, button {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
    }

    /* Features section mobile styles */
    .features-section {
        padding: 60px 0;
    }
    
    .features-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
        display: initial;
    }

    .features-image {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .features-row.reverse {
        flex-direction: column;
    }
    
    .features-content {
        text-align: center;
    }
    
    .features-content h2 {
        font-size: 28px;
    }
    
    .features-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-content p {
        font-size: 16px;
    }
    
    .image-container {
        height: 300px;
    }
    
    .solutions-animation, .support-animation {
        height: 300px;
    }
    
    .person-illustration {
        left: 5%;
        width: 25%;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .computer-mockup {
        width: 85%;
        height: 80%;
    }
    
    .person-1, .person-2 {
        transform: scale(0.8) translateY(-60%);
    }
    
    .person-2 {
        transform: scale(0.8) translateY(-60%) scaleX(-1);
    }
    
    .briefcase {
        width: 30px;
        height: 25px;
        right: 30%;
    }
    
    .chat-bubble {
        max-width: 100px;
    }
    
    .chat-bubble p {
        font-size: 10px;
    }

    /* Products section mobile styles */
    .products-section {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .product-card {
        height: 180px;
    }
    
    .product-icon {
        font-size: 28px;
        top: 15px;
        right: 15px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 12px;
    }
    
    .product-link {
        font-size: 12px;
        margin-top: 10px;
    }

    /* Technologies section mobile styles */
    .technologies-section {
        padding: 80px 0;
    }
    
    .technologies-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-item {
        margin-bottom: 15px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 10px;
    }
    
    .tech-name {
        font-size: 16px;
    }
    
    .tech-check {
        font-size: 16px;
        margin-right: 10px;
    }

    /* About section mobile styles */
    .about-section {
        padding: 80px 0;
    }
    
    .about-row {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-image-wrapper {
        transform: perspective(1000px) rotateY(0);
        max-width: 90%;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text {
        font-size: 16px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .about-float-item {
        display: none;
    }
    
    .about-shape-1, .about-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .about-shape-3 {
        width: 300px;
        height: 300px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .banner h1 {
        font-size: 32px; /* Increased from 28px */
    }
    
    .banner p {
        font-size: 15px; /* Increased from 13px */
    }
    
    .typing-text {
        font-size: 16px; /* Increased from 14px */
    }
    
    .logo {
        max-width: 175px; /* Increased from 120px */
    }
    
    .phone {
        font-size: 13px; /* Increased from 11px */
    }
    
    .modal-nav a {
        font-size: 24px; /* Increased from 20px */
        gap: 25px; /* Increased from 20px */
    }
    
    /* Keep only the most important icons on small mobile */
    .cloud, .document, .chart-pie {
        display: none;
    }
    
    /* Make remaining icons even larger */
    .lightbulb, .gear, .code, .mobile, .database {
        font-size: 36px !important;
    }
    
    /* Increase client counter size for emphasis */
    .counter-number {
        font-size: 36px;
    }
    
    .client-counter {
        width: 90%;
        padding: 15px;
    }

    /* Features section small mobile styles */
    .features-content h2 {
        font-size: 24px;
    }
    
    .features-content p {
        font-size: 15px;
    }
    
    .features-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .image-container {
        height: 250px;
    }
    
    .solutions-animation, .support-animation {
        height: 250px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .computer-mockup {
        width: 85%;
        height: 80%;
    }
    
    .person-1 {
        left: 25%;
        transform: scale(0.7) translateY(-70%);
    }
    
    .person-2 {
        right: 25%;
        transform: scale(0.7) translateY(-70%) scaleX(-1);
    }
    
    .briefcase {
        width: 30px;
        height: 25px;
        right: 30%;
    }
    
    .chat-bubble {
        max-width: 80px;
    }
    
    .chat-bubble p {
        font-size: 9px;
    }

    /* Products section small mobile styles */
    .products-section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .product-card {
        height: 160px;
    }
    
    .product-icon {
        font-size: 24px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .product-description {
        font-size: 11px;
    }

    /* Technologies section small mobile styles */
    .technologies-section {
        padding: 60px 0;
    }
    
    .tech-item {
        padding: 10px 15px;
        margin-bottom: 12px;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 10px;
    }
    
    .tech-name {
        font-size: 14px;
    }
    
    .tech-check {
        font-size: 16px;
        margin-right: 10px;
    }

    /* About section small mobile styles */
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-text {
        font-size: 13px;
    }
}

/* OUR GOAL SECTION STYLES */
.goal-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    position: relative;
    overflow: hidden;
}

.goal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.goal-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.goal-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.goal-title {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.goal-title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
    margin: 0 auto;
    border-radius: 2px;
    transition: width 0.8s ease;
}

.goal-header.animate .goal-title-underline {
    width: 100px;
}

.goal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.goal-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.goal-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.goal-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding: 0 20px;
}

.goal-text::before, .goal-text::after {
    content: '"';
    font-size: 60px;
    color: rgba(78, 184, 192, 0.2);
    position: absolute;
    font-family: Georgia, serif;
}

.goal-text::before {
    top: -20px;
    left: 0;
}

.goal-text::after {
    bottom: -40px;
    right: 0;
}

.goal-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.goal-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 300px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.goal-card:nth-child(1) {
    transition-delay: 0.3s;
}

.goal-card:nth-child(2) {
    transition-delay: 0.5s;
}

.goal-card:nth-child(3) {
    transition-delay: 0.7s;
}

.goal-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue));
}

.goal-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(78, 184, 192, 0.1), rgba(30, 115, 190, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 28px;
    transition: all 0.4s ease;
}

.goal-card:hover .goal-card-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(78, 184, 192, 0.2), rgba(30, 115, 190, 0.2));
}

.goal-card-title {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.goal-card-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.goal-progress {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.progress-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.progress-item:nth-child(1) {
    transition-delay: 0.4s;
}

.progress-item:nth-child(2) {
    transition-delay: 0.6s;
}

.progress-item:nth-child(3) {
    transition-delay: 0.8s;
}

.progress-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.progress-ring-circle-bg {
    stroke: rgba(78, 184, 192, 0.1);
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
}

.progress-ring-circle {
    stroke: url(#progress-gradient);
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 2s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
}

.progress-label {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

/* Goal section background elements */
.goal-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.goal-shape {
    position: absolute;
    opacity: 0.07;
}

.goal-shape-1 {
    top: 5%;
    left: 5%;
    width: 250px;
    height: 250px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--primary-teal);
    animation: morphGoalShape 15s linear infinite alternate;
}

.goal-shape-2 {
    bottom: 5%;
    right: 5%;
    width: 200px;
    height: 200px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background-color: var(--primary-blue);
    animation: morphGoalShape 12s linear infinite alternate-reverse;
}

.goal-shape-3 {
    top: 40%;
    left: 60%;
    width: 180px;
    height: 180px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    background-color: var(--accent-purple);
    animation: morphGoalShape 18s linear infinite;
}

.goal-shape-4 {
    top: 60%;
    left: 10%;
    width: 150px;
    height: 150px;
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    background-color: var(--accent-coral);
    animation: morphGoalShape 20s linear infinite reverse;
}

@keyframes morphGoalShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30%
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Goal section floating elements */
.goal-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.goal-float-item {
    position: absolute;
    opacity: 0;
    animation: goalFloat 10s linear infinite, goalFadeIn 1s ease forwards;
}

.goal-float-1 {
    top: 15%;
    left: 15%;
    font-size: 30px;
    color: var(--primary-teal);
    animation-delay: 0.5s;
}

.goal-float-2 {
    top: 25%;
    right: 15%;
    font-size: 35px;
    color: var(--primary-blue);
    animation-delay: 1.5s;
}

.goal-float-3 {
    bottom: 20%;
    left: 20%;
    font-size: 28px;
    color: var(--accent-coral);
    animation-delay: 2.5s;
}

.goal-float-4 {
    bottom: 30%;
    right: 15%;
    font-size: 32px;
    color: var(--accent-purple);
    animation-delay: 3.5s;
}

.goal-float-5 {
    top: 50%;
    left: 50%;
    font-size: 36px;
    color: var(--primary-blue);
    animation-delay: 4.5s;
}

@keyframes goalFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -10px) rotate(5deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-15px, -10px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes goalFadeIn {
    to {
        opacity: 0.6;
    }
}

/* Responsive styles for goal section */
@media (max-width: 1024px) {
    .goal-section {
        padding: 100px 0;
    }
    
    .goal-title {
        font-size: 40px;
    }
    
    .goal-text {
        font-size: 16px;
    }
    
    .goal-cards {
        gap: 20px;
    }
    
    .goal-card {
        width: 280px;
        padding: 25px;
    }
    
    .goal-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .goal-card-title {
        font-size: 20px;
    }
    
    .goal-progress {
        gap: 40px;
    }
    
    .progress-circle {
        width: 100px;
        height: 100px;
    }
    
    .progress-ring {
        width: 100px;
        height: 100px;
    }
    
    .progress-ring-circle-bg, .progress-ring-circle {
        r: 40;
        cx: 50;
        cy: 50;
        stroke-dasharray: 251;
    }
    
    .progress-ring-circle {
        stroke-dashoffset: 251;
    }
    
    .progress-text {
        font-size: 20px;
    }
    
    .progress-label {
        font-size: 16px;
    }
    
    .goal-shape-1, .goal-shape-2 {
        width: 180px;
        height: 180px;
    }
    
    .goal-shape-3, .goal-shape-4 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .goal-section {
        padding: 80px 0;
    }
    
    .goal-title {
        font-size: 36px;
    }
    
    .goal-text {
        font-size: 16px;
        padding: 0;
    }
    
    .goal-text::before, .goal-text::after {
        font-size: 40px;
    }
    
    .goal-text::before {
        top: -15px;
        left: -5px;
    }
    
    .goal-text::after {
        bottom: -30px;
        right: -5px;
    }
    
    .goal-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .goal-card {
        width: 100%;
        max-width: 320px;
    }
    
    .goal-progress {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 60px;
    }
    
    .goal-float-item {
        font-size: 24px !important;
    }
    
    .goal-shape-1, .goal-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .goal-shape-3, .goal-shape-4 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .goal-section {
        padding: 60px 0;
    }
    
    .goal-title {
        font-size: 30px;
    }
    
    .goal-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .goal-text::before, .goal-text::after {
        font-size: 30px;
    }
    
    .goal-card {
        padding: 20px;
    }
    
    .goal-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .goal-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .goal-card-text {
        font-size: 14px;
    }
    
    .progress-circle {
        width: 90px;
        height: 90px;
    }
    
    .progress-ring {
        width: 90px;
        height: 90px;
    }
    
    .progress-ring-circle-bg, .progress-ring-circle {
        r: 35;
        cx: 45;
        cy: 45;
        stroke-dasharray: 220;
    }
    
    .progress-ring-circle {
        stroke-dashoffset: 220;
    }
    
    .progress-text {
        font-size: 18px;
    }
    
    .progress-label {
        font-size: 14px;
    }
    
    .goal-float-item {
        font-size: 20px !important;
    }
    
    .goal-shape-1, .goal-shape-2, .goal-shape-3, .goal-shape-4 {
        width: 100px;
        height: 100px;
    }
}




        /* Infinite Logo Carousel */
        .logo-carousel-section {
            padding: 60px 0;
            /* background: linear-gradient(135deg, #f6f9fc, #eef2f7); */
            background: linear-gradient(135deg, #e4ecf7 0%, #f5f7fa 100%);
            overflow: hidden;
            position: relative;
        }

        .logo-carousel-section .section-title h2 {
            font-size: 48px;
            color: var(--primary-blue);
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }
        
        .logo-carousel-section::before,
        .logo-carousel-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 100%;
            top: 0;
            z-index: 2;
            pointer-events: none;
        }
        
        .logo-carousel-section::before {
            left: 0;
            background: linear-gradient(to right, rgba(246, 249, 252, 1), rgba(246, 249, 252, 0));
        }
        
        .logo-carousel-section::after {
            /* right: 0;
            background: linear-gradient(to left, rgba(246, 249, 252, 1), rgba(246, 249, 252, 0)); */
        }
        
        .logo-track {
            display: flex;
            animation: scroll 30s linear infinite;
            width: calc(250px * 14); /* Width of each logo item * number of items */
        }
        
        .logo-track:hover {
            animation-play-state: paused;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 7)); /* Half the width of the track */
            }
        }
        
        .logo-item {
            width: 350px;
            height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .logo-item:hover {
            transform: scale(1.1);
        }
        
        .logo-image {
            width: 280px;
            height: 160px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .logo-item:hover .logo-image {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .logo-image img {
            max-width: 70%;
            max-height: 70%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .logo-item:hover .logo-image img {
            transform: scale(1);
        }
        
        .logo-name {
            font-weight: 600;
            /* color: #2c3e50; */
            color: #d9d9d9;
            font-size: 0.9rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .logo-item:hover .logo-name {
            color: #3498db;
        }
        
        /* Glowing effect for logos */
        .logo-image::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
        
        .logo-item:hover .logo-image::after {
            left: 100%;
            top: 100%;
        }




        /* Services Section Styles */
        .ser-ind-container {
                max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
        }

        .ser-ind-section-title {
                text-align: center;
    margin-bottom: 50px;
    position: relative;
        }
        .ser-ind-section-title h2 {
                font-size: 2.5rem;
            color: #2c3e50;
            display: inline-block;
            position: relative;
        }

        .ser-ind-section-title h2::after {
                content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 2px;
        }

        .ser-ind-services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4ecf7 100%);
        }
        
        .ser-ind-services-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }
        
        .ser-ind-service-col {
            flex: 1;
            min-width: 300px;
            padding: 0 15px;
        }
        
        .ser-ind-service-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .ser-ind-service-image {
            position: relative;
            width: 280px;
            height: 280px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ser-ind-circle-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(132, 94, 247, 0.1);
            z-index: 1;
            animation: ser-ind-pulse 4s infinite ease-in-out;
        }
        
        @keyframes ser-ind-pulse {
            0% { transform: scale(0.95); opacity: 0.7; }
            50% { transform: scale(1.05); opacity: 0.9; }
            100% { transform: scale(0.95); opacity: 0.7; }
        }
        
        .ser-ind-service-icon-container {
            position: relative;
            z-index: 2;
            width: 200px;
            height: 200px;
        }
        
        .ser-ind-service-icon {
            font-size: 3rem;
            color: #6c5ce7;
            animation: ser-ind-float 4s infinite ease-in-out;
            position: absolute;
        }
        
        @keyframes ser-ind-float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }
        
        .ser-ind-service-icon.ser-ind-gear-1 {
            top: 20px;
            left: 30px;
            font-size: 2.5rem;
            color: #8c7ae6;
            animation-delay: 0.2s;
        }
        
        .ser-ind-service-icon.ser-ind-gear-2 {
            top: 60px;
            right: 40px;
            font-size: 3.5rem;
            color: #9c88ff;
            animation-delay: 0.4s;
            animation-duration: 5s;
        }
        
        .ser-ind-service-icon.ser-ind-search {
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 4rem;
            color: #a29bfe;
            animation-delay: 0.6s;
            animation-duration: 6s;
        }
        
        .ser-ind-service-icon.ser-ind-screen {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4.5rem;
            color: #6c5ce7;
            z-index: -1;
        }
        
        .ser-ind-service-icon.ser-ind-mobile {
            bottom: 40px;
            right: 30px;
            font-size: 2rem;
            color: #e84393;
            animation-delay: 0.8s;
        }
        
        .ser-ind-service-content {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .ser-ind-service-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
        }
        
        .ser-ind-service-content h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #2c3e50 !important;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .ser-ind-service-content h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, #6c5ce7, #a29bfe);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .ser-ind-service-content:hover h3::after {
            width: 80px;
        }
        
        .ser-ind-service-list {
            list-style: none;
            color: #000000;
        }
        
        .ser-ind-service-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
        }
        
        .ser-ind-service-list li:hover {
            transform: translateX(5px);
        }
        
        .ser-ind-service-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #6c5ce7;
            transition: transform 0.3s ease;
        }
        
        .ser-ind-service-list li:hover::before {
            transform: scale(1.2);
        }
        
        /* Industries Section */
        .ser-ind-industries-section {
            background: linear-gradient(135deg, #e4ecf7 0%, #f5f7fa 100%);
            padding: 80px 0;
        }
        
        .ser-ind-industries-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 40px;
            gap: 20px;
        }
        
        .ser-ind-industry-col {
            flex: 1;
            min-width: 300px;
            padding: 0 15px;
        }
        
        .ser-ind-industry-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .ser-ind-industry-image {
            position: relative;
            width: 280px;
            height: 280px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .ser-ind-industry-icon-container {
            position: relative;
            z-index: 2;
            width: 200px;
            height: 200px;
        }
        
        .ser-ind-industry-icon {
            font-size: 3rem;
            color: #2d3436;
            animation: float 4s infinite ease-in-out;
            position: absolute;
        }
        
        .ser-ind-industry-icon.ser-ind-gear-big {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 5rem;
            color: #2c3e50;
            animation-duration: 8s;
        }
        
        .ser-ind-industry-icon.ser-ind-gear-1 {
            top: 20px;
            left: 30px;
            font-size: 2.5rem;
            color: #3b5999;
            animation-delay: 0.2s;
        }
        
        .ser-ind-industry-icon.ser-ind-gear-2 {
            bottom: 20px;
            right: 30px;
            font-size: 3rem;
            color: #2980b9;
            animation-delay: 0.4s;
            animation-duration: 5s;
        }
        
        .ser-ind-industry-icon.ser-ind-person-1 {
            bottom: 20px;
            left: 40px;
            font-size: 2rem;
            color: #e17055;
            animation-delay: 0.6s;
        }
        
        .ser-ind-industry-icon.ser-ind-person-2 {
            top: 30px;
            right: 40px;
            font-size: 2rem;
            color: #fdcb6e;
            animation-delay: 0.8s;
        }
        
        .ser-ind-industry-icon.ser-ind-wrench {
            top: 50%;
            right: 30px;
            font-size: 2rem;
            color: #0984e3;
            animation-delay: 1s;
        }
        
        .ser-ind-industry-content {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .ser-ind-industry-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(41, 128, 185, 0.15);
        }
        
        .ser-ind-industry-content h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            color: #2c3e50 !important;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .ser-ind-industry-content h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, #2980b9, #6dd5fa);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .ser-ind-industry-content:hover h3::after {
            width: 80px;
        }
        
        .ser-ind-industry-list {
            list-style: none;
            column-count: 2;
            color: #000000;
        }
        
        .ser-ind-industry-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
            break-inside: avoid;
        }
        
        .ser-ind-industry-list li:hover {
            transform: translateX(5px);
        }
        
        .ser-ind-industry-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #2980b9;
            transition: transform 0.3s ease;
        }
        
        .ser-ind-industry-list li:hover::before {
            transform: scale(1.2);
        }





        /* Get Started Section */
        .ser-ind-get-started-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            overflow: hidden;
        }
        
        .ser-ind-get-started-container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        
        .ser-ind-get-started-content {
            flex: 1;
            min-width: 300px;
            padding: 0 20px;
            text-align: center;
        }
        
        .ser-ind-get-started-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }
        
        .ser-ind-get-started-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: #fff;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .ser-ind-get-started-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .ser-ind-get-started-btn {
            display: inline-block;
            padding: 15px 40px;
            background: white;
            color: #764ba2;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .ser-ind-get-started-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: 0 50%;
            transition: transform 0.5s ease;
        }
        
        .ser-ind-get-started-btn:hover {
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .ser-ind-get-started-btn:hover::before {
            transform: scaleX(1);
        }
        
        .ser-ind-get-started-illustration {
            flex: 1;
            min-width: 300px;
            padding: 0 20px;
            position: relative;
            height: 400px;
        }
        
        .ser-ind-illustration-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        /* Animated elements */
        .ser-ind-animated-element {
            position: absolute;
            transition: all 0.3s ease;
        }
        
        .ser-ind-runner {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 8rem;
            color: rgba(255, 255, 255, 0.9);
            animation: ser-ind-run 3s infinite ease-in-out;
        }
        
        @keyframes ser-ind-run {
            0% { transform: translateX(-50%) rotate(0deg); }
            25% { transform: translateX(-40%) rotate(5deg) scale(1.05); }
            50% { transform: translateX(-50%) rotate(0deg); }
            75% { transform: translateX(-60%) rotate(-5deg) scale(1.05); }
            100% { transform: translateX(-50%) rotate(0deg); }
        }
        
        .ser-ind-briefcase {
            bottom: 20px;
            right: 20%;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.8);
            animation: ser-ind-float-briefcase 4s infinite ease-in-out;
        }
        
        @keyframes ser-ind-float-briefcase {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }
        
        .ser-ind-cloud-1 {
            top: 20%;
            left: 10%;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.6);
            animation: ser-ind-float-cloud 15s infinite linear;
        }
        
        .ser-ind-cloud-2 {
            top: 40%;
            right: 15%;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.5);
            animation: ser-ind-float-cloud 20s infinite linear;
            animation-delay: 2s;
        }
        
        .ser-ind-cloud-3 {
            top: 15%;
            right: 30%;
            font-size: 4rem;
            color: rgba(255, 255, 255, 0.4);
            animation: ser-ind-float-cloud 18s infinite linear;
            animation-delay: 5s;
        }
        
        @keyframes ser-ind-float-cloud {
            0% { transform: translateX(-100px); }
            100% { transform: translateX(calc(100vw + 100px)); }
        }
        
        .ser-ind-rocket {
            top: 30%;
            left: 20%;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.7);
            animation: ser-ind-rocket-move 8s infinite ease-in-out;
        }
        
        @keyframes ser-ind-rocket-move {
            0% { transform: translate(0, 0) rotate(45deg); }
            50% { transform: translate(50px, -50px) rotate(45deg); }
            100% { transform: translate(0, 0) rotate(45deg); }
        }
        
        .ser-ind-lightbulb {
            top: 15%;
            right: 25%;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.8);
            animation: ser-ind-pulse-light 3s infinite ease-in-out;
        }
        
        @keyframes ser-ind-pulse-light {
            0% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
            100% { opacity: 0.5; transform: scale(1); }
        }
        
        .ser-ind-chart {
            bottom: 30%;
            left: 15%;
            font-size: 2.5rem;
            color: rgba(255, 255, 255, 0.7);
            animation: ser-ind-float 5s infinite ease-in-out;
            animation-delay: 1s;
        }
        
        /* Background elements */
        .ser-ind-bg-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .ser-ind-bg-shape-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            left: -100px;
        }
        
        .ser-ind-bg-shape-2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            right: -50px;
        }
        
        .ser-ind-bg-shape-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 30%;
            transform: translateY(-50%);
        }
        
        /* Responsive styles for Get Started section */
        @media (max-width: 992px) {
            .ser-ind-get-started-container {
                flex-direction: column;
            }
            
            .ser-ind-get-started-content, 
            .ser-ind-get-started-illustration {
                min-width: 100%;
                margin-bottom: 40px;
            }
            
            .ser-ind-get-started-illustration {
                height: 300px;
                order: -1;
            }
            
            .ser-ind-get-started-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .ser-ind-get-started-section {
                padding: 80px 0;
            }
            
            .ser-ind-get-started-title {
                font-size: 2.2rem;
            }
            
            .ser-ind-get-started-text {
                font-size: 1rem;
            }
            
            .ser-ind-get-started-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .ser-ind-runner {
                font-size: 6rem;
            }
            
            .ser-ind-briefcase {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 480px) {
            .ser-ind-get-started-section {
                padding: 60px 0;
            }
            
            .ser-ind-get-started-title {
                font-size: 1.8rem;
            }
            
            .ser-ind-get-started-illustration {
                height: 250px;
            }
            
            .ser-ind-runner {
                font-size: 5rem;
            }
        }
        





        /* Footer Styles */
        .ser-ind-footer {
            background: linear-gradient(135deg, #2c3e50 0%, #1a2a3a 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .ser-ind-footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }
        
        .ser-ind-footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 70px;
        }
        
        .ser-ind-footer-wave .ser-ind-shape-fill {
            fill: #f5f7fa;
        }
        
        .ser-ind-footer-content {
            padding: 60px 0 60px;
            position: relative;
            z-index: 1;
        }
        
        .ser-ind-footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .ser-ind-footer-col {
            flex: 1;
            min-width: 250px;
        }
        
        .ser-ind-footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: #fff;
        }
        
        .ser-ind-footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            bottom: 0;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .ser-ind-footer-col:hover h3::after {
            width: 70px;
        }
        
        .ser-ind-footer-about p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: #cbd5e0;
        }
        
        .ser-ind-footer-links ul {
            list-style: none;
        }
        
        .ser-ind-footer-links li {
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .ser-ind-footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .ser-ind-footer-links a i {
            margin-right: 10px;
            color: #3498db;
            transition: all 0.3s ease;
        }
        
        .ser-ind-footer-links a:hover {
            color: #3498db;
            transform: translateX(5px);
        }
        
        .ser-ind-footer-links a:hover i {
            transform: scale(1.2);
        }
        
        .ser-ind-footer-contact-info {
            margin-bottom: 20px;
        }
        
        .ser-ind-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        
        .ser-ind-contact-item:hover {
            transform: translateX(5px);
        }
        
        .ser-ind-contact-icon {
            margin-right: 15px;
            color: #3498db;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .ser-ind-contact-item:hover .ser-ind-contact-icon {
            transform: scale(1.2);
        }
        
        .ser-ind-contact-text {
            color: #cbd5e0;
            line-height: 1.6;
        }
        
        .ser-ind-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .ser-ind-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .ser-ind-social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #3498db, #2ecc71);
            z-index: -1;
            transform: scale(0);
            transition: all 0.3s ease;
            border-radius: 50%;
        }
        
        .ser-ind-social-icon:hover::before {
            transform: scale(1);
        }
        
        .ser-ind-social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .ser-ind-newsletter-form {
            margin-top: 20px;
        }
        
        .ser-ind-form-group {
            position: relative;
            margin-bottom: 20px;
        }
        
        .ser-ind-form-control {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .ser-ind-form-control:focus {
            outline: none;
            border-color: var(--primary-teal);
            box-shadow: 0 0 0 3px rgba(78, 184, 192, 0.1);
        }
        
        .ser-ind-form-control::placeholder {
            color: #a0aec0;
        }
        
        .ser-ind-submit-btn {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .ser-ind-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .ser-ind-submit-btn:active {
            transform: translateY(-1px);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        }
        
        .ser-ind-footer-bottom {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
        }
        
        .ser-ind-footer-bottom p {
            color: #a0aec0;
            font-size: 0.9rem;
        }
        
        .ser-ind-footer-bottom a {
            color: #3498db;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .ser-ind-footer-bottom a:hover {
            color: #2ecc71;
        }
        
        /* Animated background elements */
        .ser-ind-footer-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
        
        .ser-ind-bg-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
        }
        
        .ser-ind-bg-element-1 {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
            animation: ser-ind-float-slow 15s infinite ease-in-out;
        }
        
        .ser-ind-bg-element-2 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: -100px;
            animation: ser-ind-float-slow 12s infinite ease-in-out;
            animation-delay: 2s;
        }
        
        .ser-ind-bg-element-3 {
            width: 150px;
            height: 150px;
            bottom: -50px;
            left: 30%;
            animation: ser-ind-float-slow 10s infinite ease-in-out;
            animation-delay: 1s;
        }
        
        @keyframes ser-ind-float-slow {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(20px, -20px) rotate(5deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }
        
        /* Responsive Styles for Services and Industries */
        @media (max-width: 992px) {
            .ser-ind-service-col, .ser-ind-industry-col {
                min-width: 100%;
                margin-bottom: 40px;
            }
            
            .ser-ind-service-image, .ser-ind-industry-image {
                width: 240px;
                height: 240px;
            }
            
            .ser-ind-service-icon-container, .ser-ind-industry-icon-container {
                width: 180px;
                height: 180px;
            }
            
            .ser-ind-logo-item {
                width: 200px;
            }
            
            .ser-ind-logo-track {
                width: calc(200px * 14);
            }
            
            @keyframes ser-ind-scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-200px * 7));
                }
            }
            
            .ser-ind-footer-col {
                min-width: 45%;
            }
        }
        
        @media (max-width: 768px) {
            .ser-ind-service-image, .ser-ind-industry-image {
                width: 200px;
                height: 200px;
            }
            
            .ser-ind-service-icon-container, .ser-ind-industry-icon-container {
                width: 160px;
                height: 160px;
            }
            
            .ser-ind-service-icon, .ser-ind-industry-icon {
                font-size: 2.5rem;
            }
            
            .ser-ind-service-icon.screen {
                font-size: 3.5rem;
            }
            
            .ser-ind-service-icon.gear-2, .ser-ind-industry-icon.gear-big {
                font-size: 3rem;
            }
            
            .ser-ind-industry-list {
                column-count: 1;
            }
            
            .ser-ind-logo-item {
                width: 180px;
            }
            
            .ser-ind-logo-track {
                width: calc(180px * 14);
            }
            
            @keyframes ser-ind-scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-180px * 7));
                }
            }
            
            .ser-ind-footer-col {
                min-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .ser-ind-service-image, .ser-ind-industry-image {
                width: 180px;
                height: 180px;
            }
            
            .ser-ind-service-icon-container, .ser-ind-industry-icon-container {
                width: 140px;
                height: 140px;
            }
            
            .ser-ind-service-content h3, .ser-ind-industry-content h3 {
                font-size: 1.5rem;
            }
            
            .ser-ind-logo-item {
                width: 160px;
            }
            
            .ser-ind-logo-track {
                width: calc(160px * 14);
            }
            
            @keyframes ser-ind-scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-160px * 7));
                }
            }
        }
        
        /* Animation for services and industries sections */
        @keyframes ser-ind-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes ser-ind-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .ser-ind-service-image-container, .ser-ind-industry-image-container {
            animation: ser-ind-fadeInLeft 0.8s ease forwards;
            opacity: 0;
        }
        
        .ser-ind-service-content, .ser-ind-industry-content {
            animation: ser-ind-fadeInRight 0.8s ease forwards;
            opacity: 0;
            animation-delay: 0.3s;
        }
        
        /* Footer animations */
        @keyframes ser-ind-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ser-ind-footer-col {
            animation: ser-ind-fadeInUp 0.8s ease forwards;
            opacity: 0;
        }
        
        .ser-ind-footer-col:nth-child(1) { animation-delay: 0.1s; }
        .ser-ind-footer-col:nth-child(2) { animation-delay: 0.3s; }
        .ser-ind-footer-col:nth-child(3) { animation-delay: 0.5s; }
        .ser-ind-footer-col:nth-child(4) { animation-delay: 0.7s; }
        



        .ser-ind-container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 20px;
        }

/* Contact Modal Styles */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150%);
    width: 95%;
    max-width: 1200px;
    height: 85vh;
    max-height: 700px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-modal.active .contact-modal-content {
    transform: translate(-50%, -50%);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, transform 0.2s ease;
}

.contact-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.contact-modal-body {
    display: flex;
    height: 100%;
}

.contact-map-section {
    flex: 1;
    background: #f5f5f5;
}

#contact-map {
    width: 100%;
    height: 100%;
}

#contact-map iframe {
    border-radius: 20px 0 0 20px;
}

.contact-info-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    overflow-y: auto;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-header h3 {
    font-size: 1.2rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.address-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 3px;
    min-width: 20px;
}

.address-item p {
    margin: 0;
    line-height: 1.4;
    color: #333;
}

.contact-form-section h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(78, 184, 192, 0.1);
}

.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 115, 190, 0.3);
}

.contact-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 115, 190, 0.3);
}

/* Responsive Design for Contact Modal */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 98%;
        height: 90vh;
        max-height: none;
    }
    
    .contact-modal-body {
        flex-direction: column;
    }
    
    .contact-map-section {
        height: 40%;
    }
    
    #contact-map iframe {
        border-radius: 20px 20px 0 0;
    }
    
    .contact-info-section {
        height: 60%;
        padding: 20px;
        gap: 20px;
        overflow-y: auto;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        gap: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
    
    .contact-info-section {
        padding: 15px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    #contact-map iframe {
        border-radius: 0;
    }
}




