/* ==================== RESPONSIVE STYLES ==================== */

/* Hide mobile elements by default */
.mobile-header-right,
.burger,
.overlay,
.mobile-menu {
    display: none;
}

/* ==================== HEADER & NAVBAR RESPONSIVE ==================== */
@media (max-width: 991px) {
    .header {
        padding: 1.5rem 5%;
        justify-content: space-between;
    }

    .logo {
        font-size: 2rem;
        order: 1;
    }

    .logo-img {
        width: 3.5rem;
    }

    /* Hide desktop navbar and header-right */
    .navbar {
        display: none;
    }

    .header-right {
        display: none;
    }

    /* Show mobile elements */
    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        order: 2;
    }

    .mobile-theme-icons {
        display: flex;
        align-items: center;
        font-size: 2rem;
        color: var(--text-color);
        cursor: pointer;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .mobile-theme-icons::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: var(--main-color);
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-theme-icons i {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
    }

    .mobile-theme-icons:hover::before {
        opacity: 0.15;
        transform: scale(1);
    }

    .mobile-theme-icons:hover i {
        color: var(--main-color);
        transform: rotate(360deg);
    }

    .burger {
        display: block;
        position: relative;
        cursor: pointer;
        width: 2.5rem;
        height: 2rem;
        background: transparent;
        border: none;
        outline: none;
    }

    .burger-line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        border-radius: 2px;
        background: var(--text-color);
        transition: all 0.3s ease;
    }

    .burger-line:nth-child(1) {
        top: 0;
    }

    .burger-line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
        width: 80%;
    }

    .burger-line:nth-child(3) {
        bottom: 0;
    }

    .burger.is-active .burger-line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .burger.is-active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger.is-active .burger-line:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-color);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 100;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu.is-active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-color);
    }

    .close-btn {
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(90deg);
    }

    .mobile-menu-content {
        padding: 2rem;
    }

    .mobile-nav-links {
        list-style: none;
        margin-bottom: 3rem;
    }

    .mobile-nav-links li {
        margin-bottom: 1rem;
    }

    .mobile-nav-links a {
        display: block;
        padding: 1.5rem 0;
        font-size: 1.8rem;
        font-weight: 600;
        color: #a0a0a0;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a.active {
        color: var(--text-color);
        padding-left: 1rem;
    }

    .mobile-nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--main-color);
        border-radius: 2px;
        transition: height 0.3s ease;
    }

    .mobile-nav-links a:hover::before,
    .mobile-nav-links a.active::before {
        height: 60%;
    }

    .mobile-github-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1.5rem 2rem;
        background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        color: white;
        border-radius: 50px;
        font-size: 1.6rem;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        border: none;
        cursor: pointer;
        text-decoration: none;
        width: 100%;
        justify-content: center;
    }

    .mobile-github-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
    }

    .button-group {
        display: flex;
        gap: 1rem;
        margin-top: 5rem;
    }

    .btn {
        width: auto;
    }

    .home-social-media {
        justify-content: center;
        margin-top: 3rem;
    }

    .title-wrapper {
        justify-content: center;
    }

    .button-group {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        padding: 2rem;
        transition: .3s ease;
        z-index: 999;
        border-right: .1rem solid rgba(0, 0, 0, .2);
    }

    .navbar.active {
        left: 0;
    }

    .navbar a {
        margin: 2.5rem 0;
    }

    .logo {
        font-size: 2rem;
    }

    .logo-img {
        width: 3.5rem;
    }

    .button-group {
        display: flex;
        gap: 1rem;
        margin-top: 6rem;
    }

    .btn {
        padding: 1rem 2.5rem;
        font-size: 1.4rem;
    }

    .home-social-media {
        gap: 1.5rem;
    }

    .home-social-media a {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 3%;
    }

    .logo {
        font-size: 1.8rem;
    }

    .logo-img {
        width: 3rem;
    }

    .mobile-menu {
        width: 90%;
    }

    .mobile-menu-content {
        padding: 1.5rem;
    }

    .mobile-nav-links a {
        font-size: 1.6rem;
        padding: 1.2rem 0;
    }

    .button-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 7rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.3rem;
        margin: 0;
        text-align: center;
        justify-content: center;
    }

    .btn i {
        margin-left: 0.5rem;
    }

    .home-social-media {
        gap: 1rem;
    }

    .home-social-media a {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
    }
}

