/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--primary-color);
    margin: 0;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/Hero-Section-Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 152, 219, 0.6));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

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

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Logo and Navigation Styles */
.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Footer Styles */
.footer {
    background-color: var(--light-bg);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-image {
    flex-shrink: 0;
}

.footer-profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.footer-info {
    flex-grow: 1;
}

.footer-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.footer-title {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.copyright {
    text-align: center;
    color: var(--text-color);
    opacity: 0.7;
}

/* Sales & Marketing Expertise Section Fade-In Animation */
#sales-marketing {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
#sales-marketing.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline styles */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #ffffff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-number {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -20px;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    top: 15px;
    border-radius: 5px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2F4F4F;
}

.timeline-item:nth-child(even) .timeline-number {
    left: -20px;
}

.timeline-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    position: relative;
}

.timeline-content h3 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 1.2em;
}

.timeline-period {
    color: #ffffff;
    margin: 0;
    font-size: 0.9em;
    opacity: 0.8;
}

.timeline-title {
    color: #ffffff;
    margin: 5px 0 0 0;
    font-size: 0.9em;
}

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-number {
        left: 11px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-number {
        left: 11px;
    }
}

/* Skills Section Styles */
.skills {
    background-image: url('../assets/key-skills-and-accomplishents-section-background.jpg');
    background-size: cover;
    padding: 40px;
    color: #333;
    text-align: left;
}

.skill-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.number-icon {
    background-color: #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-weight: bold;
}

.skill-item h3 {
    margin: 0;
    font-size: 1.2em;
}

.skill-item p {
    margin: 5px 0 0 0;
    font-size: 0.9em;
}
