/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1889c1;
    --secondary-color: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #888888;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(24, 137, 193, 0.1);
    --shadow-medium: 0 4px 20px rgba(24, 137, 193, 0.15);
    --gradient-primary: linear-gradient(135deg, #1889c1 0%, #0f6b96 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--secondary-color);
}

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

/* Header and Navigation */
.header {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    margin-right: 12px;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Home Hero Banner */
.home-hero-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 40px 0 20px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.home-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}


.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s ease-in-out infinite;
    position: relative;
}

.btn-whatsapp-hero:hover {
    background: #20bd5a;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.85);
    }
    70% {
        box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Home Hero Graphics - Modern Network Design */
.home-hero-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
    padding: 20px;
    overflow: hidden;
}

.home-graphic-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Central Innovation Hub */
.innovation-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hub-core {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    animation: hubPulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hub-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 110px;
    height: 110px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ringRotate 8s linear infinite;
}

/* Service Nodes */
.service-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.service-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    animation: nodeFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-node i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-node .node-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.service-node:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.node-1 {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.25);
    border-color: rgba(124, 58, 237, 0.5);
}

.node-1 i {
    font-size: 1.8rem;
}

.node-2 {
    top: 40%;
    left: 20px;
    animation-delay: 0.8s;
}

.node-3 {
    top: 40%;
    right: 20px;
    animation-delay: 1.6s;
}

.node-4 {
    bottom: 30px;
    left: 60px;
    animation-delay: 2.4s;
}

.node-5 {
    bottom: 30px;
    right: 60px;
    animation-delay: 3.2s;
}

/* Network Grid */
.network-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.line-horizontal {
    width: 300px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.line-vertical {
    width: 2px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.line-diagonal-1 {
    width: 250px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    animation-delay: 2s;
}

.line-diagonal-2 {
    width: 250px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation-delay: 3s;
}

/* Data Particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.particle-4 {
    bottom: 35%;
    right: 15%;
    animation-delay: 3s;
}

.particle-5 {
    top: 60%;
    left: 10%;
    animation-delay: 4s;
}

.particle-6 {
    top: 70%;
    right: 30%;
    animation-delay: 5s;
}

/* Glow Effects */
.glow-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 60%;
    animation-delay: 6s;
}

/* Old Service Icons - Remove these */
.web-design-icon {
    top: -150px;
    left: -25px;
    animation-delay: 0s;
}

.responsive-icon {
    top: -106px;
    right: -106px;
    animation-delay: 0.5s;
}

.java-icon {
    top: -25px;
    right: -150px;
    animation-delay: 1s;
}

.php-icon {
    bottom: -106px;
    right: -106px;
    animation-delay: 1.5s;
}

.dotnet-icon {
    bottom: -150px;
    left: -25px;
    animation-delay: 2s;
}

.sharepoint-icon {
    bottom: -106px;
    left: -106px;
    animation-delay: 2.5s;
}

.psd-icon {
    top: -25px;
    left: -150px;
    animation-delay: 3s;
}

.mobile-design-icon {
    top: -106px;
    left: -106px;
    animation-delay: 3.5s;
}

/* Elegant Connection Lines */
.services-hub .connection-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    animation: homeLineGlow 3s ease-in-out infinite alternate;
    border-radius: 1px;
}

/* Connection lines to icons inside circle-4 */
.line-1 {
    width: 85px;
    height: 2px;
    top: -75px;
    left: -12px;
    transform: rotate(0deg);
}

.line-2 {
    width: 85px;
    height: 2px;
    top: -53px;
    right: -53px;
    transform: rotate(45deg);
}

.line-3 {
    width: 85px;
    height: 2px;
    top: -12px;
    right: -75px;
    transform: rotate(90deg);
}

.line-4 {
    width: 85px;
    height: 2px;
    bottom: -53px;
    right: -53px;
    transform: rotate(135deg);
}

.line-5 {
    width: 85px;
    height: 2px;
    bottom: -75px;
    left: -12px;
    transform: rotate(180deg);
}

.line-6 {
    width: 85px;
    height: 2px;
    bottom: -53px;
    left: -53px;
    transform: rotate(225deg);
}

.line-7 {
    width: 85px;
    height: 2px;
    top: -12px;
    left: -75px;
    transform: rotate(270deg);
}

.line-8 {
    width: 85px;
    height: 2px;
    top: -53px;
    left: -53px;
    transform: rotate(315deg);
}

/* Professional Animated Circles */
.home-graphic-container .animated-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: homeCircleRotate 12s linear infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.3);
    animation-duration: 20s;
}

.circle-2 {
    width: 260px;
    height: 260px;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.2);
    animation-duration: 25s;
    animation-direction: reverse;
}

.circle-3 {
    width: 320px;
    height: 320px;
    border-color: rgba(255, 255, 255, 0.15);
    animation-duration: 30s;
}

