/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #06b6d4;
    --accent-color: #60a5fa;
    --dark-bg: #050505;
    --darker-bg: #000000;
    --light-bg: #0a0a0a;
    --card-bg: #0f0f0f;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --bg-gradient: radial-gradient(ellipse at top, #0f0f0f 0%, #050505 50%, #000000 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 0;
    position: relative;
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.8) 0%, rgba(10, 14, 26, 0.9) 85%, rgba(0, 0, 0, 1) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero-greeting {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.dot {
    color: var(--primary-color);
}

.hero-intro {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-role {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.skills-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.skill-item {
    position: relative;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 600px;
}

.image-circle {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.15;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

/* Hero Image Wrapper */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 420px;

    margin: 0 auto;
}

/* Main Image */
.hero-image img {
    position: relative;

    width: 100%;
    max-width: 320px;
    height: auto;

    object-fit: cover;
    object-position: center;

    border-radius: 20px;

    z-index: 2;

    filter: drop-shadow(0 15px 35px rgba(59, 130, 246, 0.25));

    transition: transform 0.3s ease,
                filter 0.3s ease;
}

/* Hover Effect */
.hero-image img:hover {
    transform: scale(1.04);

    filter: drop-shadow(
        0 20px 45px rgba(59, 130, 246, 0.45)
    );
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #000000 0%, #0a0e1a 50%, #000000 100%);
    padding: 6rem 0;
    margin-top: 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-item h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.about-content-main {
    padding-top: 0;
}

.about-content-main .section-title {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.work-experience {
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.experience-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.experience-item {
    margin-bottom: 1.5rem;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-header h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
}

.experience-date {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.experience-summary {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-plus {
    color: var(--primary-color);
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
}


.tag {
    padding: 0.5rem 1.25rem;
    background-color: var(--dark-bg);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===================== PROJECTS SECTION ===================== */

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(17, 24, 39, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    text-align: center;
    padding-bottom: 1.5rem;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
    border-color: rgba(99, 102, 241, 0.5);
}

.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

/* Project Title */
.project-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 1.5rem 1rem 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

/* GitHub Button */
.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;

    color: white;

    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.9),
        rgba(59, 130, 246, 0.9)
    );

    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(99, 102, 241, 0.45);

    background: linear-gradient(
        135deg,
        rgba(79, 70, 229, 1),
        rgba(37, 99, 235, 1)
    );
}

/* Responsive */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 210px;
    }
}
/* Awards Section */
.awards {
    background-color: var(--light-bg);
}

.awards-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--gradient);
}

.award-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.award-item:nth-child(even) .award-content {
    grid-column: 2;
}

.award-item:nth-child(even) .award-date {
    grid-column: 1;
    text-align: right;
}

.award-content {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    position: relative;
}

.award-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.award-issuer {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.award-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.award-date {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Contact Section */
.contact {
    background-color: var(--dark-bg);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--gradient);
    border-color: white;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive Design */
/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .hero-greeting {
        font-size: 3.5rem;
    }

    .hero-intro {
        font-size: 2.2rem;
    }

    .hero-role {
        font-size: 2.5rem;
    }

    .image-circle {
        width: 400px;
        height: 400px;
    }

    .hero-image img {
        max-width: 420px;
        transform: scale(1.2);
    }

    .hero-image img:hover {
        transform: scale(1.23);
    }

    .vertical-lines {
        left: -60px;
        gap: 15px;
    }

    .line-1 {
        height: 150px;
    }

    .line-2 {
        height: 200px;
    }

    .line-3 {
        height: 130px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .awards-timeline::before {
        left: 0;
    }

    .award-item {
        grid-template-columns: 1fr;
    }

    .award-item:nth-child(even) .award-content,
    .award-item:nth-child(even) .award-date {
        grid-column: 1;
        text-align: left;
    }
}

/* View Media Button */
.view-media-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-media-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Show More Button */
.show-more-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.show-more-btn i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

.show-more-btn:hover i {
    transform: translateY(3px);
}

.award-associated {
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Media Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 70vh;
    position: relative;
}

.modal-content {
    max-width: 100%;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image,
.modal-video {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-nav {
    background: rgba(99, 102, 241, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    margin: 0 1rem;
}

.modal-nav:hover {
    background: rgba(99, 102, 241, 1);
    transform: scale(1.1);
}

.modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.modal-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    max-width: 90%;
}

.thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.thumbnail:hover {
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail i {
    font-size: 2rem;
    color: white;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-greeting {
        font-size: 3rem;
    }

    .hero-intro {
        font-size: 2rem;
    }

    .hero-role {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .skills-bar {
        justify-content: center;
    }

 .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    }


    /* Outer glowing circle */
    .image-circle {
        position: absolute;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: var(--gradient);
        opacity: 0.15;
        z-index: 1;
    }


    /* Proper circular frame */
    .hero-image img {
        width: 420px;
        height: 420px;
        border-radius: 50%;
        object-fit: cover; /* IMPORTANT */
        z-index: 2;
        border: 6px solid rgba(59, 130, 246, 0.3);
        box-shadow: 0 25px 60px rgba(59, 130, 246, 0.35);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* Smooth hover */
    .hero-image img:hover {
        transform: scale(1.05);
        box-shadow: 0 30px 80px rgba(59, 130, 246, 0.5);
    }

    .v-line {
        width: 2px;
    }

    .line-1 {
        height: 120px;
    }

    .line-2 {
        height: 160px;
    }

    .line-3 {
        height: 100px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    .about-content-main .section-title {
        text-align: center;
    }

    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        margin: 0 0.5rem;
    }

    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .modal-content-wrapper {
        max-height: 60vh;
    }

    .modal-image,
    .modal-video {
        max-height: 60vh;
    }
}

@media (max-width: 600px) {
    .hero-greeting {
        font-size: 2.5rem;
    }

    .hero-intro {
        font-size: 1.5rem;
    }

    .hero-role {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

   .hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    }


    /* Outer glowing circle */
    .image-circle {
        position: absolute;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: var(--gradient);
        opacity: 0.15;
        z-index: 1;
    }


    /* Proper circular frame */
    .hero-image img {
        width: 420px;
        height: 420px;
        border-radius: 50%;
        object-fit: cover; /* IMPORTANT */
        z-index: 2;
        border: 6px solid rgba(59, 130, 246, 0.3);
        box-shadow: 0 25px 60px rgba(59, 130, 246, 0.35);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    /* Smooth hover */
    .hero-image img:hover {
        transform: scale(1.05);
        box-shadow: 0 30px 80px rgba(59, 130, 246, 0.5);
    }
    .vertical-lines {
        left: -25px;
        gap: 8px;
    }

    .v-line {
        width: 2px;
    }

    .line-1 {
        height: 80px;
    }

    .line-2 {
        height: 120px;
    }

    .line-3 {
        height: 70px;
    }

    .skills-bar {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .navbar .container {
        padding: 1rem 1rem;
    }
}

/* Extra Small Devices (Phones < 480px) */
@media (max-width: 480px) {
    .hero-greeting {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.3rem;
    }

    .hero-role {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .image-circle {
        width: 200px;
        height: 200px;
    }

    .hero-image img {
        max-width: 240px;
    }

    .vertical-lines {
        left: -15px;
        gap: 6px;
    }

    .line-1 {
        height: 60px;
    }

    .line-2 {
        height: 90px;
    }

    .line-3 {
        height: 50px;
    }

    .skills-bar {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .nav-brand {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Large Screens (Desktops > 1400px) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-greeting {
        font-size: 4.5rem;
    }

    .hero-intro {
        font-size: 3rem;
    }

    .hero-role {
        font-size: 3.2rem;
    }

    .hero-image {
        min-height: 700px;
    }

    .image-circle {
        width: 550px;
        height: 550px;
    }

    .hero-image img {
        max-width: 550px;
    }

    .vertical-lines {
        left: -100px;
        gap: 25px;
    }

    .v-line {
        width: 4px;
    }

    .line-1 {
        height: 220px;
    }

    .line-2 {
        height: 280px;
    }

    .line-3 {
        height: 200px;
    }
}

/* Landscape Orientation for Mobile/Tablets */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .image-circle {
        width: 250px;
        height: 250px;
    }

    .hero-image img {
        max-width: 280px;
        transform: scale(1);
    }

    .vertical-lines {
        left: -30px;
    }

    .line-1,
    .line-2,
    .line-3 {
        height: 100px;
    }

    .hero-greeting {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.5rem;
    }

    .hero-role {
        font-size: 1.8rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }
}