/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Enhanced Color Theme with Darkish Hover Effects */
    --primary-blue: #1e40af;
    --primary-light-blue: #3b82f6;
    --primary-dark: #0f172a;
    --accent-yellow: #fbbf24;
    --accent-red: #dc2626;
    --accent-orange: #f97316;
    --whatsapp-green: #25D366;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8fafd;
    --bg-white: #ffffff;
    --border-color: #e3f2fd;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --shadow: 0 4px 12px rgba(30, 136, 229, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 8px;
    --dark-overlay: rgba(15, 23, 42, 0.75);
    --dark-hover: rgba(15, 23, 42, 0.85);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

/* ===== DARKISH HOVER EFFECTS - APPLIED ACROSS ALL PAGES ===== */
.darkish-hover {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.darkish-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    z-index: 1;
    transition: var(--transition);
}

.darkish-hover:hover::before {
    background: var(--dark-hover);
}

.darkish-hover > * {
    position: relative;
    z-index: 2;
}

/* Apply to cards, buttons, and interactive elements */
.feature-card,
.product-card,
.service-card,
.value-card,
.stat-item,
.mission-card,
.vision-card,
.contact-method,
.faq-item,
.support-option,
.social-link,
.tech-item,
.product-tab,
.form-tab {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card:hover,
.product-card:hover,
.service-card:hover,
.value-card:hover,
.stat-item:hover,
.mission-card:hover,
.vision-card:hover,
.contact-method:hover,
.faq-item:hover .faq-question,
.support-option:hover,
.social-link:hover,
.tech-item:hover,
.product-tab:hover,
.form-tab:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ===== BUTTONS WITH DARKISH THEME ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.btn:hover::before {
    opacity: 0.1;
}

.btn > * {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-dark);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-red), #ef4444);
    color: white;
    font-weight: 500;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ef4444, var(--accent-red));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp-green), #128C7E);
    color: white;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, var(--whatsapp-green));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    display: block;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(30, 64, 175, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(15, 23, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}

/* ===== GLOBE ANIMATION ===== */
.globe-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.globe-icon {
    font-size: 4rem;
    color: var(--primary-light-blue);
    animation: rotateGlobe 20s linear infinite;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

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

.orbit {
    position: absolute;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: orbit 10s linear infinite;
}

.orbit-1 {
    width: 120px;
    height: 120px;
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.orbit-2 {
    width: 160px;
    height: 160px;
    top: -60px;
    left: -60px;
    animation-delay: 2s;
}

.orbit-3 {
    width: 200px;
    height: 200px;
    top: -80px;
    left: -80px;
    animation-delay: 4s;
}

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

/* ===== MOBILE HEADER ===== */
.mobile-header {
    display: none;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.mobile-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu-btn, .mobile-contact-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-btn:hover, .mobile-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== SUPPORT SYSTEM WITH WHATSAPP ===== */
.support-system {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.support-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.support-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.support-system:hover .support-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.support-header h3 {
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.support-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-color);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.support-option:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateX(-5px);
}

.support-option:hover .option-phone,
.support-option:hover .option-email,
.support-option:hover .option-demo,
.support-option:hover .option-whatsapp {
    color: white;
}

.option-phone { color: var(--success-color); }
.option-email { color: var(--primary-blue); }
.option-demo { color: var(--accent-orange); }
.option-whatsapp { color: var(--whatsapp-green); }

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo .logo-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-axora {
    color: var(--primary-light-blue);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    height: 3px;
    width: 100%;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== IMPROVED HERO SECTION WITH BETTER VISIBILITY ===== */
.hero {
    height: 85vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

.hero-slides {
    height: 100%;
    position: relative;
}

.slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* IMPROVED HERO BACKGROUNDS FOR BETTER VISIBILITY */
.slide:nth-child(1) {
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(30, 64, 175, 0.6)), 
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') !important;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(30, 64, 175, 0.6)), 
                url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') !important;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(30, 64, 175, 0.6)), 
                url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') !important;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    font-weight: 400;
}

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

.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.slide-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slide-indicator.active {
    background: white;
    transform: scale(1.3);
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* ===== DYNAMIC IMAGE PLACEHOLDERS ===== */
.card-image,
.product-image-container,
.story-image .image-frame,
.founder-image .image-container,
.product-card.detailed .product-image-container {
    position: relative;
    overflow: hidden;
}

/* Make images stretch and fit dynamically */
.card-image img,
.product-img,
.story-img,
.founder-img,
.product-card.detailed .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image:hover img,
.product-image-container:hover .product-img,
.story-image:hover .story-img,
.founder-image:hover .founder-img,
.product-card.detailed:hover .product-img {
    transform: scale(1.05);
}

/* Set specific heights for different card types */
.card-image {
    height: 180px; /* Reduced from 200px */
}

.product-card.detailed .product-image-container {
    height: 250px; /* Reduced size for product cards */
}

.story-img {
    height: 500px;
}

.founder-img {
    height: 400px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: white;
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 1;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    margin: -50px auto 0;
    max-width: 1100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #f8fafd, #ffffff);
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== SECTIONS COMMON ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* =============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================= */

.about-story-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.story-image {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-title-left {
    text-align: left;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-red));
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 500;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-card, .vision-card {
    padding: 25px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--bg-light), white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-dark);
}

.mission-card .card-icon, .vision-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.mission-card h3, .vision-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Enhanced Founder Section */
.founder-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.founder-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    margin-top: 50px;
}

.founder-image {
    position: relative;
}

.founder-image .image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.founder-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-yellow), #f59e0b);
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-info h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 5px;
}

.founder-title {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.founder-achievements {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
}

.achievement i {
    color: var(--primary-blue);
}

.founder-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-link:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateX(5px);
}

.contact-link:hover i {
    color: white;
}

/* Enhanced Values Section */
.values-section.enhanced {
    background: linear-gradient(135deg, #f8fafd, #ffffff);
    padding: 100px 0;
}

.values-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-red));
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-yellow);
}

