/* ============================================
   ZES - Zimbabwe Excellent Solutions
   Digital Transformation Website
   ============================================ */

/* Color Variables */
:root {
    --primary-blue: #0066CC;
    --dark-blue: #004499;
    --lime-green: #32CD32;
    --dark-lime-green: #228B22;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: var(--dark-gray);
    overflow-x: hidden;
    text-align: center;
}

/* Uniform Font Sizes */
h1, .h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

h3, .h3 {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

h4, .h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

h5, .h5 {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
}

h6, .h6 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

p, .p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
    text-align: center;
}

small, .small {
    font-size: 0.875rem;
    text-align: center;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 102, 204, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
    font-family: Arial, sans-serif;
}

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

.brand-text {
    background: linear-gradient(135deg, var(--white) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lime-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--lime-green) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 50%, var(--dark-lime-green) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(50, 205, 50, 0.2) 0%, transparent 50%);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -40px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, -20px) rotate(270deg);
        opacity: 0.7;
    }
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--lime-green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.cursor-hover {
    transform: scale(1.5);
    background: var(--lime-green);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(50, 205, 50, 0.5);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.animated-text-wrapper {
    display: inline-block;
    width: 100%;
}

.animated-text-static {
    display: inline-block;
    color: var(--white);
}

.animated-text-loop {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 400px;
    text-align: left;
    border-right: 3px solid var(--lime-green);
    padding-right: 10px;
    animation: blinkCursor 1s infinite, glow 2s ease-in-out infinite alternate;
    white-space: nowrap;
    font-weight: 800;
}

@keyframes blinkCursor {
    0%, 50% {
        border-color: var(--lime-green);
    }
    51%, 100% {
        border-color: transparent;
    }
}

.animated-text {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(50, 205, 50, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(50, 205, 50, 0.8), 0 0 40px rgba(50, 205, 50, 0.6);
    }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--lime-green);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    font-family: Arial, sans-serif;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--dark-lime-green) 100%);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

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

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-family: Arial, sans-serif;
}

/* Mission Section */
.mission-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    z-index: 2;
}

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

.mission-visual {
    position: relative;
    height: 400px;
}

.gradient-box {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    }
    50% {
        background: linear-gradient(135deg, var(--lime-green) 0%, var(--primary-blue) 100%);
    }
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
}

.floating-icons i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { animation-delay: 0s; }
.floating-icons i:nth-child(2) { animation-delay: 0.5s; }
.floating-icons i:nth-child(3) { animation-delay: 1s; }
.floating-icons i:nth-child(4) { animation-delay: 1.5s; }

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

/* Services Preview */
.services-preview {
    padding: 100px 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-top-color: var(--lime-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

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

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-family: Arial, sans-serif;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.impact-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.impact-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.impact-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-family: Arial, sans-serif;
}

.impact-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-lime-green) 0%, var(--lime-green) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Arial, sans-serif;
}

.footer-address {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-family: Arial, sans-serif;
}

.footer-address i {
    margin-right: 0.5rem;
    color: var(--lime-green);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--lime-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 0.75rem;
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-links a:hover {
    color: var(--lime-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--lime-green);
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        min-height: 100px;
    }
    
    .animated-text-loop {
        min-width: 280px;
        font-size: 1.5rem;
        display: inline-block;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-title {
        flex-direction: column;
        min-height: 150px;
    }
    
    .animated-text-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-visual {
        height: 300px;
        margin-top: 2rem;
    }
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional Unique Features */

/* 3D Card Tilt Effect */
.service-card,
.project-card,
.impact-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Glowing Text Effect */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(50, 205, 50, 0.5),
                     0 0 20px rgba(50, 205, 50, 0.3),
                     0 0 30px rgba(50, 205, 50, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(50, 205, 50, 0.8),
                     0 0 30px rgba(50, 205, 50, 0.6),
                     0 0 40px rgba(50, 205, 50, 0.4);
    }
}

/* Pulse Animation for Icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.service-icon:hover,
.project-icon:hover {
    animation: pulse 1s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
    pointer-events: none;
}

/* Gradient Border Animation */
@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.service-card:hover,
.project-card:hover {
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-blue), var(--lime-green)) border-box;
    border: 3px solid transparent;
    background-clip: padding-box, border-box;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-icons i {
    animation: float 3s ease-in-out infinite;
}

/* Ripple Effect on Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--lime-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Button Styles */
.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    font-family: Arial, sans-serif;
}

.page-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: Arial, sans-serif;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-image {
    position: relative;
    height: 400px;
}

.vision-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.vision-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.vision-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.vision-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-top: 4px solid var(--lime-green);
}

.value-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.value-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Services Page Styles */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-family: Arial, sans-serif;
}

.service-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: center;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-features li i {
    color: var(--lime-green);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.why-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.why-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Projects Page Styles */
.projects-section {
    padding: 80px 0;
}

.project-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-family: Arial, sans-serif;
}

.project-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: Arial, sans-serif;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.impact-statement {
    padding: 80px 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-form-card,
.contact-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    text-align: center;
}

.form-title,
.info-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-family: Arial, sans-serif;
}

.info-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-family: Arial, sans-serif;
    text-align: center;
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: var(--lime-green);
}

.social-links-contact h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    text-align: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--lime-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-section {
    padding: 80px 0;
}

.map-placeholder {
    background: var(--light-gray);
    border-radius: 20px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-card,
    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Global Center Alignment for All Text */
* {
    text-align: center;
}

/* Exceptions for form inputs and textareas - keep left-aligned for better UX */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
    text-align: left !important;
}

/* Navbar brand should be left-aligned */
.navbar-brand {
    text-align: left !important;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: var(--white);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        left: 20px;
    }
}

