/* Custom CSS for VeltrixLab */

/* Professional Color Variables - Inspired by Google & Microsoft */
:root {
    --primary-color: #2563eb; /* Google Blue */
    --secondary-color: #64748b; /* Slate Gray */
    --accent-color: #0891b2; /* Microsoft Azure Blue */
    --success-color: #059669; /* Google Green */
    --warning-color: #d97706; /* Google Amber */
    --error-color: #dc2626; /* Google Red */
    
    /* Light & Soft Background Colors */
    --bg-primary: #ffffff; /* Pure White */
    --bg-secondary: #f8fafc; /* Google Gray 50 */
    --bg-tertiary: #f1f5f9; /* Google Gray 100 */
    --bg-accent: #f0f9ff; /* Light Blue Background */
    
    /* Text Colors */
    --text-primary: #1e293b; /* Google Gray 800 */
    --text-secondary: #475569; /* Google Gray 600 */
    --text-tertiary: #64748b; /* Google Gray 500 */
    --text-light: #94a3b8; /* Google Gray 400 */
    --text-white: #ffffff;
    
    /* Border Colors */
    --border-light: #e2e8f0; /* Google Gray 200 */
    --border-medium: #cbd5e1; /* Google Gray 300 */
    --border-dark: #94a3b8; /* Google Gray 400 */
    
    /* Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.15);
    
    /* Static Colors (replacing gradients) */
    --static-primary: #2563eb; /* Primary blue */
    --static-accent: #0891b2; /* Accent blue */
    --static-light-blue: #f0f9ff; /* Light blue background */
    --static-medium-blue: #e0f2fe; /* Medium light blue */
    --static-dark-blue: #0a766b; /* Dark teal */
    
    /* Legacy variables for compatibility */
    --light-color: var(--bg-secondary);
    --dark-color: var(--text-primary);
    --white: var(--bg-primary);
    --text-light: var(--text-tertiary);
    --border-color: var(--border-light);
}

/* Global Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    scroll-behavior: smooth;
    font-weight: 400;
    padding-top: 60px; /* Reduced from 80px to 60px to account for smaller navbar */
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Professional Button Styles */
.btn-accent {
    background: var(--static-accent);
    border: none;
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.25);
}

.btn-accent:hover {
    background: var(--static-dark-blue);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.35);
}

.btn-outline-light {
    border: 2px solid var(--text-white);
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-dark {
    border: 2px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-dark:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Primary Button Style */
.btn-primary {
    background: var(--static-primary);
    border: none;
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background: #1d4ed8;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

/* About Hero Section - Professional Design */
.about-hero {
    background: var(--static-light-blue); /* Static light blue */
    color: var(--text-primary);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
}

.story-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 300px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    border-radius: 20px;
    color: var(--white);
    text-align: center;
    animation: gridFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

.grid-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.grid-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

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

/* Enhanced Name Cards */
.name-meaning {
    padding: 80px 0;
}

.name-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.name-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    transition: left 0.6s ease;
}

.name-card:hover::before {
    left: 0;
}

.name-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.name-card .name-icon {
    width: 100px;
    height: 100px;
    background: var(--static-accent); /* Static accent color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.name-card:hover .name-icon {
    transform: scale(1.1) rotate(10deg);
}

.name-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.name-description .lead {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.name-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.name-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.name-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.7rem;
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
}

.mission-statement {
    background: var(--static-primary); /* Static primary color instead of gradient */
    color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.mission-statement h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.mission-statement .lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.value-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--static-accent); /* Static accent color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

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

/* Timeline Section */
.journey-timeline {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    top: 0;
    box-shadow: 0 0 0 6px var(--white), 0 10px 25px rgba(13, 148, 136, 0.3);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -30px;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

.team-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--light-color);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.join-team {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.join-team h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.join-team p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Services Hero Section - Professional Design */
.services-hero {
    background: var(--static-light-blue); /* Static light blue */
    color: var(--text-primary);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

/* Services Navigation */
.services-nav {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white) !important;
}

.service-nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.service-nav-link:hover,
.service-nav-link.active {
    background-color: var(--accent-color) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Service Sections */
.service-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.service-header {
    margin-bottom: 4rem !important;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--static-primary); /* Static primary color instead of gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: var(--static-accent); /* Static accent color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-detail-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Lists */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.service-list li:hover {
    color: var(--dark-color);
    padding-left: 2.5rem;
}

.service-list li:hover::before {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.2);
}

/* Hero Section - Professional Design */
.hero-section {
    background: var(--static-light-blue); /* Static light blue */
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px var(--shadow-medium);
    border-color: var(--accent-color);
}

.tech-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.tech-icon:nth-child(2) {
    top: 50%;
    right: 20%;
}

.tech-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styling - Professional Design */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
}

/* About Section - Professional Design */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.name-card {
    text-align: center;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.name-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--accent-color);
}

.name-icon {
    width: 80px;
    height: 80px;
    background: var(--static-accent); /* Static accent color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.name-icon i {
    color: #fff !important;
    font-size: 2.5rem !important;
    display: inline-block;
    vertical-align: middle;
}

.name-card:hover .name-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}

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

.name-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.service-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--static-primary); /* Static primary color */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Why Choose Us Section - Professional Design */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    border-color: var(--accent-color);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--static-accent); /* Static accent color */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.3);
}

