:root {
    --primary-color: #0b4251;
    --accent-color: #f2c864;
    --text-color: #222;
    --background-color: #fff;
    --secondary-color: #f7f7f7;
    --primary: #0056b3;
    --primary-dark: #003d82;
    --secondary: #333333;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
}

.btn-accent:hover {
    background: #ffe08a;
    color: var(--primary-color);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Header Styles */
header {
    background: var(--primary-color);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    background: var(--primary-color);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(51, 51, 51, 0.95) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1415&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-btns {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-btns .btn {
    margin: 0 10px;
}

/* Services Section */
.section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11,66,81,0.04);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    background: var(--accent-color);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.service-content li {
    margin-bottom: 8px;
    position: relative;
}

.service-content li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -15px;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--gray);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Enhanced Business Tools Section for Readability */
.tools {
    background: linear-gradient(135deg, #0b4251 0%, #155d72 100%);
    color: #fff;
    padding-top: 110px;
    padding-bottom: 110px;
}

.tools .section-header h2 {
    color: #fff;
    letter-spacing: 1px;
    font-size: 2.3rem;
}

.tools .section-header p {
    color: #f2f2f2;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.tool-card {
    background: rgba(255,255,255,0.97);
    border-radius: 14px;
    padding: 38px 28px 32px 28px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    border: none;
    box-shadow: 0 6px 24px rgba(11,66,81,0.10);
    color: #0b4251;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.tool-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(11,66,81,0.18);
    background: #f2c86422;
}

.tool-icon {
    font-size: 2.7rem;
    margin-bottom: 18px;
    color: #f2c864;
    background: #0b4251;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(11,66,81,0.10);
}

.tool-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b4251;
}

.tool-card p {
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    transition: opacity 0.5s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b4251;
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    opacity: 0.7;
}

.testimonial-prev { left: 10px; }
.testimonial-next { right: 10px; }

.testimonial-dots {
    text-align: center;
    margin-top: 18px;
}

.testimonial-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    background: #0b4251;
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s;
}

.testimonial-dots .dot.active {
    opacity: 1;
    background: #f2c864;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content::before {
    top: -20px;
    left: -20px;
}

.testimonial-content::after {
    bottom: -40px;
    right: -20px;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-details p {
    color: var(--gray);
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-col p {
    color: var(--light-gray);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: #153945; /* dark blue background for contrast */
        width: 80%;
        height: calc(100vh - 80px);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08); /* subtle divider */
    }
    
    .nav-menu a {
        color: #fff !important; /* ensure nav links are white */
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }

    .nav-menu .dropdown-menu {
        background: #1e4a5f !important; /* dark background for dropdown */
    }
    .nav-menu .dropdown-menu a {
        color: #fff !important; /* white text for dropdown links */
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-btns .btn {
        margin: 10px 0;
        display: block;
        width: 100%;
    }
}

a.logo img {
    filter: drop-shadow(0 2px 4px rgba(11,66,81,0.15));
}

.newsletter-form .btn-accent {
    background: var(--accent-color);
    color: var(--primary-color);
}

.newsletter-form .btn-accent:hover {
    background: #ffe08a;
    color: var(--primary-color);
}

/* Accent color for icons */
.service-icon i, .tool-icon i, .contact-icon i {
    color: var(--accent-color);
}

/* Invoice Generator Styles */
.invoice-generator .invoice-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.invoice-form {
    flex: 1 1 350px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(11,66,81,0.08);
    min-width: 320px;
}

.invoice-form .form-group {
    margin-bottom: 22px;
}

.invoice-form label {
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
    color: #0b4251;
}

.invoice-form input,
.invoice-form textarea {
    margin-bottom: 0;
}

#itemsContainer .item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

#itemsContainer .form-control {
    margin-bottom: 0;
}

.invoice-preview {
    flex: 1 1 350px;
    background: #f7f7f7;
    padding: 32px 28px;
    border-radius: 12px;
    min-width: 320px;
    box-shadow: 0 4px 16px rgba(11,66,81,0.06);
    color: #0b4251;
    font-family: 'Roboto', 'Poppins', Arial, sans-serif;
}

.invoice-box h3 {
    color: #0b4251;
    margin-bottom: 18px;
}

.invoice-box table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
}

.invoice-box th, .invoice-box td {
    border: 1px solid #eee;
    padding: 8px 10px;
    text-align: left;
}

.invoice-box th {
    background: #f2c864;
    color: #0b4251;
    font-weight: 600;
}

.invoice-box td {
    background: #fff;
}

@media (max-width: 900px) {
    .invoice-generator .invoice-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .invoice-form, .invoice-preview {
        min-width: 0;
        width: 100%;
    }
}

