/* Data Zenix - Enhanced UI/UX Styles
   Modern, professional design with 3D effects and animations
*/

:root {
    /* Enhanced color scheme */
    --primary-color: #2563eb;
    --primary-color-dark: #1d4ed8;
    --primary-color-light: #3b82f6;
    --secondary-color: #10b981;
    --secondary-color-dark: #059669;
    --secondary-color-light: #34d399;
    --accent-color: #8b5cf6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-extra-light: #94a3b8;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Gradient backgrounds */
    --gradient-blue: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #f0f9ff 100%);
    
    /* Glass effect variables */
    --glass-background: rgba(255, 255, 255, 0.25);
    --glass-border: 1px solid rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    /* Font sizes with modern scale */
    --h1-size: 3.5rem;
    --h2-size: 2.5rem;
    --h3-size: 1.875rem;
    --h4-size: 1.5rem;
    --body-size: 1.125rem;
    --small-size: 0.875rem;
}

/* Base styles with improved typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h1 {
    font-size: var(--h1-size);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--h2-size);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--h3-size);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--primary-color-dark);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Enhanced Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(30, 41, 59, 0.95); /* Darker background */
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(30, 41, 59, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 80px;
}

/* Nav styling */
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a:hover {
    color: var(--primary-color-light);
}

.nav-link-animated {
    position: relative;
    color: white !important;
}

.nav-link-animated:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color-light);
    transition: width 0.3s ease;
}

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

.nav-link-animated.active {
    color: var(--primary-color-light) !important;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: white;
}

.logo-text span {
    color: var(--primary-color-light);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Fix for content positioning below fixed header */
main {
    padding-top: 80px; /* Match the header height */
}

/* Hero Section with Modern Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
    color: white;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.05" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,208C1248,171,1344,117,1392,90.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center bottom;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

/* Hero Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-title {
    margin-bottom: 20px;
    font-size: var(--h1-size);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Hero Button Enhanced */
.hero-btn {
    font-size: 1.125rem;
    padding: 1.2rem 3rem;
    font-weight: 700;
    background: white;
    color: var(--primary-color-dark) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn:hover {
    transform: translateY(-7px) scale(1.03);
    background: white;
    color: var(--primary-color) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hero-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    transition: width 0.5s ease;
    z-index: -1;
}

.hero-btn:hover:before {
    width: 100%;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    color: white !important;
}

.btn-secondary {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-color-dark);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white !important;
}

/* 3D Button Effect */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) translateZ(0);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-3d:hover {
    transform: perspective(1000px) translateY(-5px) translateZ(10px);
}

.btn-3d:active {
    transform: perspective(1000px) translateY(2px) translateZ(5px);
}

/* Glow Effect */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
    z-index: -1;
}

.glow-effect:hover:before {
    opacity: 1;
    transform: scale(1);
}

/* Nav Button Specific Styling */
.nav-btn {
    padding: 0.75rem 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    background: var(--primary-color);
    color: white !important;
    font-weight: 600;
    border-radius: 50px;
    margin-left: 10px;
}

.nav-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    color: white !important;
}

/* Pulse animation for buttons */
.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Feature Card Enhancement */
.feature-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--background-white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-blue);
    z-index: -1;
    transform: rotate(2deg);
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 18px;
}

.feature-card:hover {
    transform: translateY(-20px);
}

.feature-card:hover:before {
    opacity: 0.1;
    transform: rotate(3deg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: inline-block;
    transition: all 0.5s ease;
}

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

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section Enhancement */
.about {
    padding: 100px 0;
    background-color: var(--background-white);
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    clear: both; /* Prevent floating issues */
}

.about-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--h2-size);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.125rem;
}

/* About Section Button Enhancement */
.about .text-center {
    margin: 30px 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about .btn {
    min-width: 200px;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.25);
    margin: 0 auto;
    display: inline-block;
}

