:root {
--primary: #7c4dff;
--secondary: #ff4081;
--accent: #18ffff;
--dark: #1a237e;
--light: #f5f5f7;
--gray: #5f6368;
--success: #4caf50;
--warning: #ff9800;
--dark-gradient: linear-gradient(135deg, var(--dark) 0%, #311b92 100%);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
color: #333;
line-height: 1.6;
background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
overflow-x: hidden;
position: relative;
}
a {
color: #333;
text-decoration: none;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
}
/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
0% { transform: translateY(0px) rotate(3deg); }
50% { transform: translateY(-20px) rotate(3deg); }
100% { transform: translateY(0px) rotate(3deg); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
/* Header Styles */
header {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(10px);
animation: fadeIn 0.8s ease-out;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 0;
}
.logo {
display: flex;
align-items: center;
}
.logo-icon {
color: var(--primary);
font-size: 28px;
margin-right: 10px;
}
.logo-text {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 24px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
nav ul {
display: flex;
list-style: none;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
position: relative;
padding: 5px 0;
}
nav ul li a.active {
color: var(--primary);
border-bottom: 3px solid var(--primary);
}
nav ul li a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s ease;
}
nav ul li a:hover:after {
width: 100%;
}
nav ul li a:hover {
color: var(--primary);
}
.cta-button {
background: linear-gradient(45deg, var(--primary), var(--secondary));
color: white;
border: none;
padding: 12px 28px;
border-radius: 30px;
font-weight: 500;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
box-shadow: 0 4px 15px rgba(124, 77, 255, 0.4);
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(124, 77, 255, 0.6);
animation: pulse 1s infinite;
}
/* Mobile Menu */
.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 21px;
cursor: pointer;
position: relative;
z-index: 1001;
}
.menu-toggle span {
display: block;
height: 3px;
width: 100%;
background: var(--dark);
border-radius: 3px;
transition: all 0.3s ease;
}
.mobile-nav {
position: fixed;
top: 0;
right: 0;
width: 85%;
max-width: 300px;
z-index: 1000;
background: rgba(26, 35, 126, 0.95);
padding: 25px;
overflow-y: auto;
display: none;
transition: opacity 0.3s ease;
opacity: 0;
transform: translateX(100%);
transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-nav.active {
display: block;
opacity: 1;
transform: translateX(0);
}
.mobile-nav::before {
content: "Menu";
display: block;
color: var(--accent);
font-weight: 700;
font-size: 22px;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-nav ul {
list-style: none;
}
.mobile-nav ul li {
margin-bottom: 8px;
}
.mobile-nav ul li a {
text-decoration: none;
color: white;
font-size: 18px;
display: block;
padding: 16px 20px;
border-radius: 8px;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.08);
}
.mobile-nav ul li a:hover {
background: rgba(255, 255, 255, 0.15);
transform: translateX(5px);
}
.close-menu {
position: absolute;
top: 25px;
right: 25px;
font-size: 24px;
cursor: pointer;
background: rgba(255, 255, 255, 0.15);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
display: none;
transition: opacity 0.3s ease;
opacity: 0;
}
.overlay.active {
display: block;
opacity: 1;
}
/* Breadcrumbs */
.breadcrumbs {
padding: 20px 0;
background: white;
border-radius: 10px;
margin: 30px 0;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.breadcrumbs ul {
display: flex;
list-style: none;
}
.breadcrumbs li {
margin-right: 10px;
font-size: 14px;
color: var(--gray);
}
.breadcrumbs li:after {
content: '/';
margin-left: 10px;
color: var(--gray);
}
.breadcrumbs li:last-child:after {
content: none;
}
.breadcrumbs a {
color: var(--primary);
text-decoration: none;
}
.breadcrumbs a:hover {
text-decoration: underline;
}
/* Page Header */
.page-header {
margin: 50px 0 40px;
padding: 0 20px;
text-align: center;
}
.page-header h1 {
font-family: 'Montserrat', sans-serif;
font-size: 42px;
color: var(--dark);
margin-bottom: 20px;
background: linear-gradient(45deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
.page-header p {
font-size: 18px;
color: var(--gray);
max-width: 700px;
line-height: 1.8;
margin: 0 auto;
}
/* About Hero */
.about-hero {
display: flex;
gap: 50px;
align-items: center;
margin: 60px 0;
animation: fadeIn 0.8s ease-out;
}
.hero-image {
flex: 1;
height: 500px;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
background: linear-gradient(135deg, var(--primary), var(--secondary));
display: flex;
align-items: center;
justify-content: center;
}
.hero-image i {
font-size: 160px;
color: white;
opacity: 0.8;
}
.hero-content {
flex: 1;
}
.hero-content h2 {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
margin-bottom: 25px;
color: var(--dark);
}
.hero-content p {
font-size: 18px;
color: #444;
line-height: 1.8;
margin-bottom: 30px;
}
/* Mission Section */
.mission-section {
background: white;
border-radius: 20px;
padding: 60px;
margin: 80px 0;
box-shadow: 0 10px 40px rgba(0,0,0,0.08);
animation: fadeIn 0.8s ease-out;
}
.mission-header {
text-align: center;
margin-bottom: 50px;
}
.mission-header h2 {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
margin-bottom: 20px;
color: var(--dark);
}
.mission-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 30px;
}
.mission-card {
background: var(--light);
border-radius: 15px;
padding: 30px;
text-align: center;
transition: all 0.3s ease;
}
.mission-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mission-card i {
font-size: 50px;
color: var(--primary);
margin-bottom: 20px;
}
.mission-card h3 {
font-size: 22px;
margin-bottom: 15px;
color: var(--dark);
}
.mission-card p {
color: var(--gray);
line-height: 1.7;
}
/* Stats Section */
.stats-section {
background: linear-gradient(135deg, var(--dark), #311b92);
border-radius: 20px;
padding: 80px 40px;
margin: 80px 0;
color: white;
text-align: center;
animation: fadeIn 0.8s ease-out;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
}
.stat-card {
padding: 20px;
}
.stat-number {
font-family: 'Montserrat', sans-serif;
font-size: 48px;
font-weight: 800;
margin-bottom: 10px;
color: var(--accent);
}
.stat-label {
font-size: 18px;
opacity: 0.9;
}
/* Team Section */
.team-section {
margin: 80px 0;
animation: fadeIn 0.8s ease-out;
}
.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-header h2 {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
margin-bottom: 15px;
color: var(--dark);
}
.section-header p {
color: var(--gray);
max-width: 700px;
margin: 0 auto;
font-size: 18px;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
}
.team-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.4s ease;
}
.team-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.team-image {
height: 300px;
background: linear-gradient(45deg, #f5f7fa, #e4edf5);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.team-image i {
font-size: 80px;
color: var(--primary);
opacity: 0.7;
}
.team-info {
padding: 25px;
text-align: center;
}
.team-info h3 {
font-size: 22px;
margin-bottom: 5px;
color: var(--dark);
}
.team-position {
color: var(--primary);
font-weight: 500;
margin-bottom: 15px;
}
.team-social {
display: flex;
justify-content: center;
gap: 12px;
margin-top: 15px;
}
.social-link {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--light);
color: var(--primary);
transition: all 0.3s ease;
}
.social-link:hover {
background: var(--primary);
color: white;
}
/* Values Section */
.values-section {
margin: 80px 0;
animation: fadeIn 0.8s ease-out;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.value-card {
background: white;
border-radius: 15px;
padding: 40px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
position: relative;
overflow: hidden;
}
.value-card:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: var(--primary);
}
.value-card h3 {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
margin-bottom: 15px;
color: var(--dark);
}
.value-card p {
color: var(--gray);
line-height: 1.8;
}
.value-icon {
font-size: 40px;
color: var(--primary);
margin-bottom: 20px;
}
/* Sustainability */
.sustainability-section {
background: linear-gradient(to right, #f5f7fa, #e4edf5);
border-radius: 20px;
padding: 70px 50px;
margin: 80px 0;
display: flex;
align-items: center;
gap: 50px;
animation: fadeIn 0.8s ease-out;
}
.sustainability-content {
flex: 1;
}
.sustainability-image {
flex: 1;
height: 400px;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
background: linear-gradient(135deg, var(--success), #8bc34a);
display: flex;
align-items: center;
justify-content: center;
}
.sustainability-image i {
font-size: 140px;
color: white;
opacity: 0.9;
}
.sustainability-content h2 {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
margin-bottom: 25px;
color: var(--dark);
}
.sustainability-content p {
color: var(--gray);
line-height: 1.8;
margin-bottom: 30px;
font-size: 18px;
}
.sustainability-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 40px;
}
.sustainability-stat {
background: white;
padding: 20px;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.sustainability-stat h4 {
font-size: 20px;
color: var(--success);
margin-bottom: 10px;
}
/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 20px;
padding: 70px;
margin: 80px 0;
text-align: center;
color: white;
animation: fadeIn 0.8s ease-out;
}
.cta-section h2 {
font-family: 'Montserrat', sans-serif;
font-size: 42px;
margin-bottom: 20px;
}
.cta-section p {
max-width: 700px;
margin: 0 auto 40px;
font-size: 18px;
opacity: 0.9;
}
.cta-button.white {
background: white;
color: var(--primary);
font-weight: 600;
padding: 15px 40px;
font-size: 18px;
}
.cta-button.white:hover {
box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}
/* Footer */
footer {
background: var(--dark);
color: white;
padding: 100px 0 30px;
margin-top: 80px;
}
.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}
.footer-logo {
font-family: 'Montserrat', sans-serif;
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
color: var(--accent);
}
.footer-about p {
opacity: 0.8;
margin-bottom: 20px;
}
.social-icons {
display: flex;
gap: 15px;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
color: white;
transition: all 0.3s ease;
}
.social-icons a:hover {
background: var(--primary);
transform: translateY(-3px);
}
.footer-links h3 {
font-size: 18px;
margin-bottom: 20px;
color: var(--accent);
}
.footer-links ul {
list-style: none;
}
.footer-links ul li {
margin-bottom: 12px;
}
.footer-links ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
}
.footer-links ul li a:hover {
color: var(--accent);
padding-left: 5px;
}
.footer-contact h3 {
font-size: 18px;
margin-bottom: 20px;
color: var(--accent);
}
.contact-info {
margin-bottom: 20px;
}
.contact-info p {
display: flex;
align-items: center;
margin-bottom: 10px;
opacity: 0.8;
}
.contact-info i {
margin-right: 10px;
color: var(--accent);
}
.copyright {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
font-size: 14px;
opacity: 0.7;
}
/* Responsive Design */
@media (max-width: 1200px) {
.hero-image {
height: 400px;
}
}
@media (max-width: 992px) {
.about-hero {
flex-direction: column;
}
.hero-image, .hero-content {
width: 100%;
}
.sustainability-section {
flex-direction: column;
}
.sustainability-image {
width: 100%;
}
}
@media (max-width: 768px) {
nav ul {
display: none;
}
.menu-toggle {
display: flex;
}
.page-header h1 {
font-size: 36px;
}
.hero-content h2 {
font-size: 30px;
}
.mission-section {
padding: 40px;
}
.stats-section {
padding: 60px 20px;
}
.stat-number {
font-size: 36px;
}
.cta-section {
padding: 50px 20px;
}
.cta-section h2 {
font-size: 32px;
}
}
@media (max-width: 576px) {
.page-header h1 {
font-size: 32px;
}
.hero-image {
height: 300px;
}
.hero-image i {
font-size: 100px;
}
.section-header h2 {
font-size: 28px;
}
.sustainability-stats {
grid-template-columns: 1fr;
}
.cta-section h2 {
font-size: 28px;
}
}