/* About Container */
.about-container {
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* About Hero Section */
.about-hero {
    height: 40vh;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.about-hero-content {
    color: #fff;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 5rem 0;
    background: #fff;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 0 5%;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* Personal Information */
.personal-info {
    margin-top: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.personal-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-label {
    color: #666;
    font-weight: 500;
    margin-right: 0.5rem;
    min-width: 120px;
}

.info-label i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.info-value {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* My Story Section */
.my-story {
    padding: 5rem 0;
    background: #f8f9fa;
}

.my-story .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Experience Section */
.experience {
    padding: 5rem 0;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.experience h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #4a47a3);
    top: 0;
    bottom: 0;
    left: 50px;
    margin-left: -1px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px 10px 70px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 40px;
    top: 15px;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
}

.timeline-content {
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.school-highlight {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3em;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Special styling for SGM */
.timeline-item:first-child .school-highlight {
    font-size: 1.5em;
    color: #4a47a3;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.timeline-item:first-child .timeline-content {
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
}

.timeline-item:first-child .timeline-dot {
    background: var(--primary-color);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.3);
}

.school-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(108, 99, 255, 0.15);
    bottom: 2px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.timeline-date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

/* Skills Section */
.skills {
    padding: 5rem 0;
    background: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.skills h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
}

.skills h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.skills-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.skills-category h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-item span {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: var(--primary-color);
    border-radius: 5px;
}

/* Interests Section */
.interests {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.interests::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.05);
    top: -100px;
    right: -100px;
    z-index: 0;
}

.interests::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.05);
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.interests .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.interest-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #f0f0f0;
}

.interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(74, 71, 163, 0.05) 100%);
    z-index: -1;
    transition: height 0.4s ease;
}

.interest-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.1);
}

.interest-card:hover::before {
    height: 100%;
}

.interest-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(74, 71, 163, 0.2) 100%);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.interest-card:hover .interest-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a47a3 100%);
    color: #fff;
    transform: rotateY(180deg);
}

.interest-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.interest-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .interests-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Certifications Section */
.certifications {
    padding: 5rem 0;
    background: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.certifications h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certifications h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.achievements-container {
    max-width: 900px;
    margin: 0 auto;
}

.achievement-timeline {
    position: relative;
    padding: 2rem 0;
}

.achievement-timeline::before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #4a47a3);
    top: 0;
    bottom: 0;
    left: 30px;
    border-radius: 3px;
}

.achievement-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border: 3px solid rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.achievement-content {
    margin-left: 2rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.achievement-content::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #fff;
    left: -10px;
    top: 20px;
}

.achievement-item:hover .achievement-content {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.1);
}

.achievement-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.achievement-year {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.achievement-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .achievement-timeline::before {
        left: 20px;
    }
    
    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .achievement-content {
        margin-left: 1.5rem;
        padding: 1.2rem;
    }
    
    .achievement-content h3 {
        font-size: 1.1rem;
    }
}

/* Future Goals Section */
.future-goals {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.future-goals::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.03);
    top: -200px;
    right: -200px;
}

.future-goals .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.goals-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.goals-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.goals-intro p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.goal-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.goal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.1);
}

.goal-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.goal-item:hover .goal-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.goal-text h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.goal-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .goal-item {
        padding: 1.5rem;
    }
    
    .goal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .goal-text h3 {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .goal-item {
        flex-direction: column;
    }
    
    .goal-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Web Development Technologies Section */
.tech-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-category h3 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
    font-size: 1.5rem;
    position: relative;
}

.tech-category h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-8px);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-item:hover .tech-icon {
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.15);
    color: #fff;
    background: var(--primary-color);
}

.tech-name {
    font-weight: 600;
    color: #444;
}

/* Highlighted tech icons */
.tech-icon.highlight {
    background: rgba(108, 99, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.tech-item:hover .tech-icon.highlight {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.25);
}

@media (max-width: 768px) {
    .tech-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* My Workspace Section - Updated for full width */
.workspace-container-full {
    max-width: 1100px;
    margin: 0 auto;
}

.workspace-header {
    text-align: center;
    margin-bottom: 3rem;
}

.workspace-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.workspace-title i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.workspace-title h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.workspace-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.workspace-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.workspace-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.workspace-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.1);
}

.workspace-icon {
    width: 80px;
    height: 80px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.workspace-item:hover .workspace-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.workspace-text h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.workspace-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.workspace-text li {
    position: relative;
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.5;
    padding: 0;
}

@media (max-width: 1200px) {
    .workspace-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .workspace-grid {
        grid-template-columns: 1fr;
    }
    
    .workspace-item {
        padding: 1.5rem;
    }
    
    .workspace-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Original workspace styles for reference */
.workspace-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.workspace-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

.workspace-image:hover img {
    transform: scale(1.05);
}

.workspace-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    text-align: center;
}

.workspace-overlay span {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.workspace-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.workspace-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.workspace-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.1);
}

.workspace-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.workspace-item:hover .workspace-icon {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.workspace-text h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.workspace-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workspace-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    color: #666;
    line-height: 1.5;
}

.workspace-text li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .workspace-container {
        grid-template-columns: 1fr;
    }
    
    .workspace-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .workspace-item {
        padding: 1.2rem;
    }
    
    .workspace-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }
    
    .workspace-text h3 {
        font-size: 1.1rem;
    }
    
    .workspace-text li {
        font-size: 0.95rem;
    }
}

/* Photography Preview Section - Updated */
.photography-preview {
    padding: 6rem 0;
    background: linear-gradient(to right, #f8f9fa, #f1f1f1);
    position: relative;
    overflow: hidden;
}

.photography-preview::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(108, 99, 255, 0.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.photography-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
    align-items: center;
}

.photography-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photography-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.8rem;
    position: relative;
}

.photography-text h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}

.photography-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.photography-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.1);
    background: var(--primary-color);
    color: #fff;
}

.highlight-item:hover i {
    color: #fff;
}

.highlight-item i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.highlight-item span {
    color: #444;
    font-weight: 500;
    font-size: 1.05rem;
}

.highlight-item:hover span {
    color: #fff;
}

.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
    align-self: flex-start;
}

.view-gallery-btn span {
    margin-right: 1rem;
}

.view-gallery-btn i {
    transition: transform 0.3s ease;
}

.view-gallery-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.view-gallery-btn:hover i {
    transform: translateX(8px);
}

.photography-preview-images {
    position: relative;
}

.preview-image-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 450px;
}

.preview-image {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    transition: all 0.3s ease;
}

.preview-image:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.preview-image:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

/* Remove image label styles */
.image-label {
    display: none;
}

/* Remove default background images since we're using inline styles */
.preview-image.img1 {
    background-image: none;
}

.preview-image.img2 {
    background-image: none;
}

.preview-image.img3 {
    background-image: none;
}

.preview-image.img4 {
    background-image: none;
}

@media (max-width: 1100px) {
    .photography-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .photography-text {
        order: 1;
    }
    
    .photography-preview-images {
        order: 2;
    }
    
    .preview-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .photography-preview {
        padding: 4rem 0;
    }
    
    .photography-text h3 {
        font-size: 1.7rem;
    }
    
    .preview-image-container {
        height: 350px;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 0.6rem 1.2rem;
    }
    
    .view-gallery-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .preview-image-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: auto;
        gap: 1rem;
    }
    
    .preview-image {
        height: 180px;
    }
    
    .photography-text h3 {
        font-size: 1.5rem;
    }
    
    .photography-text p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
} 