﻿
/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.text-primary {
    color: #34b7a7 !important;
}

.btn-outline-primary {
    color: #34b7a7 !important;
    border: #34b7a7 solid 0.25px !important;
}

    .btn-outline-primary:hover {
        background-color: #34b7a7 !important;
        color: aliceblue !important;
    }

.btn-get-started {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

    .btn-get-started:hover {
        background-color: #2980b9;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

/* Mobile-First Adjustments */
@@media (max-width: 992px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
}

@@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-banner {
        object-fit: contain;
        object-position: center center;
        background-color: #f8f9fa;
    }

    .btn-get-started {
        padding: 10px 25px;
    }
}

@@media (max-width: 576px) {
    .hero {
        height: 70vh;
        min-height: 300px;
    }

    .hero-mobile-view {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: #f8f9fa;
    }

        .hero-mobile-view img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
        }
}

/* For very wide screens (landscape mobiles) */
@@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }

    .hero-banner {
        object-fit: cover;
    }
}

/* Service Item Colors */
.item-cyan {
    background-color: #e6f7ff;
    border-color: #91d5ff;
}

.item-orange {
    background-color: #fff7e6;
    border-color: #ffd591;
}

.item-teal {
    background-color: #e6fffb;
    border-color: #87e8de;
}

.item-red {
    background-color: #fff1f0;
    border-color: #ffa39e;
}

.item-indigo {
    background-color: #f0f5ff;
    border-color: #adc6ff;
}

.item-pink {
    background-color: #fff0f6;
    border-color: #ffadd2;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* Experience Section Styles */
.experience {
    padding: 80px 0;
    position: relative;
}

.timeline-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    border-left: 3px solid #33b8a8;
}

.timeline-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.timeline-icon {
    background: #33b8a8;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.timeline-title h3 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.company-badge {
    display: inline-block;
    background: #e3f0ff;
    color: #33b8a8;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.tech-stack {
    margin-bottom: 20px;
}

.tech-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #33b8a8;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.timeline-list {
    list-style: none;
    padding-left: 0;
}

    .timeline-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 30px;
    }

        .timeline-list li i {
            color: #33b8a8;
            position: absolute;
            left: 0;
            top: 3px;
        }

/* Projects Section Styles */
.projects {
    padding: 80px 0;
    background: #f8fafc;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.project-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-links {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(63, 128, 234, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-links {
    opacity: 1;
}

.project-link {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

    .project-link:hover {
        transform: scale(1.2);
    }

.project-content {
    padding: 20px;
}

    .project-content h3 {
        font-weight: 700;
        margin-bottom: 10px;
        color: #2c3e50;
    }

.project-desc {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.project-tech {
    margin-top: 15px;
}

    .project-tech span {
        display: inline-block;
        background: #f1f5f9;
        color: #33b8a8;
        padding: 3px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-right: 8px;
        margin-bottom: 8px;
    }

.btn-primary {
    background: #33b8a8;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: #2c6bd6;
    }


/* Skills Section Styles */
.section-bg {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #33b8a8;
    }

    .section-title p {
        margin-bottom: 0;
        color: #6c757d;
    }

.skill-item {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-weight: 600;
    color: #2b3d4f;
}

.skill-value {
    font-weight: 600;
    color: #33b8a8;
}

.progress-bar-wrap {
    background: #33b8a8;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar {
    background: #33b8a8;
    height: 100%;
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}

/* Education Section Styles */
.education {
    padding: 80px 0;
}

@@media(max-width:568px) {

    .education-card {
        width: 100%;
    }
}

.education-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .education-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.card-icon {
    width: 60px;
    height: 60px;
    background: #e9f4fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #33b8a8;
    font-size: 24px;
}

.education-card .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2b3d4f;
}

.education-card .institution {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 15px;
}

.education-details p {
    margin-bottom: 5px;
    color: #6c757d;
}

.education-details strong {
    color: #2c4964;
}


.achievements {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.achievement-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #33b8a8;
}

    .achievement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.achievement-icon {
    font-size: 2.5rem;
    color: #33b8a8;
    margin-bottom: 20px;
}

.achievement-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.achievement-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.achievement-badge {
    display: inline-block;
    background: #33b8a8;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.counters span {
    font-size: 3rem;
    font-weight: 700;
    color: #33b8a8;
    display: block;
}

.counters p {
    color: #7f8c8d;
    font-weight: 600;
    margin-top: 10px;
}

.navmenu > ul > li a {
    font-size: 21px;
    font-weight: bold;
}