.about .btn-secondary {
    background: var(--gradient-blue);
    color: white !important;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about .btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

/* Clients Section Enhancement */
.clients {
    padding: 100px 0;
    position: relative;
    background-color: var(--background-light);
    margin-top: 30px;
    margin-bottom: 30px;
    clear: both; /* Prevent floating issues */
}

.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.client-card {
    background: var(--background-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%; /* Ensure all cards have same height */
    display: flex;
    flex-direction: column;
}

.client-card .client-img-container {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.client-card .client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.client-card:hover .client-img {
    transform: scale(1.05);
}

/* Service Items Enhancement */
.service-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-container:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-container:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
}

.service-img-container {
    position: relative;
}

.service-img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.service-content {
    max-width: 600px;
}

.service-title {
    color: var(--primary-color);
    font-size: var(--h3-size);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-blue);
}

/* Client Section Enhancement */
.client-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-card {
    background: var(--background-white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.client-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Testimonial Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-white);
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    clear: both; /* Prevent floating issues */
    

}

.testimonial {
    background-color: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    margin: 30px auto;
    max-width: 900px;
}

.testimonial-img-container {
    flex: 0 0 30%;
   
    position: relative;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 0 0 100%;
    padding: 30px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--primary-color);
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    clear: both; /* Prevent floating issues */
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Testimonial Enhancement */
.testimonial-section {
    padding: 100px 0;
    background: var(--background-white);
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonial-img {
    flex: 0 0 40%;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-content {
    flex: 0 0 60%;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: -20px;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Star rating */
.star-rating {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Success Stories Enhancement */
.success-section {
    padding: 100px 0;
    background-color: var(--background-light);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.success-card {
    background-color: var(--background-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.success-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.success-content {
    padding: 30px;
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.success-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.success-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.success-link:hover {
    color: var(--primary-color-dark);
}

.success-link:hover i {
    transform: translateX(5px);
}

/* CTA Section Enhancement */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,213.3C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center top;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--h2-size);
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer */
footer {
    background-color: #1e293b;
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: white;
}

.footer-logo-text span {
    color: var(--primary-color-light);
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: white;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
}

.footer-contact a {
    color: var(--primary-color-light);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.newsletter {
    max-width: 400px;
}

.newsletter form {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter input:focus {
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
    padding: 15px 25px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--primary-color-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.copyright {
    font-size: 0.875rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons span {
    margin-right: 10px;
}

.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;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Leadership Page Enhancement */
.leader-section {
    padding: 150px 0 100px;
}

.leader-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.leadership-title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    z-index: 1;
}

.leadership-title:before {
    content: '';
    position: absolute;
    width: 40%;
    height: 8px;
    bottom: 10px;
    left: 0;
    background-color: rgba(37, 99, 235, 0.1);
    z-index: -1;
}

.leader-banner {
    background: var(--gradient-blue);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin: 80px 0;
}

.leader-banner h3 {
    color: white;
    margin: 0;
}

.leader-profile {
    padding: 100px 0;
    background: var(--background-white);
}

.leader-profile:nth-child(odd) {
    background: var(--background-light);
}

.leader-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.leader-profile:nth-child(even) .leader-container {
    grid-template-columns: 1fr 1fr;
}

.leader-img-container {
    position: relative;
}

.leader-img {
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    max-width: 90%;
}

.leader-profile:nth-child(even) .leader-img {
    margin-left: auto;
}

.leader-content {
    max-width: 600px;
}

.leader-profile:nth-child(even) .leader-content {
    order: -1;
}

.leader-name {
    font-size: var(--h2-size);
    margin-bottom: 10px;
    color: var(--primary-color-dark);
}

.leader-position {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.leader-bio {
    margin-bottom: 30px;
    font-size: 1.125rem;
}

.leader-bio em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 500;
}

.leader-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1;
    text-align: right;
}

.leader-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

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

.leader-social a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.leader-mail-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.leader-mail-btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    color: white;
}

/* Portfolio Page Enhancement */
.portfolio-section {
    padding: 150px 0 100px;
}

.portfolio-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.portfolio-item {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.portfolio-item:nth-child(even) .portfolio-container {
    grid-template-columns: 1fr 1fr;
}

.portfolio-img-container {
    position: relative;
}

.portfolio-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.portfolio-content {
    max-width: 600px;
}

.portfolio-item:nth-child(even) .portfolio-content {
    order: -1;
}

.portfolio-title {
    font-size: var(--h3-size);
    color: var(--primary-color-dark);
    margin-bottom: 20px;
}

.portfolio-description {
    margin-bottom: 30px;
}

.portfolio-description em {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 500;
}

.testimonials-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.testimonial-stars {
    color: #f59e0b;
    margin-bottom: 20px;
}

/* Services Page Enhancement */
.services-section {
    padding: 150px 0 100px;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.service-item {
    padding: 80px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-item:nth-child(even) .service-container {
    grid-template-columns: 1fr 1fr;
}

.service-img-container {
    position: relative;
}

.service-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-content {
    max-width: 600px;
}

.service-item:nth-child(even) .service-content {
    order: -1;
}

.service-title {
    font-size: var(--h3-size);
    color: var(--primary-color-dark);
    margin-bottom: 20px;
}

.service-description {
    margin-bottom: 30px;
}

/* Join Us Page Enhancement */
.join-section {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.join-content {
    max-width: 600px;
}

.join-title {
    font-size: var(--h2-size);
    color: var(--primary-color-dark);
    margin-bottom: 20px;
}

.join-text {
    margin-bottom: 30px;
    font-size: 1.125rem;
}

.join-img-container {
    position: relative;
}

.join-img {
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.join-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.join-stat {
    text-align: center;
}

.join-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.join-stat-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 5px;
}

.text-center {
    text-align: center;
}

/* Contact Page Enhancement */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.contact-form {
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info {
    background-color: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-content {
    padding: 50px 40px;
    flex: 1;
}

.contact-info-title {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 20px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.success-message {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-message i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sticky-header.hidden {
    transform: translateY(-100%);
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Section with gradient background */
.gradient-section {
    background: var(--gradient-blue);
    color: white;
    padding: 100px 0;
}

.gradient-section h2, .gradient-section h3 {
    color: white;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-color-light);
}

.menu-toggle.active i:before {
    content: '\f00d'; /* Change to X icon when active */
}

@media screen and (max-width: 1024px) {
    :root {
        --h1-size: 3rem;
        --h2-size: 2.25rem;
        --h3-size: 1.5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .feature-grid, .client-grid, .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(30, 41, 59, 0.95);
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 2rem;
        height: 100%;
        overflow-y: auto;
        align-items: flex-start;
    }
    
    nav ul li {
        margin: 1rem 0;
        width: 100%;
    }

    nav ul li:last-child {
        margin-top: 2rem;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem 0;
        width: 100%;
    }

    .nav-btn {
        margin-left: 0;
        text-align: center;
        display: block;
        margin-top: 1rem;
    }
    
    .about-container, .service-container, .testimonial-container, .leader-container, .portfolio-container, .join-section, .contact-container {
        grid-template-columns: 1fr;
    }
    
    .leader-profile:nth-child(even) .leader-content,
    .portfolio-item:nth-child(even) .portfolio-content,
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .feature-grid, .client-grid, .success-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter button {
        border-radius: 5px;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