.value-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.value-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.value-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.value-features i {
    color: var(--success-color);
}

/* About Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: white;
}

.stats-grid.about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stats-grid.about .stat-item {
    padding: 30px;
    background: linear-gradient(135deg, var(--bg-light), white);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    border-radius: var(--radius);
}

.stats-grid.about .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-dark);
}

.stats-grid.about .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.stats-grid.about .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* ===== FEATURED CARDS ===== */
.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(30, 64, 175, 0.8), var(--dark-overlay));
    z-index: 1;
    transition: var(--transition);
}

.feature-card > * {
    position: relative;
    z-index: 2;
    color: white;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-yellow);
}

.feature-card:hover::before {
    background: linear-gradient(rgba(30, 64, 175, 0.9), var(--dark-hover));
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== REDUCED SIZE PRODUCT CARDS ===== */
.featured-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Reduced from 300px */
    gap: 25px; /* Reduced from 30px */
    max-width: 850px; /* Reduced from 900px */
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px); /* Reduced from -10px */
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-dark);
}

.card-content {
    padding: 20px; /* Reduced from 25px */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: var(--primary-blue);
    margin-bottom: 8px; /* Reduced from 10px */
    font-size: 1.3rem; /* Reduced from 1.5rem */
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 15px; /* Reduced from 20px */
    flex-grow: 1;
    font-size: 0.95rem; /* Reduced */
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-yellow), #ffc107);
    color: #333;
    padding: 4px 12px; /* Reduced */
    border-radius: 20px;
    font-size: 0.75rem; /* Reduced from 0.8rem */
    margin: 12px 0; /* Reduced from 15px */
    font-weight: 600;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(255, 214, 0, 0.3);
}

/* ===== WHY CHOOSE / FEATURES ===== */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafd, #ffffff);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.testimonial {
    display: none;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.8;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light-blue);
    position: absolute;
    opacity: 0.3;
}

.testimonial-content p::before {
    top: -10px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -30px;
    right: -10px;
}

.testimonial-author h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: normal;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-indicator.active {
    background: var(--primary-blue);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="white" d="M500,100 C700,100 900,300 900,500 C900,700 700,900 500,900 C300,900 100,700 100,500 C100,300 300,100 500,100 Z"/></svg>') center/200px repeat;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

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

/* ===== PRODUCTS PAGE ===== */
.products-nav {
    padding: 30px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    min-width: 120px;
    border: 1px solid var(--border-color);
}

.product-tab:hover, .product-tab.active {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-dark);
}

.product-tab:hover .tab-icon, .product-tab.active .tab-icon {
    color: white;
}

.tab-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.product-section {
    padding: 80px 0;
    display: none;
    background: var(--bg-white);
}

.product-section.active-product {
    display: block;
    animation: fadeIn 0.5s ease;
}

.product-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.product-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 500;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-details {
    max-width: 900px;
    margin: 0 auto;
}