.circle-4 {
    width: 380px;
    height: 380px;
    border-style: dotted;
    border-width: 3px;
    border-color: rgba(255, 255, 255, 0.1);
    animation-duration: 35s;
    animation-direction: reverse;
}

/* Technology Accent Elements */
.tech-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tech-symbols .tech-item {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    animation: techFloat 8s ease-in-out infinite;
}

.tech-1 {
    top: 30px;
    left: 60px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.tech-2 {
    top: 30px;
    right: 60px;
    animation-delay: 2s;
    transform: rotate(15deg);
}

.tech-3 {
    bottom: 30px;
    left: 60px;
    animation-delay: 4s;
    transform: rotate(15deg);
}

.tech-4 {
    bottom: 30px;
    right: 60px;
    animation-delay: 6s;
    transform: rotate(-15deg);
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Special styling for form submit buttons */
button.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

button.btn-primary:hover {
    background-color: #0f6b96;
    border-color: #0f6b96;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 137, 193, 0.3);
}

button.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(24, 137, 193, 0.2);
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    font-size: 8rem;
    opacity: 0.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Services Overview */
.services-overview {
    padding: 60px 0;
    background-color: #f8f9fa;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--secondary-color);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-tab i {
    font-size: 1.1rem;
}

.service-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0f9ff;
}

.service-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(24, 137, 193, 0.3);
}

