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

:root {
    --primary-red: #FF6060;
    --primary-green: #00FF00;
    --dark-bg: #000000;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 200px;
    height: 60px;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    color: #2d3748;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

/* Active navigation link styles */
.nav-link.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-toggle.active {
    color: var(--primary-red);
    font-weight: 600;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

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

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f7fafc;
    color: var(--primary-red);
}

.dropdown-link.active {
    background-color: #f7fafc;
    color: var(--primary-red);
    font-weight: 600;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: var(--primary-red);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--dark-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Infinites Logo Styles */
.infinites-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: logo3DEntrance 1.5s ease-out;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.infinites-logo-image {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    animation: logo3DFloat 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.infinites-logo-image:hover {
    transform: scale(1.1) rotateX(10deg) rotateY(10deg) translateZ(20px);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(46, 139, 87, 0.3));
}

.infinites-logo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46, 139, 87, 0.1), transparent);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.infinites-logo-image:hover::before {
    opacity: 1;
}

/* Business Modules Styles */
.business-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out 0.5s both;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.module-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    animation: module3DEntrance 1s ease-out both;
    animation-delay: calc(var(--item-index) * 0.1s + 0.8s);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.module-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.module-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.module-item:hover::before {
    left: 100%;
}

.module-item:hover::after {
    opacity: 1;
}

.module-item:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(46, 139, 87, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: rgba(46, 139, 87, 0.6);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    animation: icon3DBounce 2.5s ease-in-out infinite, iconPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--item-index) * 0.2s);
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    flex-shrink: 0;
    color: #2b7817;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.module-icon i {
    display: block;
    transition: all 0.3s ease;
}

.module-item:hover .module-icon {
    color: #ff0000;
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 6px 12px rgba(46, 139, 87, 0.4));
}

.module-item:hover .module-icon i {
    animation: iconSpin 0.6s ease-in-out;
}

.module-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: text3DSlideUp 0.8s ease-out both;
    animation-delay: calc(var(--item-index) * 0.1s + 1.2s);
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 2px;
}

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

/* About Section */
.about {
    background: #f7fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vm-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.vm-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Values Section */
.values {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: #f7fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* ERP Section */
.erp {
    background: white;
}

.erp-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.erp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

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

.erp-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.erp-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.erp-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.erp-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.erp-highlights {
    margin-bottom: 60px;
}

.erp-highlights h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: #f7fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #4a5568;
    line-height: 1.6;
}

.erp-modules h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    text-align: center;
    margin-bottom: 40px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.module-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-3px);
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.module-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
}

.module-card ul {
    list-style: none;
    padding: 0;
}

.module-card li {
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.module-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Industries Section */
.industries {
    background: #f7fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.industry-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-red);
}

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

.industry-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.industry-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.industry-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.industry-card ul {
    list-style: none;
    padding: 0;
}

.industry-card li {
    color: #4a5568;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.industry-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Team Section */
/* Organizational Structure Section */
.structure {
    padding: 0;
    background-color: #ffffff;
}

.structure-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.org-chart-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.org-diagram {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}


.team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-member {
    background: #f7fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.member-photo:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #4a5568;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    background: #f7fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

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

.project-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 32px;
}

.project-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
}

.client {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.project-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.contact-details p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-form {
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

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

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 120px;
    height: 40px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.footer-logo .logo-text {
    font-weight: 700;
    font-size: 18px;
    color: white;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.footer-section li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        z-index: 1000;
        overflow-y: auto;
    }

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

    .nav-link {
        display: block;
        padding: 15px 20px;
        margin: 5px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 0;
        border-radius: 0;
        padding: 0;
        display: block;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    .dropdown-link {
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
        display: block;
        text-align: center;
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .erp-hero {
        padding: 40px 20px;
    }

    .infinites-logo {
        margin-bottom: 30px;
        perspective: 800px;
    }

    .infinites-logo-image {
        max-width: 160px;
        animation: logo3DFloat 3s ease-in-out infinite;
    }

    .infinites-logo-image:hover {
        transform: scale(1.05) rotateX(5deg) rotateY(5deg) translateZ(10px);
    }

    .business-modules {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        perspective: 800px;
        max-width: 100%;
    }

    .module-item {
        padding: 25px 15px;
        border-radius: 12px;
        transform-style: preserve-3d;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .module-item:hover {
        transform: translateY(-10px) rotateX(3deg) rotateY(3deg) scale(1.03);
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.15),
            0 0 20px rgba(46, 139, 87, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .module-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
        flex-shrink: 0;
        color: #2e8b57;
        animation: icon3DBounce 2s ease-in-out infinite, iconPulse 2.5s ease-in-out infinite;
    }

    .module-item:hover .module-icon {
        color: #32cd32;
        transform: scale(1.15) rotateY(360deg);
    }


    .module-text {
        font-size: 0.8rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .erp-content h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .industry-card,
    .project-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .infinites-logo-image {
        max-width: 120px;
        animation: logo3DFloat 2.5s ease-in-out infinite;
    }

    .infinites-logo-image:hover {
        transform: scale(1.03) rotateX(3deg) rotateY(3deg) translateZ(5px);
    }

    .business-modules {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .module-item {
        padding: 20px 15px;
        min-height: 160px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .module-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
        flex-shrink: 0;
        color: #2e8b57;
        animation: icon3DBounce 1.8s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
    }

    .module-item:hover .module-icon {
        color: #32cd32;
        transform: scale(1.1) rotateY(360deg);
    }

    .module-text {
        font-size: 0.8rem;
        line-height: 1.3;
        text-align: center;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo 3D Animations */
@keyframes logo3DEntrance {
    0% {
        opacity: 0;
        transform: translateY(100px) translateZ(-100px) rotateX(-30deg) rotateY(-20deg) scale(0.5);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) translateZ(-20px) rotateX(-10deg) rotateY(-5deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
}

@keyframes logo3DFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-8px) translateZ(5px) rotateX(2deg);
    }
    50% {
        transform: translateY(-12px) translateZ(8px) rotateX(0deg);
    }
    75% {
        transform: translateY(-6px) translateZ(3px) rotateX(-1deg);
    }
}

/* Module Animations */
@keyframes module3DEntrance {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(50px) rotateX(-30deg) rotateY(-20deg) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-20px) translateY(10px) rotateX(-10deg) rotateY(-5deg) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) rotateX(0deg) rotateY(0deg) scale(1);
    }
}

@keyframes icon3DBounce {
    0%, 100% {
        transform: translateY(0px) translateZ(0px) scale(1) rotateX(0deg);
    }
    25% {
        transform: translateY(-8px) translateZ(5px) scale(1.1) rotateX(5deg);
    }
    50% {
        transform: translateY(-12px) translateZ(8px) scale(1.15) rotateX(0deg);
    }
    75% {
        transform: translateY(-6px) translateZ(3px) scale(1.05) rotateX(-3deg);
    }
}

@keyframes iconPulse {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 6px 12px rgba(46, 139, 87, 0.3));
    }
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes text3DSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) translateZ(-10px) rotateX(15deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(5px) translateZ(0px) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0px) rotateX(0deg);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e53e3e;
}