.why-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Navigation - Professional Design */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.4rem 0.8rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--bg-accent);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    padding: 0.2rem 0.4rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(37, 99, 235, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

/* Footer - Professional Design */
.footer-custom {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-light);
}

.footer-custom h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-custom p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-custom .list-unstyled li {
    margin-bottom: 0.5rem;
}

.footer-custom .list-unstyled a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-custom .list-unstyled a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-secondary);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.footer-bottom {
    background: var(--bg-tertiary);
    color: var(--text-tertiary);
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.9rem;
}

/* Utility Classes - Professional Design */
.text-accent {
    color: var(--accent-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.text-error {
    color: var(--error-color) !important;
}

.bg-error {
    background-color: var(--error-color) !important;
}

/* Call to Action Section - Professional Design */
.cta-section {
    background: var(--static-primary); /* Static primary blue */
    color: var(--text-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Navbar Scrolled State */
.navbar-custom.scrolled {
    background: var(--static-primary) !important; /* Static primary blue */
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3) !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1) !important;
}

.navbar-custom.scrolled .navbar-brand {
    color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-custom.scrolled .navbar-brand:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.navbar-custom.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar-custom.scrolled .nav-link:hover,
.navbar-custom.scrolled .nav-link.active {
    color: rgba(255, 255, 255, 1) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar-custom.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding-top: 1rem;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 0.5rem;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 300px;
        margin-top: 2rem;
    }
    
    .service-nav-link {
        font-size: 0.9rem;
        padding: 8px 16px !important;
        margin: 0 4px;
    }
    
    .services-hero, .about-hero {
        padding: 120px 0 60px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
    
    .innovation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .grid-item {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .footer-custom {
        text-align: center;
    }
    
    .footer-custom .col-md-4 {
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .why-item:hover {
        transform: translateY(-5px);
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .services-hero, .about-hero {
        padding: 100px 0 50px;
    }
    
    .services-nav {
        position: relative !important;
        top: auto !important;
    }
    
    .service-nav-link {
        font-size: 0.85rem;
        padding: 6px 12px !important;
        margin: 0 2px;
    }
    
    .name-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .name-card h3 {
        font-size: 1.5rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .value-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .team-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 250px;
    }
    
    .grid-item {
        width: 80px;
        height: 80px;
    }
    
    .grid-item i {
        font-size: 1.5rem;
    }
    
    .mission-statement {
        padding: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
}

/* Smooth transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Add your custom styles below this line */

/* Technology Stack Section */
.tech-stack-section {
    padding: 80px 0;
}

.tech-categories {
    margin-top: 2rem;
}

.tech-category {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.tech-category h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
}

.tech-category h5::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    border-radius: 2px;
}

.tech-icons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tech-badge {
    background: var(--bg-secondary); /* Static background instead of gradient */
    color: var(--dark-color);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(8, 145, 178, 0.1); /* Static color instead of gradient */
    transition: left 0.6s ease;
}

.tech-badge:hover {
    background: var(--static-accent); /* Static accent color instead of gradient */
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.author-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Enhanced Button Styles */
.btn-accent {
    background: var(--static-accent);
    border: none;
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.25);
}

.btn-accent:hover {
    background: var(--static-dark-blue);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.35);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    z-index: 1000;
    transition: width 0.1s ease;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-color);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--static-accent); /* Static accent color instead of gradient */
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

/* Contact Hero Section - Professional Design */
.contact-hero {
    background: var(--static-light-blue); /* Static light blue instead of gradient */
    color: var(--text-primary);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(37,99,235,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: var(--static-accent); /* Static accent color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-info-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
    outline: none;
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: var(--accent-color);
}

.contact-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

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

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Success Message Styling */
.alert-success {
    border: none;
    background: #d4edda; /* Static green color instead of gradient */
    color: #155724;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.alert-success .alert-heading {
    color: #155724;
    font-weight: 600;
}

/* Button Loading State */
#submitBtn .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Map Section */
.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-secondary); /* Static background instead of gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.map-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.map-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.map-address {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion {
    --bs-accordion-border-radius: 16px;
    --bs-accordion-inner-border-radius: 16px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    background-color: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    border-radius: 16px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--white);
}

/* Smooth scroll for internal links */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Responsive adjustments for contact page */
@media (max-width: 991.98px) {
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .tech-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 50px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-content {
        padding: 1rem;
    }
    
    .map-content i {
        font-size: 3rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
    
    .tech-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Ensure smooth transitions for all navbar elements */
.navbar-custom * {
    transition: all 0.3s ease;
}

/* CAPTCHA Styling */
.captcha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.captcha-container .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
}

.captcha-error {
    color: var(--error-color);
    font-size: 14px;
    text-align: center;
    padding: 10px;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    margin-top: 10px;
} 