* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #2b00ff;
    --dark-bg: #0a0a0a;
    --text-color: #0a0a0a;
    --light-text: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-400: #adb5bd;
    --gray-600: #495057;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Prompt', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(43, 0, 255, 0.05) 25%, rgba(43, 0, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(43, 0, 255, 0.05) 75%, rgba(43, 0, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(43, 0, 255, 0.05) 25%, rgba(43, 0, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(43, 0, 255, 0.05) 75%, rgba(43, 0, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.grid-background-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(43, 0, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-cta-link {
    background-color: var(--secondary-color) !important;
    color: var(--light-text) !important;
    border: none;
    padding: 0.6rem 1.5rem !important;
    border-radius: 6px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none !important;
}

.nav-cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 0, 255, 0.25);
}

.nav-cta {
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 0, 255, 0.25);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-color);
    overflow: visible;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(43, 0, 255, 0.1);
    color: var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(43, 0, 255, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(43, 0, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: rgba(43, 0, 255, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background-color: var(--light-text);
    border: 1px solid rgba(43, 0, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite;
    width: 100px;
    height: 100px;
    z-index: 10;
    overflow: hidden;
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.card-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    word-break: break-word;
    line-height: 1.1;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 40px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 30px;
    left: 60px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animated-box {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    bottom: 50px;
    right: 80px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--gray-50);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-item {
    padding: 2.5rem;
    background-color: var(--light-text);
    border-radius: 12px;
    border: 1px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.1);
    border-color: var(--secondary-color);
}

.feature-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6d28ff 100%);
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.feature-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-card {
    padding: 2.5rem;
    background-color: var(--gray-50);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #6d28ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.1);
    transform: translateY(-5px);
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.solution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.solution-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.solution-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.solution-link:hover {
    transform: translateX(5px);
}


/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6d28ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-400);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--light-text);
    border-radius: 12px;
    padding: 2.5rem;
    border: 2px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.15);
}

