mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 18:52:57 +00:00
- Add missing CSS gradient variables to fix white/invisible text sections - Add --text-light, --badge-purple, --badge-orange variables - Fix button hover effects to use brightness filter instead of solid colors - Apply consistent hover behavior across homepage, marketplace, and wallet pages - Improve visual hierarchy with subtle section gradients 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
802 lines
18 KiB
CSS
802 lines
18 KiB
CSS
/* Homepage-specific styles for NetCop AI Hub */
|
|
/* Using unified color system from base.css */
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
position: relative;
|
|
background: var(--gradient-hero);
|
|
overflow: hidden;
|
|
min-height: 85vh;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px) clamp(60px, 15vw, 100px);
|
|
}
|
|
|
|
.hero-container {
|
|
max-width: 1280px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
position: relative;
|
|
z-index: 10;
|
|
width: 100%;
|
|
}
|
|
|
|
.trust-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
background: rgba(59, 130, 246, 0.08);
|
|
padding: 0.5rem 1.25rem;
|
|
border-radius: 50px;
|
|
margin-bottom: 2.5rem;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
color: var(--primary-blue);
|
|
border: 1px solid rgba(59, 130, 246, 0.15);
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.trust-badge-emoji {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.hero-title {
|
|
font-weight: 800;
|
|
margin-bottom: 2.5rem;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.02em;
|
|
font-size: clamp(36px, 8vw, 110px);
|
|
margin-bottom: clamp(24px, 6vw, 40px);
|
|
}
|
|
|
|
.hero-title-gradient {
|
|
background: var(--gradient-primary);
|
|
background-size: 300% 300%;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero-title-normal {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.hero-description {
|
|
color: var(--text-secondary);
|
|
margin-bottom: 3.5rem;
|
|
max-width: 720px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
line-height: 1.7;
|
|
font-weight: 400;
|
|
font-size: clamp(1.1rem, 3vw, 1.4rem);
|
|
margin-bottom: clamp(32px, 8vw, 56px);
|
|
padding: 0 clamp(8px, 2vw, 16px);
|
|
}
|
|
|
|
.hero-buttons {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 5rem;
|
|
gap: clamp(12px, 3vw, 20px);
|
|
margin-bottom: clamp(40px, 10vw, 80px);
|
|
padding: 0 clamp(8px, 2vw, 16px);
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
border-radius: 1rem;
|
|
font-weight: bold;
|
|
border: none;
|
|
cursor: pointer;
|
|
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
letter-spacing: 0.01em;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
padding: clamp(14px, 4vw, 18px) clamp(24px, 6vw, 36px);
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
min-height: 48px;
|
|
min-width: clamp(140px, 40vw, 180px);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
|
|
filter: brightness(1.1);
|
|
}
|
|
|
|
.btn-primary:active {
|
|
transform: translateY(0);
|
|
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: var(--background-card);
|
|
color: var(--primary-blue);
|
|
border-radius: 1rem;
|
|
font-weight: 600;
|
|
border: 2px solid var(--border-light);
|
|
text-decoration: none;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(59, 130, 246, 0.08);
|
|
letter-spacing: 0.01em;
|
|
display: inline-block;
|
|
text-align: center;
|
|
padding: clamp(14px, 4vw, 18px) clamp(24px, 6vw, 36px);
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
min-height: 48px;
|
|
min-width: clamp(140px, 40vw, 180px);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
|
|
border-color: var(--primary-blue);
|
|
background: rgba(59, 130, 246, 0.05);
|
|
}
|
|
|
|
.btn-secondary:active {
|
|
transform: translateY(0);
|
|
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
|
|
}
|
|
|
|
.trust-indicators {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
|
|
gap: clamp(16px, 4vw, 48px);
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
padding: 0 clamp(8px, 2vw, 16px);
|
|
}
|
|
|
|
.trust-card {
|
|
text-align: center;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
backdrop-filter: blur(10px);
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
|
|
border-radius: 1rem;
|
|
padding: clamp(16px, 4vw, 24px) clamp(12px, 3vw, 16px);
|
|
}
|
|
|
|
.trust-number {
|
|
background: var(--text-gradient);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
|
}
|
|
|
|
.trust-text {
|
|
color: var(--text-secondary);
|
|
font-weight: 500;
|
|
letter-spacing: 0.01em;
|
|
font-size: clamp(12px, 3vw, 15px);
|
|
}
|
|
|
|
/* Company Profile Section */
|
|
.company-profile {
|
|
position: relative;
|
|
background: var(--company-gradient);
|
|
overflow: hidden;
|
|
padding: clamp(60px, 15vw, 120px) clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.company-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
z-index: 10;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: clamp(40px, 10vw, 80px);
|
|
}
|
|
|
|
.section-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
background: rgba(30, 64, 175, 0.1);
|
|
padding: 0.5rem 1.25rem;
|
|
border-radius: 50px;
|
|
margin-bottom: 1.5rem;
|
|
border: 1px solid rgba(30, 64, 175, 0.2);
|
|
}
|
|
|
|
.section-badge-icon {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.section-badge-text {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
color: var(--primary-blue);
|
|
}
|
|
|
|
.section-title {
|
|
font-weight: 800;
|
|
color: var(--primary-blue);
|
|
margin-bottom: 1rem;
|
|
text-align: center;
|
|
font-size: clamp(2rem, 5vw, 3.5rem);
|
|
}
|
|
|
|
.section-subtitle {
|
|
font-size: 1.25rem;
|
|
color: var(--text-light);
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.company-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
|
|
gap: clamp(40px, 10vw, 80px);
|
|
align-items: center;
|
|
}
|
|
|
|
.company-content-card {
|
|
background: white;
|
|
border-radius: 1.5rem;
|
|
box-shadow: 0 20px 60px rgba(30, 64, 175, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.8);
|
|
position: relative;
|
|
padding: clamp(24px, 6vw, 48px);
|
|
}
|
|
|
|
.decorative-corner {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 80px;
|
|
height: 80px;
|
|
background: var(--primary-gradient);
|
|
border-top-right-radius: 1.5rem;
|
|
border-bottom-left-radius: 1.5rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.company-content-title {
|
|
font-weight: bold;
|
|
color: var(--primary-blue);
|
|
font-size: clamp(1.3rem, 4vw, 1.8rem);
|
|
margin-bottom: clamp(16px, 4vw, 24px);
|
|
margin-top: clamp(12px, 3vw, 20px);
|
|
}
|
|
|
|
.company-content-text {
|
|
color: var(--text-secondary);
|
|
line-height: 1.8;
|
|
margin-bottom: clamp(20px, 5vw, 32px);
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
.company-badges {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
|
|
gap: clamp(12px, 3vw, 16px);
|
|
margin-bottom: clamp(20px, 5vw, 32px);
|
|
}
|
|
|
|
.company-badge {
|
|
color: white;
|
|
border-radius: 0.75rem;
|
|
text-align: center;
|
|
font-size: clamp(12px, 3vw, 14px);
|
|
font-weight: 600;
|
|
padding: clamp(12px, 3vw, 16px);
|
|
}
|
|
|
|
.company-badge-primary {
|
|
background: var(--primary-gradient);
|
|
box-shadow: 0 4px 16px rgba(64, 224, 208, 0.3);
|
|
}
|
|
|
|
.company-badge-purple {
|
|
background: var(--badge-purple);
|
|
box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.company-badge-orange {
|
|
background: var(--badge-orange);
|
|
box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
.company-badge-icon {
|
|
margin-bottom: 0.5rem;
|
|
font-size: clamp(18px, 4vw, 24px);
|
|
}
|
|
|
|
.company-visual {
|
|
position: relative;
|
|
}
|
|
|
|
.main-visual {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
background: var(--visual-gradient);
|
|
border-radius: clamp(16px, 4vw, 32px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 32px 80px rgba(30, 64, 175, 0.2);
|
|
position: relative;
|
|
margin: 0 auto;
|
|
overflow: hidden;
|
|
height: clamp(250px, 50vw, 400px);
|
|
}
|
|
|
|
.main-visual-icon {
|
|
color: white;
|
|
position: relative;
|
|
z-index: 10;
|
|
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
|
|
font-size: clamp(3rem, 8vw, 5rem);
|
|
}
|
|
|
|
.floating-element {
|
|
position: absolute;
|
|
background: white;
|
|
border-radius: clamp(8px, 2vw, 16px);
|
|
box-shadow: 0 8px 32px rgba(30, 64, 175, 0.15);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.floating-element-1 {
|
|
top: 10%;
|
|
right: clamp(-20%, -10%, -5%);
|
|
width: clamp(50px, 12vw, 80px);
|
|
height: clamp(50px, 12vw, 80px);
|
|
font-size: clamp(1.2rem, 3vw, 2rem);
|
|
}
|
|
|
|
.floating-element-2 {
|
|
bottom: 15%;
|
|
left: clamp(-10%, -5%, 0%);
|
|
width: clamp(40px, 10vw, 60px);
|
|
height: clamp(40px, 10vw, 60px);
|
|
border-radius: 50%;
|
|
box-shadow: 0 8px 32px rgba(64, 224, 208, 0.15);
|
|
font-size: clamp(1rem, 2.5vw, 1.5rem);
|
|
}
|
|
|
|
.achievement-strip {
|
|
background: white;
|
|
border-radius: clamp(12px, 3vw, 20px);
|
|
box-shadow: 0 16px 48px rgba(30, 64, 175, 0.08);
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(120px, 100%), 1fr));
|
|
gap: clamp(16px, 4vw, 32px);
|
|
align-items: center;
|
|
margin-top: clamp(40px, 10vw, 80px);
|
|
padding: clamp(20px, 5vw, 32px);
|
|
}
|
|
|
|
.achievement-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.achievement-icon {
|
|
margin-bottom: 0.5rem;
|
|
font-size: clamp(1.5rem, 4vw, 2rem);
|
|
}
|
|
|
|
.achievement-title {
|
|
font-weight: 600;
|
|
color: var(--primary-blue);
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
.achievement-text {
|
|
color: var(--text-light);
|
|
font-size: clamp(12px, 3vw, 14px);
|
|
}
|
|
|
|
/* Services Section */
|
|
.services {
|
|
background: var(--services-gradient);
|
|
padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.services-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.services-title {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
color: var(--primary-blue);
|
|
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
|
}
|
|
|
|
.services-subtitle {
|
|
text-align: center;
|
|
color: var(--text-light);
|
|
margin-bottom: 3rem;
|
|
font-size: clamp(16px, 4vw, 20px);
|
|
margin-bottom: clamp(24px, 6vw, 48px);
|
|
}
|
|
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
|
|
gap: clamp(16px, 4vw, 32px);
|
|
}
|
|
|
|
.service-card {
|
|
background: white;
|
|
border-radius: clamp(12px, 3vw, 20px);
|
|
box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
|
|
text-align: center;
|
|
padding: clamp(20px, 5vw, 40px);
|
|
}
|
|
|
|
.service-icon {
|
|
margin-bottom: 1.25rem;
|
|
font-size: clamp(2rem, 6vw, 3rem);
|
|
margin-bottom: clamp(12px, 3vw, 20px);
|
|
}
|
|
|
|
.service-title {
|
|
font-weight: bold;
|
|
color: var(--primary-blue);
|
|
margin-bottom: 1rem;
|
|
font-size: clamp(1.2rem, 4vw, 1.5rem);
|
|
margin-bottom: clamp(12px, 3vw, 16px);
|
|
}
|
|
|
|
.service-description {
|
|
color: var(--text-light);
|
|
line-height: 1.6;
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
/* Clients Section */
|
|
.clients {
|
|
background: var(--clients-gradient);
|
|
padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.clients-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.clients-title {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: var(--primary-blue);
|
|
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
|
margin-bottom: clamp(24px, 6vw, 48px);
|
|
}
|
|
|
|
.clients-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
|
|
gap: clamp(16px, 4vw, 32px);
|
|
}
|
|
|
|
.client-card {
|
|
background: white;
|
|
border-radius: clamp(12px, 3vw, 16px);
|
|
box-shadow: 0 4px 16px rgba(30, 64, 175, 0.07);
|
|
text-align: center;
|
|
padding: clamp(20px, 5vw, 32px);
|
|
}
|
|
|
|
.client-icon {
|
|
margin-bottom: 0.5rem;
|
|
font-size: clamp(1.5rem, 4vw, 2rem);
|
|
}
|
|
|
|
.client-name {
|
|
font-weight: 600;
|
|
color: var(--primary-blue);
|
|
margin-bottom: 0.375rem;
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
.client-industry {
|
|
color: var(--text-light);
|
|
font-size: clamp(12px, 3vw, 16px);
|
|
}
|
|
|
|
/* Founder Section */
|
|
.founder {
|
|
background: white;
|
|
padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.founder-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.founder-title {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: var(--primary-blue);
|
|
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
|
margin-bottom: clamp(24px, 6vw, 48px);
|
|
}
|
|
|
|
.founder-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
|
|
gap: clamp(30px, 8vw, 60px);
|
|
align-items: center;
|
|
}
|
|
|
|
.founder-card-container {
|
|
order: 2;
|
|
}
|
|
|
|
.founder-card {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
margin: 0 auto;
|
|
background: var(--founder-gradient);
|
|
border-radius: clamp(16px, 4vw, 24px);
|
|
text-align: center;
|
|
color: white;
|
|
box-shadow: 0 20px 40px rgba(30, 64, 175, 0.15);
|
|
padding: clamp(24px, 6vw, 40px);
|
|
}
|
|
|
|
.founder-avatar {
|
|
margin-bottom: 1.25rem;
|
|
font-size: clamp(2.5rem, 8vw, 4rem);
|
|
margin-bottom: clamp(12px, 3vw, 20px);
|
|
}
|
|
|
|
.founder-name {
|
|
font-weight: bold;
|
|
margin-bottom: 0.5rem;
|
|
font-size: clamp(1.3rem, 4vw, 1.8rem);
|
|
}
|
|
|
|
.founder-role {
|
|
opacity: 0.9;
|
|
margin-bottom: 1rem;
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
.founder-badges {
|
|
display: flex;
|
|
gap: clamp(8px, 2vw, 12px);
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.founder-badge {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: clamp(16px, 4vw, 20px);
|
|
font-weight: 600;
|
|
padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
|
|
font-size: clamp(10px, 2.5vw, 12px);
|
|
}
|
|
|
|
.founder-content {
|
|
order: 1;
|
|
}
|
|
|
|
.founder-text {
|
|
color: var(--text-light);
|
|
line-height: 1.8;
|
|
margin-bottom: 1.5rem;
|
|
font-size: clamp(16px, 4vw, 19px);
|
|
margin-bottom: clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.founder-text:last-of-type {
|
|
margin-bottom: 2rem;
|
|
margin-bottom: clamp(20px, 5vw, 32px);
|
|
}
|
|
|
|
.founder-quote {
|
|
background: var(--services-gradient);
|
|
border-left: 4px solid var(--primary-blue);
|
|
border-radius: clamp(12px, 3vw, 16px);
|
|
padding: clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.founder-quote-text {
|
|
color: var(--primary-blue);
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
/* Contact Section */
|
|
.contact {
|
|
background: var(--contact-gradient);
|
|
padding: clamp(40px, 10vw, 80px) clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.contact-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.contact-title {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
color: var(--primary-blue);
|
|
font-size: clamp(1.8rem, 5vw, 2.5rem);
|
|
margin-bottom: clamp(24px, 6vw, 48px);
|
|
}
|
|
|
|
.contact-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
|
|
gap: clamp(30px, 8vw, 60px);
|
|
align-items: start;
|
|
}
|
|
|
|
.contact-form {
|
|
background: white;
|
|
border-radius: clamp(16px, 4vw, 20px);
|
|
box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
|
|
padding: clamp(24px, 6vw, 40px);
|
|
}
|
|
|
|
.form-title {
|
|
font-weight: bold;
|
|
color: var(--primary-blue);
|
|
margin-bottom: 1.5rem;
|
|
font-size: clamp(1.2rem, 4vw, 1.5rem);
|
|
margin-bottom: clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-label {
|
|
display: block;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--primary-blue);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.form-input,
|
|
.form-textarea {
|
|
width: 100%;
|
|
border: 2px solid var(--border-light);
|
|
border-radius: clamp(8px, 2vw, 12px);
|
|
padding: clamp(12px, 3vw, 14px);
|
|
font-size: clamp(14px, 3.5vw, 16px);
|
|
transition: border-color 0.2s;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.form-input:focus,
|
|
.form-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--light-blue);
|
|
}
|
|
|
|
.form-textarea {
|
|
resize: vertical;
|
|
min-height: 120px;
|
|
}
|
|
|
|
.form-submit {
|
|
width: 100%;
|
|
background: var(--primary-gradient);
|
|
color: white;
|
|
font-weight: 600;
|
|
border: none;
|
|
cursor: pointer;
|
|
box-shadow: 0 4px 16px rgba(30, 64, 175, 0.20);
|
|
border-radius: clamp(8px, 2vw, 12px);
|
|
min-height: 48px;
|
|
padding: clamp(14px, 4vw, 16px);
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.form-submit:hover {
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 6px 16px rgba(30, 64, 175, 0.30);
|
|
background: var(--gradient-success);
|
|
}
|
|
|
|
.form-submit:active {
|
|
transform: translateY(0px);
|
|
box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
|
|
}
|
|
|
|
.contact-info {
|
|
background: white;
|
|
border-radius: clamp(16px, 4vw, 20px);
|
|
box-shadow: 0 8px 32px rgba(30, 64, 175, 0.08);
|
|
padding: clamp(24px, 6vw, 40px);
|
|
}
|
|
|
|
.contact-info-title {
|
|
font-weight: bold;
|
|
color: var(--primary-blue);
|
|
margin-bottom: 1.5rem;
|
|
font-size: clamp(1.2rem, 4vw, 1.5rem);
|
|
margin-bottom: clamp(16px, 4vw, 24px);
|
|
}
|
|
|
|
.contact-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: clamp(12px, 3vw, 16px);
|
|
margin-bottom: clamp(20px, 5vw, 32px);
|
|
}
|
|
|
|
.contact-icon {
|
|
background: var(--primary-gradient);
|
|
border-radius: clamp(8px, 2vw, 12px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
width: clamp(40px, 10vw, 50px);
|
|
height: clamp(40px, 10vw, 50px);
|
|
font-size: clamp(16px, 4vw, 20px);
|
|
}
|
|
|
|
.contact-details h4 {
|
|
font-weight: 600;
|
|
color: var(--primary-blue);
|
|
margin-bottom: 0.5rem;
|
|
font-size: clamp(16px, 4vw, 19px);
|
|
}
|
|
|
|
.contact-details p {
|
|
color: var(--text-light);
|
|
line-height: 1.6;
|
|
font-size: clamp(14px, 3.5vw, 16px);
|
|
}
|
|
|
|
.contact-email {
|
|
color: var(--primary-blue);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.commitment-statement {
|
|
background: var(--services-gradient);
|
|
border-left: 4px solid var(--primary-blue);
|
|
border-radius: clamp(12px, 3vw, 16px);
|
|
padding: clamp(16px, 4vw, 24px);
|
|
margin-top: clamp(20px, 5vw, 32px);
|
|
}
|
|
|
|
.commitment-text {
|
|
color: var(--primary-blue);
|
|
font-weight: 600;
|
|
text-align: center;
|
|
font-size: clamp(14px, 3.5vw, 18px);
|
|
}
|
|
|
|
/* Mobile responsive adjustments */
|
|
@media (max-width: 767px) {
|
|
.founder-card-container {
|
|
order: 1;
|
|
}
|
|
|
|
.founder-content {
|
|
order: 2;
|
|
}
|
|
} |