/* =========================
   FONT & BASE STYLES
   ========================= */
@font-face {
    font-family: 'LucideIcons';
    src: url(https://cdn.jsdelivr.net/npm/lucide-static@latest/font/Lucide.ttf) format('truetype');
}
.lucide {
    font-family: 'LucideIcons';
    font-style: normal;
    font-weight: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: middle;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f0f5ff;
    color: #1a202c;
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   CONTAINER & SECTION
   ========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
@media (min-width: 768px) {
    section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

/* =========================
   HERO SECTION
   ========================= */
.bg-hero-gradient {
    background: linear-gradient(135deg,#bdbdbd 0%, #3E2443 74%);
}
#home.bg-hero-image {
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
}
#home {
    padding-top: 150px;
    padding-bottom: 150px;
}
#home h1 {
    color: #000;
}
#home img {
    max-height: 600px;
    width: auto;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* =========================
   NAVIGATION
   ========================= */
header nav a:not(.btn) {
    color: #e5e7eb;
    transition: color 0.2s;
}
header nav a:not(.btn):hover {
    color: #fff;
}

/* =========================
   BUTTONS
   ========================= */
.btn, .btn-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.025em;
}
.btn-primary {
    background-color: #fff;
    color: #0a0a0a;
    border-color: #fff;
}
.btn-primary:hover {
    background-color: #f3f4f6;
    color: #1e1b4b;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}
.btn-secondary {
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
    background-color: #eff6ff;
    color: #1d4ed8;
}

/* =========================
   CARD & HOVER EFFECTS
   ========================= */
.card-hover, .portfolio-item {
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-hover:hover, .portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* =========================
   SCROLL REVEAL & ANIMATION
   ========================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.animate-delay-200 { transition-delay: 200ms; }
.animate-delay-400 { transition-delay: 400ms; }
.animate-delay-600 { transition-delay: 600ms; }

/* Icon Placeholder Style */
  .icon-placeholder {
    width: 64px; /* 4rem */
    height: 64px; /* 4rem */
    border-radius: 50%;
    background-color: #eff6ff; /* Light blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; /* 16px */
    margin-left: auto;
    margin-right: auto;
    color: #3b82f6; /* Default icon color */
  }
/* =========================
   ABOUT SECTION
   ========================= */
.about-section {
    padding: 80px 0;
}
.about-content {
    display: flex;
    gap: 60px;
}
.about-text {
    flex: 1;
}
.about-text h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1A1A1A;
}
.about-text p {
    margin-bottom: 20px;
    color: #555;
}
.values {
    margin-top: 40px;
}
.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.value-indicator {
    width: 4px;
    height: 24px;
    background-color: #7B61FF;
    margin-right: 15px;
    border-radius: 2px;
}
.value-text {
    font-weight: 500;
    color: #444;
}
.about-cards {
    flex: 1;
}
.card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.card-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(123,97,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}
.card p {
    color: #666;
    font-size: 14px;
}
@media (max-width: 992px) {
    .about-content { flex-direction: column; }
    .about-text { margin-bottom: 40px; }
}
@media (max-width: 768px) {
    h1 { font-size: 30px; }
}
@media (max-width: 480px) {
    .about-section { padding: 50px 0; }
    h1 { font-size: 26px; }
}

/* =========================
   PROCESS SECTION
   ========================= */
.process-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    color: #2d3748;
    font-weight: 700;
    animation: fadeIn 0.8s ease both;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
    color: #4a5568;
    animation: fadeIn 0.8s ease 0.2s both;
}

/* Process Grid Layout */
.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Process Card Styles */
.process-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    width: 22%;
    min-width: 250px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    animation: fadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
    animation-delay: calc(0.2s * var(--order, 1));
}

.process-card:nth-child(1) { --order: 1; }
.process-card:nth-child(3) { --order: 2; }
.process-card:nth-child(5) { --order: 3; }
.process-card:nth-child(7) { --order: 4; }

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Process Icons */
.process-icon-container {
    margin-bottom: 20px;
    position: relative;
}

.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-card:hover .process-icon {
    animation: float 2s ease-in-out infinite;
}

.process-icon svg {
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease;
}