.pricing-card-featured {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.currency {
    font-size: 1.2rem;
}

.amount {
    font-weight: 800;
}

.period {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
}

.custom {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(43, 0, 255, 0.1);
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Tech Stack Section */
.tech-stack {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 12px;
    border: 1px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(43, 0, 255, 0.1);
    transform: translateY(-5px);
}

.tech-logo {
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary-color);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 60px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-detail-card {
    padding: 2.5rem;
    background-color: var(--gray-50);
    border-radius: 12px;
    border: 1px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.1);
    transform: translateY(-5px);
}

.service-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-detail-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-card h4 {
    font-size: 1rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.service-detail-card ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-card li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    color: var(--gray-600);
    position: relative;
}

.service-detail-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

/* Portfolio Projects */
.portfolio-projects {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background-color: var(--light-text);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(43, 0, 255, 0.2);
    border-color: var(--secondary-color);
}

.project-image {
    height: 200px;
    width: 100%;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.project-info p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background-color: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(43, 0, 255, 0.1);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6d28ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-title {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background-color: var(--light-text);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(43, 0, 255, 0.1);
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.team-intro {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-50);
    border-radius: 12px;
    border: 1px solid rgba(43, 0, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(43, 0, 255, 0.1);
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #6d28ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 800;
}

.team-member h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.team-member p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--gray-400);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.contact-page {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Prompt', sans-serif;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #20BA5C;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(43, 0, 255, 0.15);
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--light-text);
    color: var(--text-color);
}

.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(43, 0, 255, 0.15);
    border-radius: 8px;
    font-family: 'Prompt', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: var(--light-text);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(43, 0, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

/* Form Message Styles */
.form-message {
    padding: 1.2rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease;
    font-size: 1rem;
}

.form-message.success {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 2px solid #f5222d;
    color: #721c24;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input.error,
.form-group textarea.error {
    border-color: #c62828;
    background-color: rgba(244, 67, 54, 0.05);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0;
    border-top: 1px solid rgba(43, 0, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.footer-logo {
    height: 35px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    display: block;
}

.footer-section p {
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(43, 0, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 0;
        position: relative;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        order: 2;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-visual {
        order: 1;
        height: 180px;
        margin-top: 0;
        position: relative;
        z-index: 5;
    }

    .floating-card {
        padding: 1.2rem;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .card-1 {
        top: 10px;
        left: 10px;
        width: 90px;
    }

    .card-2 {
        top: 100px;
        right: 20px;
        width: 90px;
    }

    .card-3 {
        bottom: 10px;
        left: 40px;
        width: 90px;
    }

    .nav-links {
        gap: 1.2rem;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .card-text {
        font-size: 0.55rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .feature-item,
    .solution-card,
    .service-detail-card,
    .value-card {
        padding: 1.5rem;
    }

    .feature-item h3,
    .solution-card h3,
    .service-detail-card h2 {
        font-size: 1.1rem;
    }

    .features-grid,
    .solutions-grid,
    .services-grid,
    .values-grid,
    .projects-grid {
        gap: 1.5rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-wrapper {
        padding: 0 15px;
    }

    .burger-menu {
        display: flex;
        order: 2;
    }

    .nav-content {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 80px 20px 20px;
        z-index: 100;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(43, 0, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        color: var(--text-color);
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--secondary-color);
    }

    .nav-cta-link {
        background-color: var(--secondary-color) !important;
        color: white !important;
        padding: 0.8rem 1rem !important;
        border-radius: 6px;
        margin-top: 0.5rem;
        text-align: center;
        font-weight: 600;
    }

    .nav-cta-link:hover {
        background-color: #1a00cc !important;
    }

    .nav-cta {
        display: none;
    }

    .logo {
        height: 35px;
    }

    .logo-img {
        max-width: 100px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-visual {
        height: 200px;
        margin-top: 2rem;
        display: block;
    }

    .floating-card {
        width: 70px;
        height: 70px;
        padding: 0.8rem;
        z-index: 10;
        position: absolute;
        justify-content: center;
    }

    .card-icon {
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .card-text {
        font-size: 0.6rem;
        text-align: center;
    }

    .card-1 {
        top: 10px;
        left: 10px;
    }

    .card-2 {
        top: 100px;
        right: 20px;
    }

    .card-3 {
        bottom: 10px;
        left: 40px;
    }

    .features,
    .solutions,
    .stats,
    .contact-page,
    .portfolio-projects,
    .services-detail,
    .company-story,
    .our-values {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-number {
        font-size: 1.2rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .feature-item h3,
    .solution-card h3,
    .value-card h3 {
        font-size: 1.1rem;
    }

    .feature-item p,
    .solution-card p,
    .value-card p {
        font-size: 0.9rem;
    }

    .solution-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.6rem;
    }

    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .detail-label {
        font-size: 0.85rem;
    }

    .detail-value {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .project-image {
        height: 150px;
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.1rem;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    .service-header h2 {
        font-size: 1.2rem;
    }

    .service-detail-card h4 {
        font-size: 0.95rem;
        margin: 1rem 0 0.8rem;
    }

    .service-detail-card li {
        padding: 0.5rem 0;
        padding-left: 1.2rem;
        font-size: 0.9rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-content p {
        font-size: 1rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .stat-title {
        font-size: 0.85rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-large {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .footer-logo {
        height: 30px;
        max-width: 100px;
        margin-bottom: 0.8rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul {
        gap: 0.6rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .team-member h4 {
        font-size: 1rem;
    }

    .team-member p {
        font-size: 0.85rem;
    }
}


/* Enhanced 640px Mobile Breakpoint */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-visual {
        height: 180px;
        margin-top: 0;
        position: relative;
        order: 1;
        z-index: 5;
    }

    .floating-card {
        padding: 0.8rem;
        border-radius: 8px;
        gap: 0.3rem;
    }

    .card-icon {
        font-size: 1.4rem;
    }

    .card-text {
        font-size: 0.75rem;
        font-weight: 500;
    }

    .card-1 {
        top: 5px;
        left: 5px;
        width: 75px;
        height: 75px;
        padding: 0.8rem;
    }

    .card-2 {
        top: 70px;
        right: 5px;
        width: 75px;
        height: 75px;
        padding: 0.8rem;
    }

    .card-3 {
        bottom: 5px;
        left: 30px;
        width: 75px;
        height: 75px;
        padding: 0.8rem;
    }
}