.service-tab[data-tab="data-ai"].active {
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    border-color: #7c3aed;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Tab Content */
.service-tab-content {
    position: relative;
}

.service-panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.service-panel.active {
    display: block;
}

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

.service-category {
    background-color: var(--secondary-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.category-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.category-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
}

.service-item {
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-item i {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--secondary-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 30px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo a:hover img {
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
    position: relative;
}

.visitor-counter {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

.visitor-counter i {
    margin-right: 0.3rem;
}

/* Page Styles */
.page-header {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Contact Hero Banner */
.contact-hero-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 50px 0 30px;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.highlight-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Graphics */
.contact-graphic-container {
    position: relative;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.communication-hub {
    position: relative;
    width: 100px;
    height: 100px;
}

.hub-center {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-center i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
}

.floating-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.email-icon {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.phone-icon {
    top: 50%;
    right: -65px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.chat-icon {
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.location-icon {
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.line-1 {
    width: 2px;
    height: 45px;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.line-2 {
    width: 45px;
    height: 2px;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.line-3 {
    width: 2px;
    height: 45px;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.line-4 {
    width: 45px;
    height: 2px;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.animated-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

.circle-1 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.circle-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

/* Animations */
@keyframes hubPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes lineGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes circleRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Portfolio Hero Banner */
.portfolio-hero-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 50px 0 30px;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.portfolio-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.portfolio-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.portfolio-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.portfolio-hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.portfolio-hero-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.portfolio-graphic-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-hub {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.portfolio-hub .hub-center {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: portfolioPulse 3s ease-in-out infinite;
}

.portfolio-hub .hub-center i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.portfolio-hub .floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: portfolioFloat 4s ease-in-out infinite;
}

.portfolio-hub .floating-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.web-icon {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.mobile-icon {
    top: -45px;
    right: -65px;
    animation-delay: 0.5s;
}

.ecommerce-icon {
    top: 45px;
    right: -65px;
    animation-delay: 1s;
}

.design-icon {
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.database-icon {
    top: 45px;
    left: -65px;
    animation-delay: 2s;
}

.analytics-icon {
    top: -45px;
    left: -65px;
    animation-delay: 2.5s;
}

.portfolio-hub .connection-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    height: 2px;
    animation: portfolioLineGlow 2s ease-in-out infinite alternate;
}

.line-1 {
    width: 65px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    animation-delay: 0s;
}

.line-2 {
    width: 65px;
    top: 15%;
    right: 10%;
    transform: translate(50%, -50%) rotate(-35deg);
    animation-delay: 0.5s;
}

.line-3 {
    width: 65px;
    top: 85%;
    right: 10%;
    transform: translate(50%, -50%) rotate(35deg);
    animation-delay: 1s;
}

.line-4 {
    width: 65px;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(90deg);
    animation-delay: 1.5s;
}

.line-5 {
    width: 65px;
    top: 85%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-35deg);
    animation-delay: 2s;
}

.line-6 {
    width: 65px;
    top: 15%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(35deg);
    animation-delay: 2.5s;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.project-card {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}

.project-card .card-icon i {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

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

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: 20%;
    animation-delay: 4s;
}

.portfolio-hero-graphics .animated-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

.portfolio-hero-graphics .circle-1 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.portfolio-hero-graphics .circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.portfolio-hero-graphics .circle-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.portfolio-hero-graphics .circle-4 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 50s;
    animation-direction: reverse;
}

/* Vision & Mission Hero Banner */
.vision-mission-hero-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 50px 0 30px;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.vision-mission-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-mission-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.vision-mission-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.vision-mission-hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.vision-mission-hero-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.vision-mission-graphic-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-mission-hub {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.vision-mission-hub .hub-center {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: visionMissionPulse 3s ease-in-out infinite;
}

.vision-mission-hub .hub-center i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.vision-mission-hub .floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: visionMissionFloat 4s ease-in-out infinite;
}

.vision-mission-hub .floating-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.vision-icon {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.mission-icon {
    top: -45px;
    right: -65px;
    animation-delay: 0.5s;
}

.values-icon {
    top: 45px;
    right: -65px;
    animation-delay: 1s;
}

.goals-icon {
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.innovation-icon {
    top: 45px;
    left: -65px;
    animation-delay: 2s;
}

.growth-icon {
    top: -45px;
    left: -65px;
    animation-delay: 2.5s;
}

.vision-mission-hub .connection-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    height: 2px;
    animation: visionMissionLineGlow 2s ease-in-out infinite alternate;
}

.vision-mission-hub .line-1 {
    width: 65px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    animation-delay: 0s;
}

.vision-mission-hub .line-2 {
    width: 65px;
    top: 15%;
    right: 10%;
    transform: translate(50%, -50%) rotate(-35deg);
    animation-delay: 0.5s;
}

.vision-mission-hub .line-3 {
    width: 65px;
    top: 85%;
    right: 10%;
    transform: translate(50%, -50%) rotate(35deg);
    animation-delay: 1s;
}

.vision-mission-hub .line-4 {
    width: 65px;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(90deg);
    animation-delay: 1.5s;
}

.vision-mission-hub .line-5 {
    width: 65px;
    top: 85%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-35deg);
    animation-delay: 2s;
}

.vision-mission-hub .line-6 {
    width: 65px;
    top: 15%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(35deg);
    animation-delay: 2.5s;
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.symbol-item {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: symbolFloat 5s ease-in-out infinite;
}

.symbol-item i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.symbol-1 {
    top: 5%;
    right: 25%;
    animation-delay: 0s;
}

.symbol-2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2.5s;
}

.symbol-3 {
    top: 70%;
    right: 5%;
    animation-delay: 5s;
}

.vision-mission-hero-graphics .animated-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

.vision-mission-hero-graphics .circle-1 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.vision-mission-hero-graphics .circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.vision-mission-hero-graphics .circle-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.vision-mission-hero-graphics .circle-4 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 50s;
    animation-direction: reverse;
}

/* About Hero Banner */
.about-hero-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 50px 0 30px;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.about-hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-hero-graphics {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.about-graphic-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hub {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 10;
}

.about-hub .hub-center {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: aboutPulse 3s ease-in-out infinite;
}

.about-hub .hub-center i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.about-hub .floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: aboutFloat 4s ease-in-out infinite;
}

.about-hub .floating-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.team-icon {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.innovation-icon {
    top: -45px;
    right: -65px;
    animation-delay: 0.5s;
}

.quality-icon {
    top: 45px;
    right: -65px;
    animation-delay: 1s;
}

.experience-icon {
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.excellence-icon {
    top: 45px;
    left: -65px;
    animation-delay: 2s;
}

.growth-icon {
    top: -45px;
    left: -65px;
    animation-delay: 2.5s;
}

.about-hub .connection-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    height: 2px;
    animation: aboutLineGlow 2s ease-in-out infinite alternate;
}

.about-hub .line-1 {
    width: 65px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    animation-delay: 0s;
}

.about-hub .line-2 {
    width: 65px;
    top: 15%;
    right: 10%;
    transform: translate(50%, -50%) rotate(-35deg);
    animation-delay: 0.5s;
}

.about-hub .line-3 {
    width: 65px;
    top: 85%;
    right: 10%;
    transform: translate(50%, -50%) rotate(35deg);
    animation-delay: 1s;
}

.about-hub .line-4 {
    width: 65px;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(90deg);
    animation-delay: 1.5s;
}

.about-hub .line-5 {
    width: 65px;
    top: 85%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(-35deg);
    animation-delay: 2s;
}

.about-hub .line-6 {
    width: 65px;
    top: 15%;
    left: 10%;
    transform: translate(-50%, -50%) rotate(35deg);
    animation-delay: 2.5s;
}

.company-values {
    position: absolute;
    width: 100%;
    height: 100%;
}

.value-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: valueFloat 6s ease-in-out infinite;
}

.value-item i {
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: 0.8;
}

.value-1 {
    top: 8%;
    left: 15%;
    animation-delay: 0s;
}

.value-2 {
    top: 75%;
    right: 20%;
    animation-delay: 2s;
}

.value-3 {
    bottom: 8%;
    left: 25%;
    animation-delay: 4s;
}

.about-hero-graphics .animated-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

.about-hero-graphics .circle-1 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.about-hero-graphics .circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.about-hero-graphics .circle-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

.about-hero-graphics .circle-4 {
    width: 340px;
    height: 340px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 50s;
    animation-direction: reverse;
}

/* Career Hero Banner */
.career-hero-banner {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 50px 0 30px;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
}

.career-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.career-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.career-hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.career-hero-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Career Graphics */
.career-graphic-container {
    position: relative;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.career-hub {
    position: relative;
    width: 100px;
    height: 100px;
}

.hub-center {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: careerPulse 3s ease-in-out infinite;
}

.hub-center i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.career-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: careerFloat 4s ease-in-out infinite;
}

.career-icon i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.developer-icon {
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.designer-icon {
    top: 50%;
    right: -65px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.manager-icon {
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.analyst-icon {
    top: 50%;
    left: -65px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.career-path {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    animation: pathGlow 2s ease-in-out infinite alternate;
}

.path-1 {
    width: 2px;
    height: 45px;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.path-2 {
    width: 45px;
    height: 2px;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.path-3 {
    width: 2px;
    height: 45px;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.path-4 {
    width: 45px;
    height: 2px;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.growth-step {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    animation: stepFloat 3s ease-in-out infinite;
    font-size: 0.85rem;
    font-weight: 500;
}

.step-number {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.step-1 {
    top: 40px;
    left: 6px;
    animation-delay: 0s;
}

.step-2 {
    top: 30px;
    right: -80px;
    animation-delay: 0.75s;
}

.step-3 {
    bottom: 80px;
    right: -30px;
    animation-delay: 1.5s;
}

.step-4 {
    bottom: 50px;
    left: -80px;
    animation-delay: 2.25s;
}

.career-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: circleRotate 25s linear infinite;
}

.circle-1 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 20s;
}

.circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    animation-direction: reverse;
}

.circle-3 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 40s;
}

/* About Animations */
@keyframes aboutPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes aboutLineGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes valueFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
        opacity: 1;
    }
}

/* Vision & Mission Animations */
@keyframes visionMissionPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes visionMissionFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes visionMissionLineGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-12px) rotate(10deg);
        opacity: 1;
    }
}

/* Portfolio Animations */
@keyframes portfolioPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes portfolioFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

@keyframes portfolioLineGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
}

/* Career Animations */
@keyframes careerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes careerFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes pathGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes stepFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Professional Home Banner Animations */
@keyframes homePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
    }
}

@keyframes homeFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes homeLineGlow {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes homeCircleRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        opacity: 1;
    }
}

@keyframes techFloat {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-3px) rotate(-10deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-3px) rotate(-10deg);
        opacity: 0.9;
    }
}

.page-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-info-section {
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-info-item div h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info-item div p {
    color: var(--text-secondary);
    margin: 0;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background-color: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.portfolio-item-image {
    height: 200px;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 3rem;
}

.portfolio-item-content {
    padding: 2rem;
}

.portfolio-item-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-item-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portfolio-tag {
    background-color: #e3f2fd;
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Career Page */
.job-listing {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.job-listing:hover {
    box-shadow: var(--shadow-light);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.job-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.job-type {
    background-color: #e3f2fd;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.job-requirements li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-tabs {
        gap: 0.4rem;
    }

    .service-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .service-tab span {
        display: none;
    }

    .service-tab i {
        font-size: 1.25rem;
    }

    .service-category {
        padding: 2rem;
    }

    .service-items {
        grid-template-columns: 1fr;
    }

    .ai-cta-block {
        padding: 2rem;
    }

    .ai-cta-content h4 {
        font-size: 1.4rem;
    }

    .node-1 {
        top: 10px;
        width: 70px;
        height: 70px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    /* Home Hero Banner Mobile - Professional Design */
    .home-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .home-hero-text h1 {
        font-size: 2.5rem;
    }


    .home-hero-graphics {
        height: 350px;
        padding: 15px;
    }

    .home-graphic-container {
        max-width: 320px;
    }

    .services-hub {
        width: 110px;
        height: 110px;
    }

    .services-hub .hub-center {
        font-size: 2.2rem;
    }

    .services-hub .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Mobile service icons - positioned inside mobile circle-4 (105px radius) */
    .web-design-icon {
        top: -105px;
        left: -22px;
    }

    .responsive-icon {
        top: -74px;
        right: -74px;
    }

    .java-icon {
        top: -22px;
        right: -105px;
    }

    .php-icon {
        bottom: -74px;
        right: -74px;
    }

    .dotnet-icon {
        bottom: -105px;
        left: -22px;
    }

    .sharepoint-icon {
        bottom: -74px;
        left: -74px;
    }

    .psd-icon {
        top: -22px;
        left: -105px;
    }

    .mobile-design-icon {
        top: -74px;
        left: -74px;
    }

    /* Mobile circles - scaled proportionally */
    .home-graphic-container .circle-1 {
        width: 150px;
        height: 150px;
    }

    .home-graphic-container .circle-2 {
        width: 190px;
        height: 190px;
    }

    .home-graphic-container .circle-3 {
        width: 230px;
        height: 230px;
    }

    .home-graphic-container .circle-4 {
        width: 270px;
        height: 270px;
    }

    /* Mobile tech items - refined positioning */
    .tech-symbols .tech-item {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .tech-1 {
        top: 25px;
        left: 45px;
    }

    .tech-2 {
        top: 25px;
        right: 45px;
    }

    .tech-3 {
        bottom: 25px;
        left: 45px;
    }

    .tech-4 {
        bottom: 25px;
        right: 45px;
    }

    /* Contact Hero Banner Mobile */
    .contact-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .contact-hero-text h1 {
        font-size: 2.5rem;
    }

    .contact-hero-highlights {
        justify-content: center;
        gap: 1rem;
    }


    .contact-graphic-container {
        height: 300px;
    }

    /* Vision & Mission Hero Banner Mobile */
    .vision-mission-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .vision-mission-hero-text h1 {
        font-size: 2.5rem;
    }
    .vision-mission-hero-text p {
        font-size: 1rem;
    }
    .vision-mission-hero-highlights {
        justify-content: center;
        gap: 1rem;
    }
    .vision-mission-hero-graphics {
        height: 250px;
    }
    .vision-mission-graphic-container {
        width: 250px;
        height: 250px;
    }
    .vision-mission-hub {
        width: 80px;
        height: 80px;
    }
    .vision-mission-hub .hub-center {
        width: 80px;
        height: 80px;
    }
    .vision-mission-hub .hub-center i {
        font-size: 2rem;
    }
    .vision-mission-hub .floating-icon {
        width: 40px;
        height: 40px;
    }
    .vision-mission-hub .floating-icon i {
        font-size: 1rem;
    }
    .vision-icon {
        top: -55px;
    }
    .mission-icon {
        right: -55px;
        top: -35px;
    }
    .values-icon {
        right: -55px;
        top: 35px;
    }
    .goals-icon {
        bottom: -55px;
    }
    .innovation-icon {
        left: -55px;
        top: 35px;
    }
    .growth-icon {
        left: -55px;
        top: -35px;
    }
    .vision-mission-hub .connection-line {
        height: 1px;
    }
    .vision-mission-hub .line-1, .vision-mission-hub .line-4 {
        width: 55px;
    }
    .vision-mission-hub .line-2, .vision-mission-hub .line-3, .vision-mission-hub .line-5, .vision-mission-hub .line-6 {
        width: 55px;
    }
    .symbol-item {
        width: 30px;
        height: 30px;
    }
    .symbol-item i {
        font-size: 0.8rem;
    }
    .vision-mission-hero-graphics .circle-1 {
        width: 140px;
        height: 140px;
    }
    .vision-mission-hero-graphics .circle-2 {
        width: 190px;
        height: 190px;
    }
    .vision-mission-hero-graphics .circle-3 {
        width: 240px;
        height: 240px;
    }
    .vision-mission-hero-graphics .circle-4 {
        width: 290px;
        height: 290px;
    }

    /* About Hero Banner Mobile */
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .about-hero-text h1 {
        font-size: 2.5rem;
    }
    .about-hero-text p {
        font-size: 1rem;
    }
    .about-hero-highlights {
        justify-content: center;
        gap: 1rem;
    }
    .about-hero-graphics {
        height: 250px;
    }
    .about-graphic-container {
        width: 250px;
        height: 250px;
    }
    .about-hub {
        width: 80px;
        height: 80px;
    }
    .about-hub .hub-center {
        width: 80px;
        height: 80px;
    }
    .about-hub .hub-center i {
        font-size: 2rem;
    }
    .about-hub .floating-icon {
        width: 40px;
        height: 40px;
    }
    .about-hub .floating-icon i {
        font-size: 1rem;
    }
    .team-icon {
        top: -55px;
    }
    .innovation-icon {
        right: -55px;
        top: -35px;
    }
    .quality-icon {
        right: -55px;
        top: 35px;
    }
    .experience-icon {
        bottom: -55px;
    }
    .excellence-icon {
        left: -55px;
        top: 35px;
    }
    .growth-icon {
        left: -55px;
        top: -35px;
    }
    .about-hub .connection-line {
        height: 1px;
    }
    .about-hub .line-1, .about-hub .line-4 {
        width: 55px;
    }
    .about-hub .line-2, .about-hub .line-3, .about-hub .line-5, .about-hub .line-6 {
        width: 55px;
    }
    .value-item {
        width: 30px;
        height: 30px;
    }
    .value-item i {
        font-size: 0.8rem;
    }
    .about-hero-graphics .circle-1 {
        width: 140px;
        height: 140px;
    }
    .about-hero-graphics .circle-2 {
        width: 190px;
        height: 190px;
    }
    .about-hero-graphics .circle-3 {
        width: 240px;
        height: 240px;
    }
    .about-hero-graphics .circle-4 {
        width: 290px;
        height: 290px;
    }

    /* Portfolio Hero Banner Mobile */
    .portfolio-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .portfolio-hero-text h1 {
        font-size: 2.5rem;
    }
    .portfolio-hero-text p {
        font-size: 1rem;
    }
    .portfolio-hero-highlights {
        justify-content: center;
        gap: 1rem;
    }
    .portfolio-hero-graphics {
        height: 250px;
    }
    .portfolio-graphic-container {
        width: 250px;
        height: 250px;
    }
    .portfolio-hub {
        width: 80px;
        height: 80px;
    }
    .portfolio-hub .hub-center {
        width: 80px;
        height: 80px;
    }
    .portfolio-hub .hub-center i {
        font-size: 2rem;
    }
    .portfolio-hub .floating-icon {
        width: 40px;
        height: 40px;
    }
    .portfolio-hub .floating-icon i {
        font-size: 1rem;
    }
    .web-icon {
        top: -55px;
    }
    .mobile-icon {
        right: -55px;
        top: -35px;
    }
    .ecommerce-icon {
        right: -55px;
        top: 35px;
    }
    .design-icon {
        bottom: -55px;
    }
    .database-icon {
        left: -55px;
        top: 35px;
    }
    .analytics-icon {
        left: -55px;
        top: -35px;
    }
    .portfolio-hub .connection-line {
        height: 1px;
    }
    .line-1, .line-4 {
        width: 55px;
    }
    .line-2, .line-3, .line-5, .line-6 {
        width: 55px;
    }
    .project-card {
        width: 35px;
        height: 35px;
    }
    .project-card .card-icon i {
        font-size: 0.9rem;
    }
    .portfolio-hero-graphics .circle-1 {
        width: 140px;
        height: 140px;
    }
    .portfolio-hero-graphics .circle-2 {
        width: 190px;
        height: 190px;
    }
    .portfolio-hero-graphics .circle-3 {
        width: 240px;
        height: 240px;
    }
    .portfolio-hero-graphics .circle-4 {
        width: 290px;
        height: 290px;
    }

    .communication-hub {
        width: 80px;
        height: 80px;
    }

    .hub-center {
        width: 80px;
        height: 80px;
    }

    .hub-center i {
        font-size: 2rem;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon i {
        font-size: 1rem;
    }

    .email-icon {
        top: -60px;
    }

    .phone-icon {
        right: -60px;
    }

    .chat-icon {
        bottom: -60px;
    }

    .location-icon {
        left: -60px;
    }

    .line-1, .line-3 {
        height: 40px;
        top: -40px;
    }

    .line-3 {
        bottom: -40px;
        top: auto;
    }

    .line-2, .line-4 {
        width: 40px;
        right: -40px;
    }

    .line-4 {
        left: -40px;
        right: auto;
    }

    .circle-1 {
        width: 150px;
        height: 150px;
    }

    .circle-2 {
        width: 210px;
        height: 210px;
    }

    .circle-3 {
        width: 270px;
        height: 270px;
    }

    /* Career Hero Banner Mobile */
    .career-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .career-hero-text h1 {
        font-size: 2.2rem;
    }

    .career-hero-highlights {
        justify-content: center;
        gap: 1rem;
    }

    .career-graphic-container {
        height: 300px;
        padding: 30px 0;
    }

    .career-hub {
        width: 80px;
        height: 80px;
    }

    .hub-center {
        width: 80px;
        height: 80px;
    }

    .hub-center i {
        font-size: 2rem;
    }

    .career-icon {
        width: 40px;
        height: 40px;
    }

    .career-icon i {
        font-size: 1rem;
    }

    .developer-icon {
        top: -50px;
    }

    .designer-icon {
        right: -50px;
    }

    .manager-icon {
        bottom: -50px;
    }

    .analyst-icon {
        left: -50px;
    }

    .path-1, .path-3 {
        height: 35px;
        top: -35px;
    }

    .path-3 {
        bottom: -35px;
        top: auto;
    }

    .path-2, .path-4 {
        width: 35px;
        right: -35px;
    }

    .path-4 {
        left: -35px;
        right: auto;
    }

    .growth-step {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .step-1 {
        top: 10px;
        left: -20px;
    }

    .step-2 {
        top: 20px;
        right: -60px;
    }

    .step-3 {
        bottom: 10px;
        right: -20px;
    }

    .step-4 {
        bottom: 20px;
        left: -60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .service-category {
        padding: 2rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .ai-cta-block {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .ai-cta-content h4 {
        font-size: 1.25rem;
    }

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

    .btn-ai-connect {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .portfolio-item-content {
        padding: 1.5rem;
    }
}

/* Cloud Solutions Specific Styles */
#cloud-solutions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

#cloud-solutions::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 137, 193, 0.1) 0%, transparent 70%);
    animation: cloudGlow 8s ease-in-out infinite;
}

#cloud-solutions .category-header {
    position: relative;
    z-index: 2;
}

#cloud-solutions .category-header i {
    color: #4285f4;
    animation: cloudPulse 3s ease-in-out infinite;
}

#cloud-solutions .service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(24, 137, 193, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#cloud-solutions .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(24, 137, 193, 0.1), transparent);
    transition: left 0.6s ease;
}

#cloud-solutions .service-item:hover::before {
    left: 100%;
}

#cloud-solutions .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(24, 137, 193, 0.2);
    border-color: rgba(24, 137, 193, 0.3);
}

/* Cloud Technology Icons Animation - Updated for new structure */
.tech-card.cloud-tech {
    animation: cloudTechFloat 6s ease-in-out infinite;
}

.tech-card.cloud-tech:nth-child(1) {
    animation-delay: 0s;
}

.tech-card.cloud-tech:nth-child(2) {
    animation-delay: 1.5s;
}

.tech-card.cloud-tech:nth-child(3) {
    animation-delay: 3s;
}

.tech-card.cloud-tech:nth-child(4) {
    animation-delay: 4.5s;
}

/* Cloud Portfolio Items */
.portfolio-item:has(.fa-cloud),
.portfolio-item:has(.fa-server) {
    border: 1px solid rgba(24, 137, 193, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(227, 242, 253, 0.95) 100%);
}

.portfolio-item:has(.fa-cloud):hover,
.portfolio-item:has(.fa-server):hover {
    box-shadow: 0 15px 40px rgba(24, 137, 193, 0.2);
    transform: translateY(-8px);
}

/* Cloud Service Item Icons */
#cloud-solutions .service-item .fa-aws {
    color: #ff9900;
    animation: awsGlow 4s ease-in-out infinite;
}

#cloud-solutions .service-item .fa-microsoft {
    color: #00a1f1;
    animation: azureGlow 4s ease-in-out infinite 1s;
}

#cloud-solutions .service-item .fa-google {
    color: #4285f4;
    animation: gcpGlow 4s ease-in-out infinite 2s;
}

#cloud-solutions .service-item .fa-server {
    color: #28a745;
    animation: serverPulse 3s ease-in-out infinite;
}

#cloud-solutions .service-item .fa-shield-alt {
    color: #dc3545;
    animation: securityPulse 2.5s ease-in-out infinite;
}

#cloud-solutions .service-item .fa-chart-line {
    color: #17a2b8;
    animation: analyticsPulse 3.5s ease-in-out infinite;
}

/* Cloud Solution Animations */
@keyframes cloudPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes cloudGlow {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: rotate(180deg);
    }
}

@keyframes cloudTechFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-8px) scale(1.05);
    }
    66% {
        transform: translateY(-4px) scale(1.02);
    }
}

@keyframes awsGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 153, 0, 0.8);
    }
}

@keyframes azureGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 161, 241, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 161, 241, 0.8);
    }
}

