/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Updated color scheme and styles */
:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --background-light: #f8f9fa;
}

/* Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s;
}

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

/* Updated Hero section */
#hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Updated About section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #007bff;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-container {
    position: relative;
    flex: 0 0 400px;
}

.profile-img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.profile-backdrop {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: #007bff;
    border-radius: 15px;
    z-index: 1;
}

.profile-container:hover .profile-img {
    transform: translate(-10px, -10px);
}

.about-text {
    flex: 1;
}

.text-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #007bff;
    font-weight: 600;
}

/* Experience section */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.experience-card h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

.company {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.date {
    color: #666;
    margin-bottom: 1rem;
}

.experience-card ul {
    padding-left: 1.5rem;
}

/* Contact section */
.contact-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    font-size: 2rem;
    color: #007bff;
    transition: color 0.3s;
}

.social-link:hover {
    color: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
}

/* Skills section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skills-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.skills-category h3 {
    color: #007bff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.skills-category ul {
    list-style: none;
    padding: 0;
}

.skills-category ul li {
    padding: 0.5rem 0;
    text-align: center;
    font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .profile-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

h2 {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

/* Skills Section Styles */
#skills {
    padding: 6rem 2rem;
    /* Lighter gradient background for better contrast */
    background: linear-gradient(135deg, #1f2937 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

#skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Increased opacity of gradient overlays */
    background: radial-gradient(circle at 30% 50%, rgba(73, 144, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(103, 178, 111, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

#skills .section-title {
    color: #ffffff;
    margin-bottom: 4rem;
    /* Add text shadow for better visibility */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.skill-card {
    /* Increased opacity for better visibility */
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    /* Brighter blue for better visibility */
    color: #60a5fa;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.skill-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    /* Add text shadow for better visibility */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar {
    width: 100%;
}

.skill-info {
    display: flex;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.skill-name {
    font-size: 1.1rem;
    font-weight: 500;
    /* Increased opacity for better visibility */
    opacity: 0.95;
    /* Add a bit of text shadow for better readability */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    height: 8px;
    /* Increased opacity for better visibility */
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    /* Add subtle border for better definition */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress {
    height: 100%;
    /* Adjust gradient colors to be more prominent */
    background: linear-gradient(90deg, #60a5fa, #34d399);
    border-radius: 4px;
    width: 0;
    position: relative;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20px;
    /* Increased opacity for better visibility */
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glow 2s linear infinite;
}

@keyframes glow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(500%);
    }
}

/* Add responsive styles */
@media (max-width: 768px) {
    .skills-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .skill-card {
        padding: 2rem;
    }
}

/* Partnership Value Section */
.partnership-value {
    margin-top: 6rem;
    padding: 0 2rem;
}

.value-proposition {
    max-width: 1400px;
    margin: 0 auto;
}

.value-proposition h3 {
    text-align: center;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.value-card h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partnership-value {
        margin-top: 4rem;
    }
    
    .value-proposition h3 {
        font-size: 1.75rem;
    }
    
    .value-cards {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Simplified Contact Section Styles */
#contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1f2937 0%, #2c3e50 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.business-showcase {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.showcase-icon {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.showcase-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-btn {
    background: linear-gradient(90deg, #60a5fa, #34d399);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.showcase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #93c5fd, #6ee7b7);
}

.showcase-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.showcase-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #contact {
        padding: 4rem 1.5rem;
    }
    
    .showcase-content h3 {
        font-size: 1.8rem;
    }
    
    .showcase-content p {
        font-size: 1.1rem;
    }
    
    .showcase-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .showcase-content h3 {
        font-size: 1.5rem;
    }
    
    .showcase-content p {
        font-size: 1rem;
    }
    
    .showcase-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Update the section title styling in the contact section */
#contact .section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 2px 15px rgba(96, 165, 250, 0.3);
    letter-spacing: 1px;
}

#contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #34d399);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(96, 165, 250, 0.3);
}

/* Add a subtle animation to the title */
@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 15px rgba(96, 165, 250, 0.3);
    }
    50% {
        text-shadow: 0 2px 20px rgba(96, 165, 250, 0.5);
    }
}

#contact .section-title {
    animation: titleGlow 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #contact .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    #contact .section-title {
        font-size: 2rem;
    }
}