/* Invoice Generator Enhancements */
.invoice-form #logoUpload {
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.invoice-form .form-group input[type="file"] {
    padding: 6px 0;
}

.invoice-form .form-group input[type="tel"],
.invoice-form .form-group input[type="text"],
.invoice-form .form-group textarea {
    margin-bottom: 0;
}

.invoice-form .form-group {
    margin-bottom: 18px;
}

.invoice-form .btn-outline {
    min-width: 120px;
    margin-bottom: 6px;
}

.invoice-preview img[alt="Logo"] {
    display: block;
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(11,66,81,0.10);
}

.invoice-box > div:first-child {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .invoice-preview img[alt="Logo"] {
        max-width: 80px;
        max-height: 40px;
    }
    .invoice-form .btn-outline {
        min-width: 90px;
    }
}

/* Navbar Dropdown Styles */
.nav-menu .dropdown {
    position: relative;
}
.nav-menu .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 210px;
    box-shadow: 0 8px 24px rgba(11,66,81,0.12);
    border-radius: 0 0 8px 8px;
    z-index: 1001;
    padding: 10px 0;
}
.nav-menu .dropdown-menu li {
    margin: 0;
}
.nav-menu .dropdown-menu a {
    color: #0b4251;
    padding: 10px 24px;
    display: block;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-menu .dropdown-menu a:hover {
    background: #f2c86422;
    color: #0b4251;
}
.nav-menu .dropdown:hover > .dropdown-menu,
.nav-menu .dropdown:focus-within > .dropdown-menu {
    display: block;
}

/* Show dropdown on click for mobile */
@media (max-width: 992px) {
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #fff;
        min-width: 100%;
        border-radius: 0;
        padding: 0;
    }
    .nav-menu .dropdown.open > .dropdown-menu {
        display: block;
    }
    .nav-menu .dropdown-menu a {
        padding: 12px 18px;
    }
}

/* Services Page Styles */
.services-page {
    background: var(--secondary-color);
    padding-top: 110px;
    padding-bottom: 110px;
}
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .services-list {
        grid-template-columns: 1fr 1fr;
    }
}
.service-detail {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(11,66,81,0.08);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 28px;
    min-height: 220px;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.service-detail:hover {
    box-shadow: 0 8px 32px rgba(11,66,81,0.14);
    transform: translateY(-4px) scale(1.01);
}
.service-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11,66,81,0.80);
    z-index: 0;
    pointer-events: none;
    transition: background 0.3s;
}
.service-detail .service-icon,
.service-detail .service-info {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 1px 2px rgba(0,0,0,0.18);
}
.service-icon {
    font-size: 2.5rem;
    color: #f2c864;
    background: #0b4251;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(11,66,81,0.10);
    flex-shrink: 0;
}
.service-detail .service-info h3,
.service-detail .service-info p,
.service-detail .service-info ul,
.service-detail .service-info li {
    color: #fff !important;
}
.service-info h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0b4251;
}
.service-info p {
    color: #333;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
.service-info ul {
    padding-left: 20px;
    margin: 0;
    color: #0b4251;
    font-size: 0.98rem;
}
.service-info li {
    margin-bottom: 6px;
    position: relative;
}
.service-info li::before {
    content: "•";
    color: #f2c864;
    position: absolute;
    left: -15px;
}
.service-cloud {
    background-image: url('https://images.unsplash.com/photo-1581093588401-22b8d33c1e66?auto=format&fit=crop&w=800&q=80'); /* Bright datacenter */
}
.service-software {
    background-image: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=800&q=80'); /* Code on screen */
}
.service-erp {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=800&q=80'); /* Business dashboard */
}
.service-workspace {
    background-image: url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=800&q=80'); /* Team collaboration */
}
.service-infrastructure {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=800&q=80'); /* Bright LAN cables/networking */
}
.service-training {
    background-image: url('https://images.unsplash.com/photo-1515168833906-d2a3b82b302c?auto=format&fit=crop&w=800&q=80'); /* Bright boardroom/consultancy */
}

/* Portfolio Section Styles */
.portfolio {
    background: #f8fafc;
    padding-top: 80px;
    padding-bottom: 80px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 700px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1100px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.portfolio-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(11,66,81,0.08);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.portfolio-card:hover {
    box-shadow: 0 8px 32px rgba(11,66,81,0.14);
    transform: translateY(-4px) scale(1.01);
}
.portfolio-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #eaeaea;
}
.portfolio-info {
    padding: 22px 20px 18px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.portfolio-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0b4251;
    margin-bottom: 8px;
}
.portfolio-info p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0;
}
.portfolio-link {
    display: block;
    color: #f2c864;
    font-size: 0.97rem;
    margin-top: 6px;
    font-weight: 500;
}
.portfolio-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