@keyframes gcpGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(66, 133, 244, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(66, 133, 244, 0.8);
    }
}

@keyframes serverPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px rgba(40, 167, 69, 0.8);
        transform: scale(1.1);
    }
}

@keyframes securityPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
        transform: rotate(0deg);
    }
    50% {
        text-shadow: 0 0 15px rgba(220, 53, 69, 0.8);
        transform: rotate(5deg);
    }
}

@keyframes analyticsPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(23, 162, 184, 0.5);
        transform: translateX(0);
    }
    50% {
        text-shadow: 0 0 15px rgba(23, 162, 184, 0.8);
        transform: translateX(2px);
    }
}

/* Floating Cloud Elements for Homepage Hero */
.floating-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cloud-element {
    position: absolute;
    color: rgba(24, 137, 193, 0.3);
    font-size: 1.5rem;
    animation: cloudFloat 12s ease-in-out infinite;
}

.cloud-element i {
    filter: drop-shadow(0 0 10px rgba(24, 137, 193, 0.4));
}

.cloud-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.cloud-2 {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
    font-size: 2rem;
}

.cloud-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 8s;
    font-size: 1.2rem;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-8px) translateX(20px) scale(1.2);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(15px) scale(1.05);
        opacity: 0.5;
    }
}

/* ========================================
   Data & AI Section Styles
   ======================================== */

