/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Cambria, Calibri, serif;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: Cambria, Calibri, serif;
}
.pt-5 {
    padding-bottom: 2rem !important;
}
.w-100 {
    height: 100%;
}
.w-25 {
    width: 30% !important;
}
.container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 0);
    padding-left: calc(var(--bs-gutter-x) * 0);
}
.container {
    padding: 0 15px;
    position: relative;
    z-index: 1;
}
.titlehead {
    text-align: -webkit-center;
}
.divider {
    border-bottom: 1px solid black;
}
.divider2 {
    border-top: 1px solid #415093;
    border-bottom: 1px solid #415093;
}
.table {
    color: white;
}

/* ===== Header & Navbar (Unchanged) ===== */
.upperheader {
    height: 20px;
    background-color: #415093;
}
.navbar-nav {
    font-size: 20px;
}
.navlogo {
    width: 60%;
}
.navbar-brand {
    margin: 4px 30px;
}
.navbar-brand {
    width: 20%;
}
.nav-item {
    margin-right: 20px;
}
.nav-item:hover {
    background-color: #415093;
    color: white;
}
.nav-link:hover {
    color: white;
}
.nav-link.active:hover {
    color: white;
}
.nav-link2:hover {
    color: black;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border: none !important;
    background-color: #415093;
}
.nav {
    font-size: 17px;
    font-family: Cambria, Calibri, serif;
    --bs-nav-link-color: black;
    --bs-nav-link-hover-color: black;
    place-content: center;
}
.nav-tabs .nav-link.active {
    color: white;
}
.nav-link {
    color: black;
}
.nav-link.active {
    font-size: 19px;
}
.nav-tabs {
    border-bottom: 4px solid #415093;
    width: 63%;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-item:hover {
    background-color: #415093;
    color: white;
}
.dropdown-menu {
    font-family: Cambria, Calibri, serif;
    font-size: 18px;
}
.dropdown:hover .nav-link {
    color: white;
}
.collapse {
    margin: 10px 10px;
    width: auto;
}
.navbar-toggler {
    margin-left: 10px;
    margin-right: 10px;
    padding: 8px;
    position: relative;
}

/* ===== Work Gallery Redesign ===== */
.work-hero {
    background: linear-gradient(135deg, rgba(65, 80, 147, 0.9), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.work-hero-content {
    position: relative;
    z-index: 1;
}

.work-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.work-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.work-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.work-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #415093;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #415093;
}

.work-tabs {
    margin-bottom: 50px;
}

.work-tabs .nav {
    justify-content: center;
    border-bottom: 3px solid #e9ecef;
}

.work-tabs .nav-link {
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    border: none;
    border-radius: 0;
    margin: 0 5px;
    transition: all 0.3s ease;
    position: relative;
}

.work-tabs .nav-link.active {
    color: #415093;
    background: transparent;
}

.work-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #415093;
}

.work-tabs .nav-link:hover {
    color: #415093;
    background-color: rgba(65, 80, 147, 0.1);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.work-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.work-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-card-content {
    padding: 20px;
    position: relative;
    background: white;
}

.work-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #415093;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.work-category {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #415093;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Modal Styles */
.work-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    overflow: hidden;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    margin: auto;
    animation: fadeIn 0.5s ease;
}

.modal-title {
    color: white;
    font-size: 2rem;
    margin-top: 20px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.modal-nav-btn {
    background: rgba(65, 80, 147, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-btn:hover {
    background: #415093;
    transform: scale(1.1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #415093;
    transform: rotate(90deg);
}

/* Typing Animation */
.typing-text {
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor 0.7s infinite, typing 3s steps(40) 1s 1 normal both;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blinkCursor {
    from { border-right-color: white }
    to { border-right-color: transparent }
}

/* ===== Footer (Unchanged) ===== */
.upperfooter {
    background-color: #415093;
    padding: 1.5rem 0;
}
.quicklink {
    text-decoration: none;
    color: white;
}
.quicklink2 {
    text-decoration: none;
    color: white;
}
.quicklink {
    transition: 0.3s;
}
.quicklink:hover {
    transform: scale(1.1);
}
.linksec:hover {
    color: red;
}
.horiline {
    width: 30%;
    color: white;
}
.icon {
    font-size: 35px;
    display: flex;
    gap: 15px;
}
.icon a {
    display: inline-block;
    transition: transform 0.3s ease;
}
.icon a:hover {
    transform: scale(1.2);
}
.icon svg {
    width: 35px;
    height: 35px;
}
.fa-facebook:hover {
    color: blue;
}
.fa-instagram:hover {
    color: palevioletred;
}
.fa-linkedin:hover {
    color: dodgerblue;
}
.fa-youtube:hover {
    color: red;
}
.fa-whatsapp:hover {
    color: green;
}
.copyfooter {
    font-family: Cambria, Calibri, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #202849;
    width: 100%;
    padding: 5px 0;
    margin: 0;
}
.copyfooter p {
    font-family: Cambria, Calibri, serif;
    margin: 0;
    text-align: center;
    font-size: 14px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .work-hero h1 {
        font-size: 2.8rem;
    }
    
    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-hero {
        padding: 100px 0 60px;
    }
    
    .work-hero h1 {
        font-size: 2.2rem;
    }
    
    .work-hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .work-tabs .nav-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-close {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .work-hero h1 {
        font-size: 1.8rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
    }
}










/* ===== Work Gallery Redesign ===== */
.work-hero {
    background: linear-gradient(135deg, rgba(65, 80, 147, 0.9), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.work-hero-content {
    position: relative;
    z-index: 1;
}

.work-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.work-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.work-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #415093;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #415093;
}

/* Gallery Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.work-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transition: all 0.3s ease;
}

.work-card:hover .work-card-overlay {
    padding-bottom: 30px;
}

.work-card h3 {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

.work-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #415093;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* Fullscreen Modal */
.work-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.modal-image-container {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

.modal-title {
    color: white;
    font-size: 1.8rem;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
    max-width: 80%;
}

.modal-nav {
    position: absolute;
    position-area: center;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(65, 80, 147, 0.7);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.modal-nav-btn:hover {
    background: #415093;
    transform: scale(1.1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    background: rgba(65, 80, 147, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: #415093;
    transform: rotate(90deg);
}

/* Counter */
.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .work-hero h1 {
        font-size: 2.8rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-hero {
        padding: 80px 0 50px;
    }
    
    .work-hero h1 {
        font-size: 2.2rem;
    }
    
    .work-hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
        max-width: 90%;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .work-hero h1 {
        font-size: 1.8rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-close {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}




/* ===== Work Gallery Redesign - Keeping Original Card Styles ===== */
.work-hero {
    background: linear-gradient(135deg, rgba(65, 80, 147, 0.9), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1605152276897-4f618f831968?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.work-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.work-hero-content {
    position: relative;
    z-index: 1;
}

.work-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease;
}

.work-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.work-main {
    padding: 80px 0;
    background: #f8f9fa;
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #415093;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #415093;
}

/* Original Card Styles */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.work-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.work-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover img {
    transform: scale(1.05);
}

.work-card-content {
    padding: 20px;
    position: relative;
    background: white;
}

.work-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #415093;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.work-category {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #415093;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Fullscreen Modal (unchanged from your preferred version) */
.work-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-modal.show {
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.modal-image-container {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease;
}

.modal-title {
    color: white;
    font-size: 1.8rem;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
    max-width: 80%;
}

.modal-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(65, 80, 147, 0.7);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.modal-nav-btn:hover {
    background: #415093;
    transform: scale(1.1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    background: rgba(65, 80, 147, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    background: #415093;
    transform: rotate(90deg);
}

/* Counter */
.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .work-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .work-hero h1 {
        font-size: 2.8rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .work-hero {
        padding: 100px 0 60px;
    }
    
    .work-hero h1 {
        font-size: 2.2rem;
    }
    
    .work-hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
        max-width: 90%;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .work-hero h1 {
        font-size: 1.8rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-title {
        font-size: 1rem;
    }
    
    .modal-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-close {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}
.fa-brands {
    color: white;
}