:root {
    /* Colors - Dark Blue Theme */
    --primary-blue: #1c284c;
    --accent-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-blue: #1e293b;

    /* Neutral Colors - Soft, not harsh white */
    --bg-white: #fafbfc;
    --bg-light: #f1f5f9;
    --bg-gray: #e5e7eb;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-blue);
}

/* === CONTAINER & LAYOUT === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}


/* === IMAGE STYLES === */

/* General section images */
.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Service detail images */
.service-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Portfolio project images */
.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

/* Profile photo */
.profile-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* Responsive images */
@media (max-width: 768px) {

    .section-image,
    .service-image,
    .profile-photo {
        max-width: 100%;
    }
}

/* === HERO SECTION === */

.hero {
    background: linear-gradient(135deg, rgba(28, 40, 76, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%),
        url('../assets/images/hero-image.jpg') center/cover no-repeat;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 32px;
}

.trust-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== Hero Primary CTA Hover Fix (Desktop Only) ===== */
@media (hover: hover) and (pointer: fine) {
    .hero-cta .btn-primary {
        transition: all 0.3s ease !important;
    }

    .hero-cta .btn-primary:hover {
        background-color: #fff !important;
        /* change if needed */
        color: #201956 !important;
        border: 2px solid #201956 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
        text-decoration: none !important;
    }
}


/* === SERVICES OVERVIEW === */
.services-overview {
    background: white;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid var(--bg-gray);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    color: white;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.service-subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-desc {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 8px;
}

/* === HOME PORTFOLIO SECTION === */
.home-portfolio {
    background: var(--bg-white);
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
    border: 1px solid var(--bg-gray);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image-wrapper {
    height: 240px;
    overflow: hidden;
}

.portfolio-content {
    padding: 32px;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.portfolio-details p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.portfolio-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

.portfolio-link {
    margin-top: 16px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-blue);
}

.portfolio-link:hover {
    color: var(--accent-blue);
}

/* === TESTIMONIAL SECTION === */
.testimonial-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.author-role {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* === TESTIMONIAL GRID === */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
}



/* === WHY SECTION === */
.why-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text {
    max-width: 600px;
}

.why-desc {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: var(--text-gray);
}

.why-list {
    list-style: none;
    margin-bottom: 32px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.why-list svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-conclusion {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
}

.why-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.cta-section .btn-primary:hover {
    background: var(--bg-white);
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

.cta-features {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* ===================================
     HEADER STYLES (merged)
     =================================== */

/* === MAIN HEADER === */
.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--bg-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo img {
    height: 45px;
    width: auto;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-medium);
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-contact {
    background: var(--primary-blue);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.btn-contact:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-fast);
}

.hamburger .line {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.hamburger:hover .line {
    background: var(--primary-blue);
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: var(--bg-white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-medium);
    overflow-y: auto;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    padding: 32px 24px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: block;
    padding: 16px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    transform: translateX(4px);
}

.mobile-nav-link.active {
    background: var(--bg-light);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
        padding: 0 1.5rem;
    }

    .logo img {
        margin-top: 20px;
    }

    .logo a {
        font-size: 1.25rem;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-contact {
        padding: 6px 15px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .mobile-menu {
        width: 100%;
    }

    .btn-contact {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ===================================
     FOOTER STYLES (merged)
     =================================== */

.main-footer {
    background: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact svg {
    color: var(--light-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 48px 0 0;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .social-links {
        gap: 8px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
}

/* Social share links (footer) */
.social-share-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-share-links a {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-share-links a:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }
}


/* Update hero text colors for better contrast */
.hero-title,
.hero-title .highlight {
    color: white;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item {
    color: white;
}

.benefit-icon {
    color: rgba(255, 255, 255, 0.95);
}

.trust-text {
    color: rgba(255, 255, 255, 0.85);
}

#footerthings li a {
    color: white;
    text-decoration: none;
}

#footerthings li a:hover {
    text-decoration: underline;
    color: aqua;
}

/* ===================================
    FLOATING ACTION BUTTONS
    =================================== */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

/* Scroll to Top Button */
.scroll-top-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

/* Pulse Animation for WhatsApp */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }
}

/* ===================================
    FLOATING ACTION BUTTONS
    =================================== */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* WhatsApp Tooltip/Chat Bubble */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #1f2937;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideInBounce 0.6s ease-out;
    pointer-events: none;
}

/* Chat bubble tail/arrow pointing to button */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* Slide in and bounce animation */
@keyframes slideInBounce {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }

    60% {
        transform: translateX(-5px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Tooltip hover effect - make it slightly bigger */
.whatsapp-btn:hover .whatsapp-tooltip {
    transform: scale(1.02);
}

/* Call Button */
.call-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
}

.call-btn:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

/* Scroll to Top Button */
.scroll-top-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

/* Pulse Animation for WhatsApp */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-tooltip {
        right: 65px;
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .whatsapp-tooltip::after {
        right: -6px;
        border-left-width: 6px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
}

@media (max-width: 480px) {
    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-tooltip {
        right: 60px;
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-medium);
    border: 1px solid var(--bg-gray);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image-wrapper {
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition-medium);
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 32px;
}

.portfolio-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.portfolio-details p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.7;
}

.portfolio-details strong {
    color: var(--text-dark);
    font-weight: 600;
}

.portfolio-link {
    margin-top: 16px;
    display: inline-block;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-medium);
}

.portfolio-link:hover {
    color: var(--accent-blue);
}

.portfolio-cta {
    text-align: center;
    margin-top: 48px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .home-portfolio {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PORTFOLIO PAGE STYLES
   =================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(28, 40, 76, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%),
        url('../assets/images/hero-image.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 16px;
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: white;
}

/* Portfolio Grid - 2x2 Layout */
.portfolio-grid-cases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Project Case Card */
.project-case-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bg-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--light-blue);
}

/* Project Image */
.project-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.project-case-card:hover .project-image img {
    transform: scale(1.05);
}

/* Project Content */
.project-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.project-category {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

/* Case Study Section */
.case-study {
    flex: 1;
    margin-bottom: 24px;
}

.case-item {
    margin-bottom: 20px;
}

.case-item:last-child {
    margin-bottom: 0;
}

.case-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.case-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Project Meta - FIXED VERSION */
.project-meta {
    border-top: 1px solid var(--bg-gray);
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-medium);
}

.project-link:hover {
    color: var(--accent-blue);
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid-cases {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .portfolio-section {
        padding: 60px 0;
    }

    .project-content {
        padding: 24px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-image {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .project-content {
        padding: 20px;
    }

    .project-image {
        height: 240px;
    }
}