#data-ai {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

#data-ai::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    animation: aiGlow 8s ease-in-out infinite;
}

#data-ai::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    animation: aiGlow 10s ease-in-out infinite reverse;
}

#data-ai .category-header {
    position: relative;
    z-index: 2;
}

#data-ai .category-header::before {
    content: 'FEATURED';
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #3b82f6);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

#data-ai .category-header i {
    color: #7c3aed;
    animation: aiPulse 3s ease-in-out infinite;
}

#data-ai .service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

#data-ai .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.08), transparent);
    transition: left 0.6s ease;
}

#data-ai .service-item:hover::before {
    left: 100%;
}

#data-ai .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Data & AI Service Icon Colors */
#data-ai .service-item .fa-robot {
    color: #6366f1;
    animation: aiIconGlow 4s ease-in-out infinite;
}

#data-ai .service-item .fa-database {
    color: #10b981;
    animation: aiIconGlow 4s ease-in-out infinite 1s;
}

#data-ai .service-item .fa-chart-bar {
    color: #14b8a6;
    animation: aiIconGlow 4s ease-in-out infinite 2s;
}

#data-ai .service-item .fa-language {
    color: #f59e0b;
    animation: aiIconGlow 4s ease-in-out infinite 3s;
}

/* Data & AI CTA Block */
.ai-cta-block {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.ai-cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: aiCtaGlow 6s ease-in-out infinite;
}

