/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: ‘Inter’, system-ui, -apple-system, sans-serif;
color: #0a1628;
background: #ffffff;
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }
/* ===== VARIABLES ===== */
:root {
–navy: #0a1628;
–blue-dark: #0a3d8f;
–blue-mid: #1565c0;
–blue-bright: #42a5f5;
–blue-light: #90caf9;
–blue-pale: #e8eef6;
–red: #d32f2f;
–red-dark: #b71c1c;
–red-light: #ef5350;
–white: #ffffff;
–gray: #3a5a8c;
–gray-border: #c5d5e8;
–card-bg: #f0f4f8;
–dark-card: #0f2240;
–dark-border: #1a3a5c;
}
/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.font-heading { font-family: ‘Montserrat’, ‘Inter’, sans-serif; }
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
from { opacity: 0; transform: translateX(-30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
50% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-12px); }
}
@keyframes pulse-glow {
0%, 100% { box-shadow: 0 0 20px rgba(66,165,245,0.3); }
50% { box-shadow: 0 0 40px rgba(66,165,245,0.6); }
}
.animate-fade-in-up {
opacity: 0;
animation: fadeInUp 0.8s ease-out forwards;
}
.animate-fade-in-left {
opacity: 0;
animation: fadeInLeft 0.8s ease-out forwards;
}
.animate-fade-in-right {
opacity: 0;
animation: fadeInRight 0.8s ease-out forwards;
}
.animate-bounce { animation: bounce 2s ease-in-out infinite; }
.in-view .reveal-up { animation: fadeInUp 0.7s ease-out forwards; }
.in-view .reveal-left { animation: fadeInLeft 0.7s ease-out forwards; }
.in-view .reveal-right { animation: fadeInRight 0.7s ease-out forwards; }
.reveal-up, .reveal-left, .reveal-right { opacity: 0; }
/* ===== NAVBAR ===== */
.navbar {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
transition: all 0.5s ease;
}
.navbar.scrolled {
background: rgba(10,22,40,0.95);
backdrop-filter: blur(12px);
box-shadow: 0 4px 20px rgba(10,61,143,0.1);
}
.navbar-inner {
display: flex; align-items: center; justify-content: space-between;
padding: 16px 24px; max-width: 1280px; margin: 0 auto;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-logo {
width: 40px; height: 40px; border-radius: 10px;
border: 2px solid rgba(66,165,245,0.5);
transition: all 0.3s; overflow: hidden;
object-fit: cover;
}
.navbar-brand:hover .navbar-logo {
border-color: rgba(211,47,47,0.7);
box-shadow: 0 0 15px rgba(66,165,245,0.4);
}
.navbar-brand-text { font-size: 14px; font-weight: 700; color: #e8eef6; letter-spacing: 0.5px; }
.navbar-brand-text span { color: #42a5f5; }
.navbar-brand-text .sub { font-weight: 400; color: #90caf9; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
position: relative; padding: 8px 16px; font-size: 14px; font-weight: 500;
color: #c5d5e8; transition: color 0.3s;
}
.nav-links a::after {
content: »; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
height: 2px; width: 0; background: var(–red); transition: width 0.3s;
}
.nav-links a:hover { color: #ffffff; }
.nav-links a:hover::after { width: 75%; }
.nav-cta {
display: inline-block; padding: 10px 24px; border-radius: 50px;
background: var(–red); color: var(–white); font-size: 14px; font-weight: 600;
transition: all 0.3s;
}
.nav-cta:hover { background: var(–red-dark); box-shadow: 0 0 20px rgba(211,47,47,0.4); }
.mobile-toggle {
display: none; padding: 8px; border-radius: 8px; color: #e8eef6; transition: background 0.3s;
}
.mobile-toggle:hover { background: var(–dark-border); }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu {
display: none; overflow: hidden; max-height: 0; opacity: 0;
transition: all 0.5s ease;
}
.mobile-menu.open { max-height: 500px; opacity: 1; }
.mobile-menu-inner {
border-top: 1px solid var(–dark-border);
background: rgba(10,22,40,0.95); backdrop-filter: blur(12px);
padding: 16px 24px 24px;
}
.mobile-menu a {
display: block; padding: 12px 16px; border-radius: 8px; font-size: 14px;
font-weight: 500; color: #c5d5e8; transition: all 0.3s;
}
.mobile-menu a:hover { background: var(–dark-border); color: var(–white); }
.mobile-menu .nav-cta {
display: block; text-align: center; margin-top: 16px; padding: 12px 24px;
}
@media (max-width: 1023px) {
.nav-links, .navbar > .nav-cta-wrap { display: none !important; }
.mobile-toggle { display: block; }
.mobile-menu { display: block; }
.navbar-brand-text { display: none; }
}
@media (min-width: 640px) {
.navbar-brand-text { display: block; }
}
/* ===== HERO ===== */
.hero {
position: relative; min-height: 100vh; overflow: hidden;
display: flex; align-items: center; justify-content: center;
}
.hero-bg {
position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
position: absolute; inset: 0;
background: linear-gradient(to bottom, rgba(10,22,40,0.80), rgba(10,22,40,0.70), rgba(10,22,40,0.95));
}
.hero-overlay2 {
position: absolute; inset: 0;
background: linear-gradient(to right, rgba(10,61,143,0.3), transparent, rgba(10,61,143,0.2));
}
.hero-grid {
position: absolute; inset: 0; opacity: 0.1;
background-image:
linear-gradient(rgba(66,165,245,0.3) 1px, transparent 1px),
linear-gradient(90deg, rgba(66,165,245,0.3) 1px, transparent 1px);
background-size: 60px 60px;
transition: transform 0.3s ease-out;
}
.hero-particle {
position: absolute; border-radius: 50%; background: var(–blue-bright);
opacity: 0.2; animation: float linear infinite; bottom: -10%;
}
.hero-orb {
position: absolute; border-radius: 50%; filter: blur(80px);
transition: transform 0.5s ease-out; pointer-events: none;
}
.hero-orb-blue {
top: 25%; left: 25%; width: 256px; height: 256px;
background: rgba(10,61,143,0.2); filter: blur(100px);
}
.hero-orb-red {
bottom: 25%; right: 25%; width: 192px; height: 192px;
background: rgba(211,47,47,0.15);
}
.hero-content {
position: relative; z-index: 10; text-align: center;
max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.hero-logo-wrap {
margin-bottom: 32px;
}
.hero-logo {
width: 112px; height: 112px; border-radius: 16px;
border: 2px solid rgba(66,165,245,0.4);
box-shadow: 0 0 40px rgba(66,165,245,0.3);
margin: 0 auto; overflow: hidden; object-fit: cover;
animation: pulse-glow 3s ease-in-out infinite;
}
@media (min-width: 768px) { .hero-logo { width: 144px; height: 144px; } }
.hero-title {
font-family: ‘Montserrat’, sans-serif;
font-size: clamp(2.2rem, 5vw, 4.5rem);
font-weight: 800; color: var(–white); line-height: 1.1;
letter-spacing: -0.02em;
}
.hero-title-gradient {
background: linear-gradient(to right, #42a5f5, #90caf9, #42a5f5);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-title-underline {
display: block; height: 4px; margin-top: 8px;
background: linear-gradient(to right, transparent, var(–red), transparent);
border-radius: 2px;
}
.hero-subtitle {
margin-top: 24px; max-width: 640px; margin-left: auto; margin-right: auto;
font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.6;
color: rgba(144,202,249,0.9);
}
.hero-buttons {
display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
gap: 16px; margin-top: 40px;
}
.btn-primary {
position: relative; overflow: hidden;
display: inline-flex; align-items: center; gap: 8px;
padding: 16px 32px; border-radius: 50px;
background: var(–red); color: var(–white);
font-size: 14px; font-weight: 600; transition: all 0.3s;
}
.btn-primary:hover {
box-shadow: 0 0 30px rgba(211,47,47,0.5); background: var(–red-dark);
}
.btn-secondary {
display: inline-flex; align-items: center; gap: 8px;
padding: 16px 32px; border-radius: 50px;
border: 2px solid rgba(66,165,245,0.5);
background: rgba(66,165,245,0.1);
color: var(–blue-bright); font-size: 14px; font-weight: 600;
backdrop-filter: blur(4px); transition: all 0.3s;
}
.btn-secondary:hover {
border-color: var(–blue-bright); background: rgba(66,165,245,0.2);
box-shadow: 0 0 20px rgba(66,165,245,0.2);
}
.hero-stats {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
max-width: 480px; margin: 64px auto 0;
}
.stat-number {
display: block; font-size: clamp(1.8rem, 3vw, 2.5rem);
font-weight: 700; color: var(–white);
}
.stat-label {
display: block; margin-top: 4px; font-size: 11px;
font-weight: 600; text-transform: uppercase;
letter-spacing: 1.5px; color: var(–blue-light);
}
.hero-scroll {
position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
color: rgba(66,165,245,0.6);
}
.hero-scroll svg { width: 32px; height: 32px; }
/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section-badge {
display: inline-block; border-radius: 50px; padding: 6px 16px;
font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.section-title {
font-family: ‘Montserrat’, sans-serif;
font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800;
line-height: 1.15; margin-top: 16px;
}
.section-subtitle {
max-width: 640px; margin: 16px auto 0; font-size: 18px;
line-height: 1.6;
}
.section-header { text-align: center; margin-bottom: 64px; }
.gradient-line {
height: 4px; width: 100%;
background: linear-gradient(to right, var(–blue-dark), var(–red), var(–blue-dark));
position: absolute; top: 0; left: 0;
}
/* ===== ABOUT SECTION ===== */
.about { background: var(–white); }
.about-grid {
display: grid; gap: 48px; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-image-wrap { position: relative; }
.about-image {
aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
box-shadow: 0 25px 50px rgba(10,61,143,0.1);
position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-overlay {
position: absolute; inset: 0;
background: linear-gradient(to top, rgba(10,22,40,0.6), transparent);
}
.about-image-label {
position: absolute; bottom: 24px; left: 24px; right: 24px;
font-size: 14px; font-weight: 500; color: #e8eef6;
}
.about-badge {
position: absolute; top: -16px; right: -16px;
border-radius: 12px; background: var(–red);
padding: 12px 20px; box-shadow: 0 10px 25px rgba(211,47,47,0.3);
text-align: center; z-index: 2;
}
.about-badge-number { display: block; font-size: 24px; font-weight: 800; color: var(–white); }
.about-badge-label {
display: block; font-size: 9px; font-weight: 600;
text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.8);
}
.highlight-card {
position: relative; overflow: hidden;
border: 1px solid var(–gray-border); background: var(–white);
border-radius: 12px; padding: 24px; transition: all 0.4s;
}
.highlight-card:hover {
border-color: rgba(10,61,143,0.3);
box-shadow: 0 20px 40px rgba(10,61,143,0.1);
}
.highlight-card::before {
content: »; position: absolute; top: 0; left: 0;
width: 4px; height: 100%;
background: linear-gradient(to bottom, var(–blue-dark), var(–blue-bright));
opacity: 0; transition: opacity 0.3s;
}
.highlight-card:hover::before { opacity: 1; }
.highlight-card-inner { display: flex; align-items: flex-start; gap: 16px; }
.highlight-icon {
width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
background: rgba(10,61,143,0.1); color: var(–blue-dark); transition: all 0.3s;
}
.highlight-card:hover .highlight-icon { background: var(–blue-dark); color: var(–white); }
.highlight-icon svg { width: 24px; height: 24px; }
.highlight-title { font-size: 18px; font-weight: 700; color: var(–navy); }
.highlight-desc { margin-top: 4px; font-size: 14px; line-height: 1.6; color: var(–gray); }
.highlights-list { display: flex; flex-direction: column; gap: 24px; }
/* ===== RESEARCH SECTION ===== */
.research { background: var(–navy); }
.research .section-badge { background: rgba(66,165,245,0.2); color: var(–blue-bright); }
.research .section-title { color: var(–white); }
.research .section-title span { color: var(–blue-bright); }
.research .section-subtitle { color: rgba(144,202,249,0.7); }
.research-bg-pattern {
position: absolute; inset: 0; opacity: 0.1;
background-image:
linear-gradient(rgba(66,165,245,0.2) 1px, transparent 1px),
linear-gradient(90deg, rgba(66,165,245,0.2) 1px, transparent 1px);
background-size: 80px 80px;
}
.research-bg-glow {
position: absolute; inset: 0; opacity: 0.05;
background:
radial-gradient(circle at 20% 50%, #42a5f5, transparent 50%),
radial-gradient(circle at 80% 50%, #d32f2f, transparent 50%);
}
.research-grid {
display: grid; gap: 24px;
}
@media (min-width: 640px) { .research-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .research-grid { grid-template-columns: repeat(3, 1fr); } }
.research-card {
position: relative; overflow: hidden;
border: 1px solid var(–dark-border);
background: rgba(15,34,64,0.8); backdrop-filter: blur(4px);
border-radius: 12px; padding: 32px; transition: all 0.5s;
}
.research-card:hover {
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
transform: translateY(-4px);
}
.research-card-glow {
position: absolute; top: -80px; right: -80px;
width: 160px; height: 160px; border-radius: 50%;
opacity: 0; filter: blur(60px); transition: opacity 0.4s;
}
.research-card:hover .research-card-glow { opacity: 0.2; }
.research-card-icon {
width: 56px; height: 56px; border-radius: 12px;
display: flex; align-items: center; justify-content: center;
transition: all 0.3s;
}
.research-card:hover .research-card-icon { transform: scale(1.1); }
.research-card-icon svg { width: 28px; height: 28px; }
.research-card h3 { margin-top: 20px; font-size: 18px; font-weight: 700; color: #e8eef6; }
.research-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: rgba(144,202,249,0.7); }
.research-card-line {
position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
transition: width 0.5s;
}
.research-card:hover .research-card-line { width: 100%; }
/* ===== SERVICES SECTION ===== */
.services { background: var(–card-bg); }
.services .section-badge { background: rgba(211,47,47,0.1); color: var(–red); }
.services .section-title { color: var(–navy); }
.services .section-title span { color: var(–blue-dark); }
.services .section-subtitle { color: var(–gray); }
.services-tabs {
display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
gap: 12px; max-width: 640px; margin: 0 auto 48px;
}
.tab-btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 600;
background: var(–white); color: var(–gray); border: 1px solid var(–gray-border);
transition: all 0.3s;
}
.tab-btn:hover { background: var(–blue-pale); }
.tab-btn.active { color: var(–white); border-color: transparent; }
.tab-btn svg { width: 16px; height: 16px; }
.tab-header {
display: flex; align-items: center; gap: 16px;
border-radius: 16px; padding: 24px; color: var(–white); margin-bottom: 32px;
}
.tab-header-icon {
width: 56px; height: 56px; border-radius: 12px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
background: rgba(255,255,255,0.2);
}
.tab-header-icon svg { width: 28px; height: 28px; }
.tab-header h3 { font-size: 20px; font-weight: 700; }
.tab-header p { font-size: 14px; color: rgba(255,255,255,0.8); }
.service-items { display: flex; flex-direction: column; gap: 16px; }
.service-item {
display: flex; align-items: flex-start; gap: 16px;
border: 1px solid var(–gray-border); background: var(–white);
border-radius: 12px; padding: 24px; transition: all 0.3s;
}
.service-item:hover {
border-color: transparent;
box-shadow: 0 20px 40px rgba(10,61,143,0.1);
transform: translateY(-2px);
}
.service-item-icon {
width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
transition: all 0.3s;
}
.service-item-icon svg { width: 20px; height: 20px; }
.service-item p { font-size: 14px; line-height: 1.6; color: var(–navy); flex: 1; }
.service-item-arrow { flex-shrink: 0; transition: transform 0.3s; }
.service-item:hover .service-item-arrow { transform: translateX(4px); }
.service-item-arrow svg { width: 20px; height: 20px; }
.services-content { max-width: 896px; margin: 0 auto; }
.services-cta { text-align: center; margin-top: 64px; }
.btn-blue {
display: inline-flex; align-items: center; gap: 8px;
padding: 16px 32px; border-radius: 50px;
background: var(–blue-dark); color: var(–white);
font-size: 14px; font-weight: 600; transition: all 0.3s;
}
.btn-blue:hover {
background: var(–navy); box-shadow: 0 0 30px rgba(10,61,143,0.4);
}
/* ===== TEAM SECTION ===== */
.team { background: var(–white); }
.team .section-badge { background: rgba(10,61,143,0.1); color: var(–blue-dark); }
.team .section-title { color: var(–navy); }
.team .section-title span { color: var(–blue-dark); }
.team .section-subtitle { color: var(–gray); }
.team-grid {
display: grid; gap: 24px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
position: relative; overflow: hidden;
border: 1px solid var(–gray-border); background: var(–white);
border-radius: 12px; padding: 24px; text-align: center;
transition: all 0.5s;
}
.team-card:hover {
border-color: transparent;
box-shadow: 0 20px 40px rgba(10,61,143,0.12);
transform: translateY(-4px);
}
.team-card-accent {
position: absolute; top: 0; left: 0; right: 0; height: 4px; opacity: 0.3;
transition: opacity 0.3s;
}
.team-card-accent-fill {
position: absolute; top: 0; left: 0; height: 4px; width: 0;
transition: width 0.5s;
}
.team-card:hover .team-card-accent-fill { width: 100%; }
.team-avatar {
width: 80px; height: 80px; border-radius: 50%; margin: 0 auto;
display: flex; align-items: center; justify-content: center;
font-size: 24px; font-weight: 700; color: var(–white);
transition: all 0.3s;
}
.team-card:hover .team-avatar { transform: scale(1.1); }
.team-card h3 { margin-top: 16px; font-size: 16px; font-weight: 700; color: var(–navy); }
.team-card .role { margin-top: 4px; font-size: 14px; font-weight: 500; }
.team-card .area {
display: inline-block; margin-top: 8px;
border-radius: 50px; background: var(–blue-pale);
padding: 4px 12px; font-size: 12px; font-weight: 500; color: var(–gray);
}
.team-card-actions {
display: flex; align-items: center; justify-content: center; gap: 12px;
margin-top: 16px; opacity: 0; transition: opacity 0.3s;
}
.team-card:hover .team-card-actions { opacity: 1; }
.team-action-btn {
width: 32px; height: 32px; border-radius: 50%;
background: var(–blue-pale); color: var(–gray);
display: flex; align-items: center; justify-content: center;
transition: all 0.3s;
}
.team-action-btn:hover { background: var(–blue-dark); color: var(–white); }
.team-action-btn svg { width: 16px; height: 16px; }
.team-cta { text-align: center; margin-top: 48px; }
.btn-outline-blue {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 32px; border-radius: 50px;
border: 2px solid var(–blue-dark); color: var(–blue-dark);
font-size: 14px; font-weight: 600; transition: all 0.3s;
}
.btn-outline-blue:hover { background: var(–blue-dark); color: var(–white); }
/* ===== CONTACT SECTION ===== */
.contact { background: var(–navy); }
.contact .section-badge { background: rgba(211,47,47,0.2); color: var(–red-light); }
.contact .section-title { color: var(–white); }
.contact .section-title span { color: var(–blue-bright); }
.contact .section-subtitle { color: rgba(144,202,249,0.7); }
.contact-grid {
display: grid; gap: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form {
display: flex; flex-direction: column; gap: 20px;
border: 1px solid var(–dark-border);
background: rgba(15,34,64,0.8); backdrop-filter: blur(4px);
border-radius: 16px; padding: 32px;
}
.form-row {
display: grid; gap: 20px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; color: var(–blue-light); }
.form-input {
width: 100%; padding: 12px 16px; border-radius: 8px;
border: 1px solid var(–dark-border); background: var(–navy);
font-size: 14px; color: #e8eef6; outline: none; transition: all 0.3s;
}
.form-input::placeholder { color: var(–gray); }
.form-input:focus { border-color: var(–blue-bright); box-shadow: 0 0 0 3px rgba(66,165,245,0.2); }
textarea.form-input { resize: none; min-height: 120px; }
.btn-submit {
display: inline-flex; align-items: center; justify-content: center; gap: 8px;
padding: 16px 32px; border-radius: 50px; border: none;
background: var(–red); color: var(–white);
font-size: 14px; font-weight: 600; transition: all 0.3s; cursor: pointer;
}
.btn-submit:hover { background: var(–red-dark); box-shadow: 0 0 25px rgba(211,47,47,0.4); }
.btn-submit svg { transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
display: flex; align-items: flex-start; gap: 16px;
border: 1px solid var(–dark-border); background: rgba(15,34,64,0.5);
backdrop-filter: blur(4px); border-radius: 12px; padding: 20px;
transition: all 0.3s;
}
.contact-info-card:hover { border-color: rgba(66,165,245,0.3); background: rgba(15,34,64,0.8); }
.contact-info-icon {
width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
background: rgba(66,165,245,0.1); color: var(–blue-bright);
transition: all 0.3s;
}
.contact-info-card:hover .contact-info-icon { background: rgba(66,165,245,0.2); }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-size: 14px; font-weight: 700; color: #e8eef6; }
.contact-info-card p { margin-top: 4px; font-size: 14px; line-height: 1.6; color: rgba(144,202,249,0.7); }
.contact-map {
border-radius: 12px; overflow: hidden; border: 1px solid var(–dark-border);
}
.contact-map iframe { opacity: 0.7; transition: opacity 0.3s; display: block; }
.contact-map:hover iframe { opacity: 1; }
/* ===== FOOTER ===== */
.footer { background: #060e1a; padding-top: 64px; padding-bottom: 32px; position: relative; }
.footer .gradient-line { background: linear-gradient(to right, var(–blue-dark), var(–red), var(–blue-bright)); }
.footer-grid {
display: grid; gap: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo {
width: 40px; height: 40px; border-radius: 8px; overflow: hidden;
border: 1px solid var(–dark-border); object-fit: cover;
}
.footer-brand-name { font-size: 14px; font-weight: 700; color: #e8eef6; }
.footer-brand-sub { font-size: 12px; color: var(–gray); }
.footer-desc { margin-top: 16px; font-size: 14px; line-height: 1.6; color: var(–gray); }
.footer-heading {
font-size: 12px; font-weight: 700; text-transform: uppercase;
letter-spacing: 1.5px; color: #e8eef6; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: var(–gray); transition: color 0.3s; }
.footer-links a:hover { color: var(–blue-bright); }
.newsletter-desc { font-size: 14px; color: var(–gray); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
flex: 1; padding: 10px 16px; border-radius: 8px;
border: 1px solid var(–dark-border); background: var(–navy);
font-size: 14px; color: #e8eef6; outline: none; transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(–gray); }
.newsletter-input:focus { border-color: var(–blue-bright); }
.newsletter-btn {
flex-shrink: 0; padding: 10px 16px; border-radius: 8px;
background: var(–red); color: var(–white);
font-size: 14px; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer;
}
.newsletter-btn:hover { background: var(–red-dark); }
.footer-bottom {
display: flex; flex-direction: column; align-items: center; justify-content: space-between;
gap: 16px; border-top: 1px solid var(–dark-border); margin-top: 48px; padding-top: 32px;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { font-size: 12px; color: var(–gray); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(–gray); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(–blue-bright); }
/* ===== DECORATIVE BLURS ===== */
.blur-orb {
position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
}
/* ===== TAB TRANSITIONS ===== */
.tab-content { animation: fadeInUp 0.4s ease-out; }
Power Electronics
Research Group
Grupo de investigación de la Universidad Tecnológica de Pereira dedicado a la innovación en electrónica de potencia, calidad de energía y sistemas eléctricos.
Años
Proyectos
Investigadores
Impulsando la Innovación en Electrónica de Potencia
Somos un grupo de investigación adscrito a la Facultad de Ingenierías de la Universidad Tecnológica de Pereira, enfocado en el desarrollo de soluciones tecnológicas en el campo de la electrónica de potencia y los sistemas eléctricos.
Laboratorio de Electrónica de Potencia – UTP
MinCiencias
Misión
Desarrollar investigación de alto impacto en electrónica de potencia, contribuyendo al avance tecnológico y a la formación de profesionales altamente capacitados.
Visión
Ser referentes nacionales e internacionales en investigación de electrónica de potencia, calidad de energía y eficiencia energética.
Reconocimiento
Grupo reconocido por MinCiencias con amplia trayectoria en proyectos de investigación, desarrollo tecnológico e innovación.
Áreas de Conocimiento
Nuestras líneas de investigación abarcan los campos más relevantes de la electrónica de potencia moderna.
Convertidores Electrónicos
Diseño y desarrollo de convertidores DC-DC, DC-AC y AC-DC para aplicaciones industriales y de energía renovable.
Calidad de Energía
Estudio, medición y mejora de la calidad de energía eléctrica en sistemas de potencia y distribución.
Energías Renovables
Integración de fuentes de generación renovable mediante convertidores electrónicos de potencia.
Eficiencia Energética
Evaluación y optimización de la eficiencia en sistemas eléctricos, electrónicos y de conversión de energía.
Sistemas de Control
Implementación de estrategias de control digital para convertidores de potencia y accionamientos eléctricos.
Iluminación y Electrónica
Investigación aplicada en sistemas de iluminación eficiente y electrónica de potencia para nuevas tecnologías.
Nuestros Servicios
Ofrecemos un amplio portafolio de servicios en investigación, docencia y extensión universitaria.
Investigadores y Colaboradores
Contamos con un equipo multidisciplinario de investigadores con formación doctoral y experiencia internacional.
Trabajemos Juntos
¿Tienes un proyecto en mente? Contáctanos y exploremos cómo podemos colaborar.
Enviar Mensaje
Dirección
Universidad Tecnológica de Pereira, La Julita, Pereira, Risaralda, Colombia
Teléfono
+57 (606) 313 7300
Correo Electrónico
perg@utp.edu.co
Horario de Atención
Lunes a Viernes: 8:00 AM – 12:00 PM / 2:00 PM – 6:00 PM
// ===== NAVBAR SCROLL =====
var navbar = document.getElementById(‘navbar’);
window.addEventListener(‘scroll’, function() {
if (window.scrollY > 50) {
navbar.classList.add(‘scrolled’);
} else {
navbar.classList.remove(‘scrolled’);
}
});
// ===== MOBILE MENU =====
var mobileToggle = document.getElementById(‘mobileToggle’);
var mobileMenu = document.getElementById(‘mobileMenu’);
var menuIcon = document.getElementById(‘menuIcon’);
var closeIcon = document.getElementById(‘closeIcon’);
mobileToggle.addEventListener(‘click’, function() {
mobileMenu.classList.toggle(‘open’);
var isOpen = mobileMenu.classList.contains(‘open’);
menuIcon.style.display = isOpen ? ‘none’ : ‘block’;
closeIcon.style.display = isOpen ? ‘block’ : ‘none’;
mobileToggle.setAttribute(‘aria-label’, isOpen ? ‘Cerrar menu’ : ‘Abrir menu’);
});
function closeMobile() {
mobileMenu.classList.remove(‘open’);
menuIcon.style.display = ‘block’;
closeIcon.style.display = ‘none’;
}
// ===== HERO PARALLAX =====
var heroGrid = document.getElementById(‘heroGrid’);
var orbBlue = document.getElementById(‘orbBlue’);
var orbRed = document.getElementById(‘orbRed’);
document.addEventListener(‘mousemove’, function(e) {
var x = (e.clientX / window.innerWidth – 0.5) * 20;
var y = (e.clientY / window.innerHeight – 0.5) * 20;
if (heroGrid) heroGrid.style.transform = ‘translate(‘ + (x * 0.3) + ‘px, ‘ + (y * 0.3) + ‘px)’;
if (orbBlue) orbBlue.style.transform = ‘translate(‘ + x + ‘px, ‘ + y + ‘px)’;
if (orbRed) orbRed.style.transform = ‘translate(‘ + (-x * 0.5) + ‘px, ‘ + (-y * 0.5) + ‘px)’;
});
// ===== ANIMATED COUNTERS =====
var counters = document.querySelectorAll(‘.stat-number[data-target]’);
var counterStarted = false;
function animateCounters() {
if (counterStarted) return;
counterStarted = true;
counters.forEach(function(counter) {
var target = parseInt(counter.getAttribute(‘data-target’));
var current = 0;
var step = Math.ceil(target / 125);
var timer = setInterval(function() {
current += step;
if (current >= target) {
counter.textContent = target + ‘+’;
clearInterval(timer);
} else {
counter.textContent = current + ‘+’;
}
}, 16);
});
}
var statsObserver = new IntersectionObserver(function(entries) {
entries.forEach(function(entry) {
if (entry.isIntersecting) animateCounters();
});
}, { threshold: 0.5 });
var statsEl = document.querySelector(‘.hero-stats’);
if (statsEl) statsObserver.observe(statsEl);
// ===== INTERSECTION OBSERVER FOR SECTIONS =====
var sections = document.querySelectorAll(‘.observe-section’);
var sectionObserver = new IntersectionObserver(function(entries) {
entries.forEach(function(entry) {
if (entry.isIntersecting) {
entry.target.classList.add(‘in-view’);
}
});
}, { threshold: 0.1 });
sections.forEach(function(section) {
sectionObserver.observe(section);
});
// ===== SERVICES TABS =====
var servicesData = {
investigacion: {
title: ‘En Investigaci\u00f3n’,
color: ‘#0a3d8f’,
lightBg: ‘rgba(10,61,143,0.06)’,
icon: »,
items: [
{
icon: »,
text: ‘Gesti\u00f3n, formulaci\u00f3n y administraci\u00f3n de proyectos de investigaci\u00f3n de impacto nacional e internacional.’
},
{
icon: »,
text: ‘Escenario para el desarrollo de pr\u00e1cticas universitarias.’
}
]
},
docencia: {
title: ‘En Docencia’,
color: ‘#1565c0’,
lightBg: ‘rgba(21,101,192,0.06)’,
icon: »,
items: [
{
icon: »,
text: ‘Formulaci\u00f3n y orientaci\u00f3n de oferta acad\u00e9mica en cursos de pregrado, posgrado y formaci\u00f3n continua.’
}
]
},
extension: {
title: ‘En Extensi\u00f3n’,
color: ‘#d32f2f’,
lightBg: ‘rgba(211,47,47,0.06)’,
icon: »,
items: [
{
icon: »,
text: ‘Dise\u00f1o, construcci\u00f3n, validaci\u00f3n, prueba y ensayo de convertidores el\u00e9ctricos y electr\u00f3nicos para integraci\u00f3n de fuentes de generaci\u00f3n de energ\u00eda.’
},
{
icon: »,
text: ‘Medici\u00f3n, evaluaci\u00f3n y estudio de la calidad de energ\u00eda el\u00e9ctrica y potencia el\u00e9ctrica.’
},
{
icon: »,
text: ‘Evaluaci\u00f3n y an\u00e1lisis de la eficiencia energ\u00e9tica en sistemas el\u00e9ctricos y electr\u00f3nicos y de conversi\u00f3n de energ\u00eda.’
},
{
icon: »,
text: ‘Orientaci\u00f3n de talleres, seminarios, cursos, diplomados.’
},
{
icon: »,
text: ‘Consultor\u00eda, asesor\u00eda, asistencia t\u00e9cnica, interventor\u00edas de proyectos espec\u00edficos relacionados con el sector el\u00e9ctrico y el sector de la educaci\u00f3n superior.’
}
]
}
};
function renderServices(tabId) {
var data = servicesData[tabId];
var container = document.getElementById(‘servicesContent’);
var html = ‘
html += ‘
html += ‘
‘;
html += ‘
‘ + data.title + ‘
‘;
html += ‘
‘ + data.items.length + ‘ servicio’ + (data.items.length > 1 ? ‘s’ : ») + ‘ disponible’ + (data.items.length > 1 ? ‘s’ : ») + ‘
‘;
html += ‘
‘;
html += ‘
data.items.forEach(function(item) {
html += ‘
html += ‘
‘;
html += ‘
‘ + item.text + ‘
‘;
html += ‘
‘;
html += ‘
‘;
});
html += ‘
‘;
container.innerHTML = html;
}
// Initialize services
renderServices(‘investigacion’);
// Tab switching
document.querySelectorAll(‘.tab-btn’).forEach(function(btn) {
btn.addEventListener(‘click’, function() {
var tabId = this.getAttribute(‘data-tab’);
var tabData = servicesData[tabId];
// Update active states
document.querySelectorAll(‘.tab-btn’).forEach(function(b) {
b.classList.remove(‘active’);
b.style.background = »;
b.style.color = »;
b.style.boxShadow = »;
b.style.borderColor = »;
});
this.classList.add(‘active’);
this.style.background = tabData.color;
this.style.color = ‘#ffffff’;
this.style.boxShadow = ‘0 10px 25px ‘ + tabData.color + ’66’;
this.style.borderColor = ‘transparent’;
renderServices(tabId);
});
});
// ===== TEAM GRID =====
var teamMembers = [
{ name: ‘PhD. Investigador Principal’, role: ‘Director del Grupo’, area: ‘Electronica de Potencia’, color: ‘#0a3d8f’, initials: ‘IP’ },
{ name: ‘PhD. Investigador Senior’, role: ‘Co-investigador’, area: ‘Calidad de Energia’, color: ‘#1565c0’, initials: ‘IS’ },
{ name: ‘MSc. Investigador’, role: ‘Co-investigador’, area: ‘Convertidores DC-DC’, color: ‘#42a5f5’, initials: ‘MI’ },
{ name: ‘MSc. Investigador’, role: ‘Investigador Asociado’, area: ‘Energias Renovables’, color: ‘#d32f2f’, initials: ‘MA’ },
{ name: ‘Ing. Investigador Junior’, role: ‘Estudiante Doctorado’, area: ‘Control Digital’, color: ‘#0a3d8f’, initials: ‘IJ’ },
{ name: ‘Ing. Investigador Junior’, role: ‘Estudiante Maestria’, area: ‘Eficiencia Energetica’, color: ‘#1565c0’, initials: ‘IJ’ }
];
var teamGrid = document.getElementById(‘teamGrid’);
teamMembers.forEach(function(member, i) {
var card = document.createElement(‘div’);
card.className = ‘team-card reveal-up’;
card.style.animationDelay = (0.2 + i * 0.1) + ‘s’;
card.innerHTML =
‘
‘ +
‘
‘ +
‘
‘ +
‘
‘ + member.name + ‘
‘ +
‘
‘ + member.role + ‘
‘ +
‘‘ + member.area + ‘‘ +
‘
‘‘ +
‘‘ +
‘
‘;
teamGrid.appendChild(card);
});