.product-card.detailed {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(220, 38, 38, 0.3);
}

.product-content {
    padding: 40px;
}

.product-content h3 {
    color: var(--primary-blue);
    margin: 20px 0 15px;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-list i {
    color: var(--accent-red);
    margin-top: 5px;
    flex-shrink: 0;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 20px;
}

.benefits-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    padding: 80px 0 40px;
    background: var(--bg-white);
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.overview-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.services-grid-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafd, #ffffff);
}

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

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-yellow);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.process-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.process-steps {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
}

.step-content {
    flex-grow: 1;
    padding-top: 10px;
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.tech-stack-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafd, #ffffff);
}

.tech-stack {
    max-width: 800px;
    margin: 50px auto 0;
}

.tech-category {
    margin-bottom: 30px;
}

.tech-category h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.tech-item:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.contact-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.contact-method:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    transform: translateX(5px);
    border-color: var(--primary-dark);
}

.contact-method:hover .method-icon,
.contact-method:hover .method-content h3,
.contact-method:hover .method-content p {
    color: white;
}

.method-icon {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-top: 5px;
    transition: var(--transition);
}

.method-content h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.2rem;
    transition: var(--transition);
}

.method-content p {
    color: var(--text-light);
    margin-bottom: 5px;
    transition: var(--transition);
}

.method-content p:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-dark);
}

.social-link i {
    font-size: 1.2rem;
}

.contact-form-container {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.form-tabs {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.form-tab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.form-tab:hover, .form-tab.active {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--primary-dark);
    background: white;
}

.contact-form {
    padding: 30px;
    display: none;
}

.contact-form.active-form {
    display: block;
    animation: fadeIn 0.5s ease;
}

.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
    background: white;
}

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

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafd, #ffffff);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.1rem;
    flex-grow: 1;
}

.faq-question i {
    color: var(--primary-blue);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-info i {
    margin-top: 5px;
    width: 20px;
    color: var(--accent-yellow);
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-story-content,
    .founder-profile,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .values-grid.enhanced {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title-left {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-title-left::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }
    
    .navbar {
        padding-top: 60px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .support-system {
        bottom: 20px;
        right: 20px;
    }
    
    .support-main-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .support-panel {
        width: 280px;
        right: -10px;
    }
    
    .nav-logo .logo-main {
        font-size: 24px;
    }
    
    .founder-profile {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid.about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid.enhanced {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .product-card.detailed .product-image-container {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid.about {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .compact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .product-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 25px 15px;
    }
    
    .nav-logo .logo-main {
        font-size: 22px;
    }
    
    .feature-card {
        min-height: 250px;
        padding: 20px;
    }
    
    .about-story-section {
        padding: 60px 0;
    }
    
    .image-frame {
        margin-bottom: 30px;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .founder-achievements {
        justify-content: center;
    }
    
    .card-image {
        height: 140px;
    }
    
    .product-card.detailed .product-image-container {
        height: 180px;
    }
}

/* ===== MOBILE MENU ANIMATION ===== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE MENU ACTIVE STATE ===== */
.nav-menu.active {
    animation: slideDown 0.3s ease forwards;
}

/* ===== HAMBURGER MENU ANIMATION ===== */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== SUPPORT SYSTEM MOBILE FIX ===== */
@media (max-width: 768px) {
    .support-system {
        bottom: 20px;
        right: 20px;
    }
    
    .support-panel {
        position: fixed;
        bottom: 80px;
        right: 20px;
        left: 20px;
        width: auto;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }
    
    .support-panel.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Improved Mobile Menu Styling */
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        gap: 10px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        border-radius: 0 0 15px 15px;
        border-top: 2px solid var(--primary-blue);
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    .nav-link {
        padding: 18px 20px;
        border: none;
        border-radius: 10px;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-color);
        transition: all 0.3s ease;
        background: var(--bg-light);
        text-align: center;
        margin: 5px 0;
        display: block;
    }
    
    .nav-link:hover, .nav-link.active {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
        color: white;
        transform: translateX(5px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile menu button in navbar */
    .navbar .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .navbar .mobile-menu-btn span {
        height: 3px;
        width: 100%;
        background-color: var(--primary-blue);
        border-radius: 2px;
        transition: var(--transition);
    }
    
    /* Mobile contact button active state */
    .mobile-contact-btn.active {
        background: rgba(255, 255, 255, 0.2);
        color: var(--accent-yellow);
    }
}