.ai-cta-content {
    position: relative;
    z-index: 2;
}

.ai-cta-content h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.ai-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-ai-connect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: #fff;
    color: #7c3aed;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-ai-connect:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Data & AI Animations */
@keyframes aiGlow {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: rotate(180deg);
    }
}

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

@keyframes aiIconGlow {
    0%, 100% {
        text-shadow: 0 0 5px currentColor;
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 20px currentColor;
        opacity: 0.85;
    }
}

@keyframes aiCtaGlow {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(5%, 5%);
        opacity: 0.6;
    }
}

/* Technology Grid Layout for Portfolio Page */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    position: relative;
    padding: 2rem 1rem;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tech-card p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Technology Icon Colors */
.tech-card .fa-java { color: #f89820; }
.tech-card .fa-php { color: #777bb4; }
.tech-card .fa-microsoft { color: #00a1f1; }
.tech-card .fa-js-square { color: #f7df1e; background: #333; border-radius: 4px; }
.tech-card .fa-database { color: #00758f; }
.tech-card .fa-laravel { color: #ff2d20; }
.tech-card .fa-react { color: #61dafb; }
.tech-card .fa-angular { color: #dd0031; }

/* Cloud Technology Specific Styling */
.tech-card.cloud-tech {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(227, 242, 253, 0.95) 100%);
    border-color: rgba(24, 137, 193, 0.2);
}

.tech-card.cloud-tech:hover {
    box-shadow: 0 8px 25px rgba(24, 137, 193, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(227, 242, 253, 1) 100%);
}

.tech-card.cloud-tech .fa-aws { 
    color: #ff9900; 
    animation: awsGlow 4s ease-in-out infinite;
}
.tech-card.cloud-tech .fa-microsoft { 
    color: #00a1f1; 
    animation: azureGlow 4s ease-in-out infinite 1s;
}
.tech-card.cloud-tech .fa-google { 
    color: #4285f4; 
    animation: gcpGlow 4s ease-in-out infinite 2s;
}
.tech-card.cloud-tech .fa-dharmachakra { 
    color: #326ce5; 
    animation: cloudTechFloat 6s ease-in-out infinite;
}

/* Responsive Design for Tech Grid */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .tech-card {
        padding: 1.5rem 0.5rem;
    }
    
    .tech-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .tech-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .tech-card {
        padding: 1rem 0.5rem;
    }
    
    .tech-card i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .tech-card p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .visitor-counter {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }
}

/* Floating Contact Widget (FAB) */
.fab-container {
    position: fixed;
    bottom: 24px;
    right: 40px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(24, 137, 193, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.fab-main:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(24, 137, 193, 0.5);
}

.fab-container .fab-icon-close { display: none; }
.fab-container.open .fab-icon-open { display: none; }
.fab-container.open .fab-icon-close { display: inline; }
.fab-container.open .fab-main { transform: rotate(90deg); background: #e74c3c; }
.fab-container.open .fab-main:hover { transform: rotate(90deg) scale(1.08); }

.fab-main::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(24, 137, 193, 0.3);
    animation: fab-pulse 2s ease-in-out infinite;
}
.fab-container.open .fab-main::before { animation: none; opacity: 0; }

@keyframes fab-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0; }
}

.fab-option {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    position: relative;
}

.fab-container.open .fab-option {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.fab-container.open .fab-option:nth-child(1) { transition-delay: 0.1s; }
.fab-container.open .fab-option:nth-child(2) { transition-delay: 0.05s; }
.fab-container.open .fab-option:nth-child(3) { transition-delay: 0s; }

.fab-option:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.fab-whatsapp {
    background: #25D366;
    color: #fff;
}

.fab-container.open .fab-whatsapp {
    animation: whatsappPulse 2s ease-in-out infinite;
    animation-delay: 0.4s;
}

.fab-whatsapp:hover {
    background: #20bd5a;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    animation: none;
}

.fab-label {
    position: absolute;
    right: 54px;
    background: #333;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.fab-option:hover .fab-label { opacity: 1; }

@media (max-width: 768px) {
    .fab-container { bottom: 16px; right: 16px; }
    .fab-main { width: 50px; height: 50px; font-size: 1.3rem; }
    .fab-option { width: 40px; height: 40px; font-size: 1rem; }
    .fab-label { display: none; }
}