/* ==================== HOME SECTION RESPONSIVE ==================== */

/* 1. Min-width: 1400px and Max-width: 1599px */
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .home .intro_text svg text {
        font-size: 220px;
    }
    
    .home-content h1.name-text {
        font-size: 10rem;
    }
    
    .home-container {
        gap: 3.5rem;
    }
}

/* 2. Extra Large Devices: Min-width: 1200px and Max-width: 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .home-content h1.name-text {
        font-size: 9rem;
    }
    
    .home .intro_text svg text {
        font-size: 200px;
    }
    
    .home-container {
        gap: 3rem;
    }
    
    .role-text {
        font-size: 2.2rem;
    }
    
    .role-prefix {
        font-size: 1.8rem;
    }
}

/* 3. Large Devices: Min-width: 992px and Max-width: 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .home {
        padding: 0 0 0 7%;
    }

    .home-content h1.name-text {
        font-size: 8rem;
        margin: 1.5rem 0;
    }
    
    .home .intro_text svg text {
        font-size: 180px;
    }
    
    .home-container {
        gap: 2.5rem;
    }
    
    .home-content h3.hello-text {
        font-size: 1.8rem;
    }
    
    .role-text {
        font-size: 2rem;
    }
    
    .role-prefix {
        font-size: 1.6rem;
    }

    .button-group {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .btn {
        padding: 1.3rem 2.5rem;
        font-size: 1.4rem;
        min-width: 160px;
    }
    
    .home-social-media {
        left: 1.5rem;
        gap: 1.8rem;
    }
    
    .home-social-media a {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }
}

/* 4. Tablet Devices: Min-width: 768px and Max-width: 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home {
        padding: 12rem 5% 5rem;
        min-height: 100vh;
    }
    
    .home-container {
        flex-direction: column-reverse;
        gap: 4rem;
        align-items: center;
    }

    .home-left {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }
    
    .home-right {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .home-right img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }
    
    .home .intro_text svg {
        top: 40%;
        left: 50%;
    }
    
    .home .intro_text svg text {
        font-size: 280px;
        opacity: 0.6;
    }
    
    .home-content {
        text-align: center;
    }
    
    .title-wrapper {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .home-content h3.hello-text {
        font-size: 2rem;
    }
    
    .home-content h1.name-text {
        font-size: 7rem;
        margin: 2rem 0;
    }

    .role-container {
        justify-content: center;
        margin: 2rem 0 3rem;
    }

    .role-text {
        font-size: 2.2rem;
    }

    .role-prefix {
        font-size: 1.8rem;
    }
    
    .button-group {
        justify-content: center;
        margin-top: 3rem;
        gap: 2rem;
    }
    
    .btn {
        padding: 1.4rem 2.8rem;
        font-size: 1.5rem;
    }

    .home-social-media {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 3rem 0 0;
        transform: none;
        gap: 2rem;
    }

    .home-social-media a {
        width: 4.5rem;
        height: 4.5rem;
        font-size: 2.2rem;
    }
}

/* 5. Mobile Devices: Max-width: 767px */
@media only screen and (max-width: 767px) {
    .home {
        padding: 10rem 4% 4rem;
        min-height: 100vh;
    }
    
    .home::before {
        width: 250px;
        height: 250px;
        margin-right: -10%;
        margin-top: -10%;
    }
    
    .home-container {
        flex-direction: column-reverse;
        gap: 3rem;
        align-items: center;
    }
    
    .home-left {
        width: 100%;
        text-align: center;
    }

    .home-right {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .home-right::before {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -30px;
    }
    
    .home-right img {
        width: 100%;
        height: auto;
        border-radius: 25px;
    }
    
    .home .intro_text svg {
        top: 25%;
        left: 50%;
    }
    
    .home .intro_text svg text {
        font-size: 320px;
        opacity: 0.4;
    }
    
    .home-content {
        text-align: center;
    }
    
    .title-wrapper {
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .divider-line {
        width: 45px;
    }

    .home-content h3.hello-text {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    
    .home-content h1.name-text {
        font-size: 5.5rem;
        margin: 1.5rem 0;
        line-height: 1.1;
    }

    .role-container {
        justify-content: center;
        margin: 1.5rem 0 2.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .role-text {
        font-size: 1.8rem;
        margin-left: 0;
    }

    .role-prefix {
        font-size: 1.6rem;
    }

    .button-group {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 1.3rem 2rem;
        font-size: 1.4rem;
        min-width: auto;
    }
    
    .home-social-media {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 3rem 0 0;
        transform: none;
        gap: 1.5rem;
    }

    .home-social-media a {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
}

/* 6. Small Mobile Devices: Max-width: 480px */
@media only screen and (max-width: 480px) {
    .home {
        padding: 8rem 3% 3rem;
    }
    
    .home-container {
        gap: 2.5rem;
    }
    
    .home-right {
        max-width: 300px;
    }
    
    .home .intro_text svg text {
        font-size: 280px;
    }
    
    .title-wrapper {
        gap: 1rem;
    }
    
    .divider-line {
        width: 35px;
    }
    
    .home-content h3.hello-text {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .home-content h1.name-text {
        font-size: 4.5rem;
        margin: 1rem 0;
    }
    
    .role-container {
        margin: 1rem 0 2rem;
    }
    
    .role-text {
        font-size: 1.6rem;
    }
    
    .role-prefix {
        font-size: 1.4rem;
    }
    
    .button-group {
        margin-top: 2rem;
        gap: 1.2rem;
    }

    .btn {
        max-width: 250px;
        padding: 1.2rem 1.8rem;
        font-size: 1.3rem;
    }

    .btn i {
        font-size: 1.2rem;
    }
    
    .home-social-media {
        margin: 2.5rem 0 0;
        gap: 1.2rem;
    }
    
    .home-social-media a {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.6rem;
    }
}

/* 7. Extra Small Mobile: Max-width: 360px */
@media only screen and (max-width: 360px) {
    .home {
        padding: 7rem 5% 2rem;
    }
    
    .home-right {
        max-width: 250px;
    }
    
    .home-content {
        text-align: left;
        padding-left: 1rem;
    }
    
    .home-content h1.name-text {
        font-size: 8rem;
        margin: 0.8rem 0;
        text-align: left;
    }
    
    .home-content h3.hello-text {
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 0.3rem;
    }
    
    .title-wrapper {
        justify-content: flex-start;
        margin-left: 1rem;
    }
    
    .home .intro_text svg text {
        font-size: 240px;
    }
    
        .role-container {
        display: inline-block;
        margin: 0.5rem 0;
        padding: 0.3rem 0;
        padding-left: 1rem;
        width: fit-content;
        white-space: nowrap;
        margin-bottom: 1.5rem;
    }

    .role-text {
        font-size: 1.7rem;
        display: inline;
        margin-left: 0.3rem;
        position: relative;
    }
    
    .role-prefix {
        font-size: 1.5rem;
        display: inline;
        position: relative;
    }

    .home-social-media {
        display: flex;
        gap: 1rem;
        margin: 3rem 0 1.5rem 0;
        justify-content: flex-start;
        padding-left: 1rem;
    }

    .home-social-media a {
        width: 3.2rem;
        height: 3.2rem;
        font-size: 1.4rem;
    }

    .button-group {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
        margin-top: 1.5rem;
        padding-left: 1rem;
    }

    .btn {
        max-width: 160px;
        padding: 1.1rem 1.2rem;
        font-size: 1.2rem;
        white-space: nowrap;
    }
}

/* Utility Classes for Mobile */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

@media only screen and (max-width: 767px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* ==================== ABOUT SECTION RESPONSIVE ==================== */
@media (max-width: 991px) {
    .about-content-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .circle-border {
        width: 300px;
        height: 300px;
    }

    .about-text p {
        font-size: 1.6rem;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .stat-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .about-heading h2 {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.8rem;
    }

    .about-buttons {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-heading h2 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.6rem;
    }

    .circle-border {
        width: 250px;
        height: 250px;
    }

    .about-text p {
        font-size: 1.5rem;
    }
}

/* ==================== SKILLS & CERTIFICATIONS SECTION RESPONSIVE ==================== */
/* Skills Grid Responsive */
@media (max-width: 1024px) {
    .skills-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-grid-container {
        grid-template-columns: 1fr;
    }
    
    .skills-heading h2 {
        font-size: 4rem;
    }

    .toggle-button {
        font-size: 1.4rem;
        padding: 0.8rem 1.5rem;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certificate-preview {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .skills-grid-container {
        grid-template-columns: 1fr;
    }
    
    .skills-heading h2 {
        font-size: 3rem;
    }
    
    .skill-inner {
        padding: 20px 15px;
    }

    .toggle-container {
        padding: 0.5rem;
    }

    .toggle-button {
        font-size: 1.3rem;
        padding: 0.7rem 1.2rem;
    }

    .certificates-grid {
        gap: 1.5rem;
    }

    .certificate-info h3 {
        font-size: 1.8rem;
    }
}

/* Certificate Modal Responsive */
@media (max-width: 900px) {
    .modal-container {
        width: 95%;
    }
    
    .certificate-display {
        width: 50%;
    }
    
    .certificate-details {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .modal-body {
        flex-direction: column;
        height: auto;
        max-height: 80vh;
    }
    
    .certificate-display {
        width: 100%;
        height: 40vh;
        padding: 1.5rem;
    }
    
    .certificate-details {
        width: 100%;
        padding: 2rem;
    }
    
    .certificate-details h4 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .certificate-issuer {
        font-size: 1.5rem;
    }
    
    .certificate-description {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.9rem;
    }
    
    .close-modal {
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .certificate-display {
        height: 35vh;
    }
    
    .certificate-details {
        padding: 1.5rem;
    }
    
    .certificate-details h4 {
        font-size: 1.7rem;
    }
    
    .issuer-info i, .description-container i {
        font-size: 1.6rem;
        margin-right: 1rem;
    }
}

/* ==================== EDUCATION SECTION RESPONSIVE ==================== */
/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .timeline-section {
        padding: 12rem 8% 8rem;
    }
    
    .section-title {
        font-size: 3.5em;
    }
    
    .timeline-container {
        gap: 100px;
        max-width: 1400px;
    }
    
    .column-title {
        font-size: 2.5em;
    }
}

/* Large Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .timeline-section {
        padding: 10rem 8% 6rem;
    }
    
    .section-title {
        font-size: 3.2em;
    }
    
    .timeline-container {
        gap: 90px;
    }
    
    .column-title {
        font-size: 2.3em;
    }
}

/* Medium-Large Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .timeline-section {
        padding: 8rem 6% 5rem;
    }
    
    .section-title {
        font-size: 2.8em;
    }
    
    .section-description {
        font-size: 1.1em;
    }
    
    .timeline-container {
        gap: 70px;
    }
    
    .column-title {
        font-size: 2.1em;
    }
}

/* Medium Screens (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .timeline-section {
        padding: 6rem 5% 4rem;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .section-description {
        font-size: 1em;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .column-title {
        font-size: 2em;
    }
    
    .timeline-content {
        margin-left: 50px;
        padding: 20px;
    }
    
    .no-experience {
        margin-left: 50px;
        padding: 20px;
    }
    
    .timeline-dot {
        left: 10px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }
    
    .timeline-column::before {
        left: 15px;
        width: 3px;
    }
    
    .timeline-content::before {
        left: -10px;
    }
    
    .no-experience::before {
        left: -10px;
    }
}

/* Small-Medium Screens (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .timeline-section {
        padding: 5rem 4% 3rem;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .section-description {
        font-size: 0.95em;
        max-width: 500px;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .column-title {
        font-size: 1.8em;
    }
    
    .timeline-content {
        margin-left: 45px;
        padding: 18px;
    }
    
    .no-experience {
        margin-left: 45px;
        padding: 18px;
    }
    
    .timeline-dot {
        left: 8px;
        width: 12px;
        height: 12px;
        border-width: 3px;
    }
    
    .timeline-column::before {
        left: 12px;
        width: 3px;
    }
    
    .timeline-content::before {
        left: -10px;
    }
    
    .no-experience::before {
        left: -10px;
    }
    
    .timeline-title {
        font-size: 1.2em;
    }
    
    .timeline-company {
        font-size: 1em;
    }
}

/* Small Screens (481px - 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .timeline-section {
        padding: 4rem 3% 2.5rem;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .section-description {
        font-size: 0.9em;
        max-width: 400px;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .column-title {
        font-size: 1.6em;
    }
    
    .timeline-content {
        margin-left: 40px;
        padding: 16px;
    }
    
    .no-experience {
        margin-left: 40px;
        padding: 16px;
    }
    
    .timeline-dot {
        left: 6px;
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .timeline-column::before {
        left: 9px;
        width: 2px;
    }
    
    .timeline-content::before {
        left: -8px;
        width: 16px;
        height: 16px;
    }
    
    .no-experience::before {
        left: -8px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-title {
        font-size: 1.1em;
    }
    
    .timeline-company {
        font-size: 0.95em;
    }
    
    .timeline-description {
        font-size: 0.9em;
    }
    
    .no-experience-icon {
        font-size: 2em;
    }
}

/* Extra Small Screens (320px - 480px) */
@media (max-width: 480px) {
    .timeline-section {
        padding: 3rem 2% 2rem;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .section-description {
        font-size: 0.85em;
        max-width: 300px;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .column-title {
        font-size: 1.4em;
    }
    
    .timeline-content {
        margin-left: 35px;
        padding: 14px;
    }
    
    .no-experience {
        margin-left: 35px;
        padding: 14px;
    }
    
    .timeline-dot {
        left: 4px;
        width: 10px;
        height: 10px;
        border-width: 3px;
    }
    
    .timeline-column::before {
        left: 7px;
        width: 2px;
    }
    
    .timeline-title {
        font-size: 1em;
    }
    
    .timeline-company {
        font-size: 0.9em;
    }
    
    .timeline-description {
        font-size: 0.85em;
    }
    
    .timeline-date {
        font-size: 0.8em;
    }
    
    .no-experience-icon {
        font-size: 1.8em;
    }
    
    .no-experience h3 {
        font-size: 1em;
    }
    
    .no-experience p {
        font-size: 0.85em;
    }
}

/* Ultra Small Screens (280px - 319px) */
@media (max-width: 319px) {
    .timeline-section {
        padding: 2.5rem 1% 1.5rem;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .section-description {
        font-size: 0.8em;
        max-width: 250px;
    }
    
    .timeline-container {
        gap: 25px;
    }
    
    .column-title {
        font-size: 1.2em;
    }
    
    .timeline-content {
        margin-left: 30px;
        padding: 12px;
    }
    
    .no-experience {
        margin-left: 30px;
        padding: 12px;
    }
    
    .timeline-dot {
        left: 2px;
        width: 8px;
        height: 8px;
        border-width: 2px;
    }
    
    .timeline-column::before {
        left: 4px;
        width: 2px;
    }
    
    .timeline-title {
        font-size: 0.9em;
    }
    
    .timeline-company {
        font-size: 0.8em;
    }
    
    .timeline-description {
        font-size: 0.8em;
    }
    
    .timeline-date {
        font-size: 0.75em;
    }
    
    .no-experience-icon {
        font-size: 1.5em;
    }
    
    .no-experience h3 {
        font-size: 0.9em;
    }
    
    .no-experience p {
        font-size: 0.8em;
    }
}

/* Landscape Orientation for Small Devices */
@media (max-width: 767px) and (orientation: landscape) {
    .timeline-section {
        padding: 2rem 3% 1.5rem;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .timeline-container {
        margin-top: 30px;
    }
    
    .column-header {
        margin-bottom: 20px;
    }
    
    .timeline-item {
        margin-bottom: 25px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .timeline-dot {
        border-width: 2px;
    }
    
    .timeline-column::before {
        width: 2px;
    }
}


/* ==================== PROJECTS SECTION RESPONSIVE ==================== */
@media (max-width: 991px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects-heading h2 {
        font-size: 4rem;
    }
    
    .projects-description {
        font-size: 1.6rem;
    }
    
    .project-modal-header {
        padding: 20px;
    }
    
    .project-modal-title {
        font-size: 24px;
    }
    
    .project-modal-body {
        padding: 20px;
    }
    
    .project-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-modal {
        padding: 20px;
    }
    
    .project-modal-content {
        width: 95%;
    }
    
    .project-modal-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ==================== CONTACT SECTION RESPONSIVE ==================== */

/* Large Desktop (1200px and up) - Base styles already applied */

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .contact-heading h2 {
        font-size: 5rem;
    }
    .contact-info-header h3,
    .contact-info-sub,
    .social-title {
        font-size: 2rem !important;
    }
    .contact-details p {
        font-size: 1.6rem !important;
    }

    .contact-heading h2 {
        font-size: 4.5rem;
    }
    .contact-heading .tagline,
    .contact-info-header h3,
    .contact-info-sub,
    .social-title {
        font-size: 1.8rem !important;
    }
    .contact-form h1 {
        font-size: 5rem;
    }

    .contact {
        padding: 5rem 7% 2rem;
    }
    
    .contact-heading h2 {
        font-size: 4.5rem;
    }
    
    .contact-heading .tagline {
        font-size: 1.8rem;
        max-width: 55rem;
    }
    
    .content-wrapper {
        gap: 50px;
    }
    
    .contact-form {
        padding: 35px;
    }
    
    .contact-info-header h3 {
        font-size: 1.8rem;
        margin-bottom: 3.5rem;
    }
    
    .social-title {
        font-size: 1.8rem;
    }
    
    /* Contact icon container fixes */
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .contact {
        padding: 4rem 5% 2rem;
    }
    
    .contact-heading {
        margin-bottom: 4rem;
    }
    
    .contact-heading h2 {
        font-size: 4rem;
    }
    
    .contact-heading .tagline {
        font-size: 1.8rem;
        max-width: 50rem;
        margin-bottom: 2.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        padding: 30px;
    }
    
    .contact-form h1 {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    
    .contact-info-sub {
        font-size: 1.8rem !important;
    }
    
    /* Contact icon container fixes */
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 1.6rem !important;
    }
    
    .social-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    /* Fixed social link pill shape */
    .social-link {
        height: 44px;
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        border-radius: 50%;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-sizing: border-box;
    }
    
    .social-link .icon {
        margin-right: 0 !important;
        position: static !important;
        font-size: 20px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: none;
    }
    
    .social-link .text {
        font-size: 15px !important;
        opacity: 0;
        width: 0;
        margin-left: 0;
        pointer-events: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: opacity 0.2s, width 0.2s, margin 0.2s;
        display: flex;
        align-items: center;
    }
    
    .social-link.expanded {
        min-width: 90px;
        max-width: 140px;
        width: auto;
        border-radius: 22px;
        padding: 0 18px !important;
        justify-content: center !important;
        overflow: hidden;
        box-sizing: border-box;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .social-link.expanded .icon {
        margin-right: 10px !important;
    }
    
    .social-link.expanded .text {
        opacity: 1;
        width: 60px;
        margin-left: 8px;
        pointer-events: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: opacity 0.2s, width 0.2s, margin 0.2s;
    }
    
    @media (max-width: 480px) {
        .social-link {
            height: 36px;
            width: 36px;
            min-width: 36px;
            max-width: 36px;
            border-radius: 50%;
        }
        .social-link.expanded {
            min-width: 100px;
            max-width: 140px;
            padding: 0 10px !important;
            border-radius: 18px;
        }
        .social-link .icon {
            font-size: 16px !important;
        }
        .social-link .text {
            font-size: 12px !important;
            margin-left: 6px;
        }
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1.4rem 1.6rem;
        font-size: 1.5rem;
        border-radius: 8px;
        box-sizing: border-box;
    }
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-group label {
        left: 1.3rem;
        top: 1.3rem;
        font-size: 1.4rem;
    }
    
    /* Fix for select (Choose Service) label sizing */

    
    .send-btn {
        padding: 16px 35px;
        font-size: 1.4rem;
    }
}

/* Small Tablet (576px to 767px) */
@media (max-width: 767px) {
    .contact {
        padding: 3rem 4% 2rem;
    }
    
    .contact-heading h2 {
        font-size: 3.5rem;
    }
    
    .contact-heading .tagline {
        font-size: 1.4rem;
        max-width: 45rem;
    }
    
    .content-wrapper {
        gap: 35px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-form h1 {
        font-size: 2rem;
    }
    
    .contact-info-header h3 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-info-sub {
        font-size: 1.6rem !important;
    }
    
    .contact-item {
        margin-bottom: 30px;
    }
    
    /* Contact icon container fixes */
    .contact-icon {
        width: 48px;
        height: 48px;
        margin-right: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .social-section {
        margin-top: 40px;
    }
    
    .social-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    /* Fixed social link pill shape */
    .social-link {
        height: 42px;
        width: 42px; /* Make collapsed state circular */
        border-radius: 21px;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    .social-link .icon {
        margin: 0 !important;
        position: static !important;
    }
    
    .social-link.expanded {
        width: 110px;
        border-radius: 21px; /* Maintain pill shape when expanded */
        padding: 0 16px !important;
        justify-content: flex-start !important;
    }
    
    .social-link.expanded .icon {
        margin-right: 8px !important;
    }
    
    .social-link .icon {
        font-size: 16px;
    }
    
    .form-row {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1.3rem;
    }
    
    .form-group label {
        left: 1.2rem;
        top: 1.2rem;
        font-size: 1.3rem;
    }
    
    /* Fix for select (Choose Service) label sizing */
    .form-group select:focus ~ label,
    .form-group select:valid ~ label {
        font-size: 1.1rem;
        top: -0.5rem;
        left: 1rem;
        padding: 0 0.5rem;
    }
    
    .send-btn {
        padding: 15px 30px;
        font-size: 1.3rem;
    }
    
    .success-message {
        top: 15px;
        right: 15px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Large (481px to 575px) */
@media (max-width: 575px) {
    .logo-img-footer {
        width: 80px;
        height: 80px;
    }

    .contact-info-header h3,
    .contact-info-sub,
    .social-title {
        font-size: 2rem !important;
    }
    .contact-details p {
        font-size: 2rem !important;
    }
    .contact-form label,
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 1.3rem !important;
    }

    .contact-form h1 {
        font-size: 3rem;
    }

    .contact-heading h2 {
        font-size: 3rem;
    }
    .contact-info-header h3,
    .contact-info-sub,
    .social-title {
        font-size: 1.8rem !important;
    }
    .contact-details p {
        font-size: 1.6rem !important;
    }

    .contact-heading h2 {
        font-size: 3.5rem;
    }
    .contact-heading .tagline,
    .contact-info-header h3,
    .contact-info-sub,
    .social-title {
        font-size: 1.6rem !important;
    }
    .contact-form h1 {
        font-size: 2rem;
    }

    .contact {
        padding: 2.5rem 3% 1.5rem;
    }
    
    .contact-heading {
        margin-bottom: 3rem;
    }
    
    .contact-heading h2 {
        font-size: 3rem;
    }
    
    .contact-heading .tagline {
        font-size: 1.3rem;
        max-width: 40rem;
    }
    
    .content-wrapper {
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .contact-form h1 {
        font-size: 1.8rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-sub {
        font-size: 1.4rem !important;
    }
    
    .contact-item {
        margin-bottom: 25px;
    }
    
    /* Contact icon container fixes */
    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 15px;
    }
    
    .social-section {
        margin-top: 35px;
    }
    
    .social-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .social-links {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    /* Fixed social link pill shape */
    .social-link {
        height: 40px;
        width: 40px; /* Make collapsed state circular */
        border-radius: 20px;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    .social-link .icon {
        margin: 0 !important;
        position: static !important;
    }
    
    .social-link.expanded {
        width: 100px;
        border-radius: 20px; /* Maintain pill shape when expanded */
        padding: 0 14px !important;
        justify-content: flex-start !important;
    }
    
    .social-link.expanded .icon {
        margin-right: 8px !important;
    }
    
    .social-link .icon {
        font-size: 15px;
        width: 18px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.1rem;
        font-size: 1.2rem;
    }
    
    .form-group label {
        left: 1.1rem;
        top: 1.1rem;
        font-size: 1.2rem;
    }
    
    /* Fix for select (Choose Service) label sizing */
    .form-group select:focus ~ label,
    .form-group select:valid ~ label {
        font-size: 1rem;
        top: -0.5rem;
        left: 0.9rem;
        padding: 0 0.4rem;
    }
    
    .send-btn {
        padding: 14px 25px;
        font-size: 1.2rem;
        width: 100%;
    }
    
    .success-message {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
        text-align: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .success-message.show {
        transform: translateY(0);
    }
}

/* Mobile Small (320px to 480px) */
@media (max-width: 480px) {
    .contact {
        padding: 2rem 2% 1rem;
        min-height: auto;
    }
    
    .contact-container {
        padding: 0 0.5rem;
    }
    
    .contact-heading {
        margin-bottom: 2.5rem;
    }
    
    .contact-heading h2 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .contact-heading .tagline {
        font-size: 1.2rem;
        max-width: 35rem;
        line-height: 1.5;
    }
    
    .content-wrapper {
        gap: 25px;
    }
    
    .contact-form {
        padding: 15px;
        border-radius: 15px;
    }
    
    .contact-form h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-header h3::after {
        width: 60px;
        height: 2px;
    }
    
    .contact-info-sub {
        font-size: 1.3rem !important;
    }
    
    .contact-item {
        margin-bottom: 20px;
        align-items: center;
    }
    
    /* Contact icon container fixes */
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        border-width: 1px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .contact-details p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .social-section {
        margin-top: 30px;
    }
    
    .social-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .social-links {
        gap: 8px;
        justify-content: center;
    }
    
    /* Fixed social link pill shape */
    .social-link {
        height: 35px;
        width: 35px; /* Make collapsed state circular */
        border-radius: 17.5px;
        padding: 0 !important;
        border-width: 1px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    .social-link .icon {
        margin: 0 !important;
        position: static !important;
    }
    
    .social-link.expanded {
        width: 90px;
        border-radius: 17.5px; /* Maintain pill shape when expanded */
        padding: 0 12px !important;
        justify-content: flex-start !important;
    }
    
    .social-link.expanded .icon {
        margin-right: 6px !important;
    }
    
    .social-link .icon {
        font-size: 14px;
        width: 16px;
    }
    
    .social-link .text {
        font-size: 12px;
        margin-left: 6px;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 6px;
    }
    
    .form-group label {
        left: 1rem;
        top: 1rem;
        font-size: 1.1rem;
        padding: 0 0.6rem;
    }
    
    .form-group input:focus ~ label,
    .form-group select:focus ~ label,
    .form-group textarea:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group select:not(:placeholder-shown) ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label {
        top: -1rem;
        left: 0.8rem;
        font-size: 1rem;
        padding: 0 0.6rem;
    }
    
    /* Fix for select (Choose Service) label sizing */
    .form-group select:focus ~ label,
    .form-group select:valid ~ label {
        font-size: 0.9rem;
        top: -1rem;
        left: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .form-group select {
        background-position: right 1rem center;
        background-size: 1.2rem;
        padding-right: 3rem;
    }
    
    textarea {
        min-height: 100px;
    }
    
    .send-btn {
        padding: 12px 20px;
        font-size: 1.1rem;
        border-radius: 40px;
        min-width: 140px;
    }
    
    .char-counter {
        font-size: 0.7rem;
        bottom: 6px;
        right: 12px;
    }
    
    .validation-message {
        bottom: -18px;
        left: 15px;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .contact {
        padding: 1.5rem 1% 1rem;
    }
    
    .contact-heading h2 {
        font-size: 2.2rem;
    }
    
    .contact-heading .tagline {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 12px;
    }
    
    .contact-form h1 {
        font-size: 1.4rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.4rem;
    }
    
    .contact-info-sub {
        font-size: 1.2rem !important;
    }
    
    /* Contact icon container fixes */
    .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .contact-icon i {
        font-size: 12px;
    }
    
    /* Fixed social link pill shape */
    .social-link {
        height: 32px;
        width: 32px; /* Make collapsed state circular */
        border-radius: 16px;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    .social-link .icon {
        margin: 0 !important;
        position: static !important;
    }
    
    .social-link.expanded {
        width: 80px;
        border-radius: 16px; /* Maintain pill shape when expanded */
        padding: 0 10px !important;
        justify-content: flex-start !important;
    }
    
    .social-link.expanded .icon {
        margin-right: 6px !important;
    }
    
    .social-link .icon {
        font-size: 12px;
        width: 14px;
    }
    
    .social-link .text {
        font-size: 11px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    /* Fix for select (Choose Service) label sizing */
    .form-group select:focus ~ label,
    .form-group select:valid ~ label {
        font-size: 0.85rem;
        top: -1rem;
        left: 0.7rem;
        padding: 0 0.4rem;
    }
    
    .send-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

/* Accessibility and Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .contact-form {
        border: 2px solid;
    }
    
    .contact-icon,
    .social-link {
        border-width: 2px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-width: 2px;
    }
}

/* Print Styles */
@media print {
    .contact {
        background: white;
        color: black;
        padding: 1rem;
    }
    
    .contact-form,
    .social-links {
        display: none;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==================== FOOTER SECTION RESPONSIVE ==================== */

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-img-footer {
        width: 64px;
        height: 64px;
    }
    
    .footer-nav {
        gap: 1.2rem;
    }
    
    .footer-nav a {
        font-size: 1.3rem;
    }
}