.process-card:hover .process-icon svg {
    transform: scale(1.2);
}

.discovery-icon {
    background-color: #ebf8ff;
}

.discovery-icon svg {
    color: #3182ce;
}

.process-card:hover .discovery-icon svg {
    animation: pulse 1.5s ease infinite;
}

.strategy-icon {
    background-color: #fffbeb;
}

.strategy-icon svg {
    color: #d97706;
}

.process-card:hover .strategy-icon svg {
    animation: spin 10s linear infinite;
}

.development-icon {
    background-color: #f5f3ff;
}

.development-icon svg {
    color: #7c3aed;
}

.process-card:hover .development-icon svg {
    animation: pulse 1.5s ease infinite;
}

.launch-icon {
    background-color: #ecfdf5;
}

.launch-icon svg {
    color: #10b981;
}

.process-card:hover .launch-icon svg {
    animation: float 1.5s ease infinite;
}

/* Process Number */
.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    background-color: #7c3aed;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    transform: scale(0);
    animation: pulse 0.5s ease 1s forwards;
}

.process-card:hover .process-number {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

/* Process Content */
.process-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #2d3748;
    text-align: center;
    transition: color 0.3s ease;
}

.process-card:hover .process-title {
    color: #7c3aed;
}

.process-description {
    font-size: 0.95rem;
    color: #4a5568;
    text-align: center;
    transition: opacity 0.3s ease;
}

.process-card:hover .process-description {
    opacity: 0.8;
}

/* Process Arrows */
.process-arrow {
    flex-grow: 0;
    width: 40px;
    height: 2px;
    background-color: #e2e8f0;
    position: relative;
    margin-top: 80px;
    align-self: center;
    animation: drawArrow 1.5s ease-in-out both;
}

.process-arrow:nth-of-type(1) { animation-delay: 1.2s; }
.process-arrow:nth-of-type(2) { animation-delay: 1.5s; }
.process-arrow:nth-of-type(3) { animation-delay: 1.8s; }

.process-arrow:after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #e2e8f0;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: inherit;
}

/* Optional: Add scroll reveal effect */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .process-grid {
        justify-content: center;
        gap: 40px;
    }
    
    .process-card {
        width: 45%;
    }
    
    .process-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
}

/* =========================
   CONTACT SECTION
   ========================= */
.contact-container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 40px auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #fff;
}
.left-section {
    flex: 1;
    padding: 1.5rem;
    background-color: #f0f5ff;
}
.left-section h1 {
    font-size: 2.2rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}
.left-section > p {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 1rem;
}
.contact-info { margin-bottom: 30px; }
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.info-item i {
    color: #4974e9;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}
.info-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.info-text p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.4;
}
.right-section {
    flex: 1;
    padding: 1.5rem;
    background-color: white;
}
.right-section h2 {
    color: #2d3748;
    margin-bottom: 25px;
    font-size: 1.5rem;
}
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group {
    margin-bottom: 15px;
    flex: 1;
}
label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}
input, textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-style: italic;
    transition: border-color 0.3s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: #4974e9;
}
textarea { resize: vertical; }
.send-button {
    background-color: #4974e9;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}
.send-button:hover { background-color: #3a5fc9; }

/* =========================
   FOOTER
   ========================= */
footer {
    background: linear-gradient(135deg,#bdbdbd 0%, #3E2443 74%);
    color: #bdbdbd;
    width: 100%;
}
footer .container {
    width: 100%;
    height: auto;
}
footer img {
    height: 50px;
    width: auto;
}
footer a {
    color: inherit;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}

/* =========================
   BADGES & MISC
   ========================= */
.badge-popular {
    position: absolute;
    top: -1px;
    right: -1px;
    background-color: #7C3AED;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0.5rem 0 0.5rem;
    z-index: 10;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(124,58,237,0.15);
}

/* =========================
   DROPDOWN (if needed in future)
   ========================= */
.dropdown-toggle {
    cursor: pointer;
}
.dropdown-toggle svg {
    transition: transform 0.3s;
}

/* =========================
   CLEANUP
   ========================= */
/* Removed duplicate/unnecessary selectors and debug classes */
/* Removed unused .max-h-0, [id$="-features-container"], .debug */
