/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@600;700;800&display=swap');

/* CSS Variables - Matching lovableAI Design System */
:root {
    --background: 0 0% 98%;
    --foreground: 0 0% 0%;
    --card: 0 0% 100%;
    --card-foreground: 0 0% 0%;
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 0%;
    --primary: 210 100% 33%;
    --primary-foreground: 0 0% 100%;
    --secondary: 210 30% 93%;
    --secondary-foreground: 210 100% 25%;
    --muted: 210 15% 94%;
    --muted-foreground: 210 10% 40%;
    --accent: 152 100% 33%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 210 15% 88%;
    --input: 210 15% 88%;
    --ring: 152 100% 33%;
    --radius: 0.625rem;
    
    /* Legacy variables for compatibility */
    --navy: #0066b3;
    --navy-light: #2d8bd9;
    --gold: #00a651;
    --gold-light: #26b56e;
    --warm-gray: #f5f5f5;
    --primary-color: #0066b3;
    --accent-color: #00a651;
    --background-color: #fafafa;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e2e2e2;
    --overlay-bg: rgba(0, 102, 179, 0.85);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: hsl(var(--background));
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    margin-bottom: 3rem;
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Services Section */
@media (max-width: 576px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
}

/* Portfolio Section */
@media (max-width: 576px) {
    .portfolio-card {
        margin-bottom: 1.5rem;
    }
    
    .portfolio-content {
        padding: 1rem;
    }
    
    .portfolio-header h4 {
        font-size: 1rem;
    }
    
    .portfolio-content > p {
        font-size: 0.8rem;
    }
}

/* Contact Section */
@media (max-width: 768px) {
    .contact-form-simple {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        align-self: center;
    }
}

@media (max-width: 576px) {
    .contact-form-simple {
        padding: 1rem;
    }
}

.text-accent {
    color: var(--accent-color) !important;
}

.text-muted {
    color: hsl(var(--muted-foreground)) !important;
}

/* Navigation */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 102, 179, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 166, 81, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--background-color) !important;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
}

.brand-text {
    color: var(--background-color);
}

.brand-accent {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

.btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline-accent:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-description {
        font-size: 1rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn-accent,
    .hero-buttons .btn-outline-accent {
        width: 100%;
        text-align: center;
    }
}

.btn-accent {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: var(--gold-light);
    color: white;
    transform: translateY(-2px);
}

.clientele-belt-wrapper {
    background: #ffffff;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .clientele-belt-wrapper {
        margin-top: 2rem;
    }
}

/* Clientele Belt - Infinite Scroll */
.clientele-belt {
    background: #ffffff;
    padding: 3rem 8rem;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1200px) {
    .clientele-belt {
        padding: 3rem 4rem;
    }
}

@media (max-width: 768px) {
    .clientele-belt {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .clientele-belt {
        padding: 1.5rem 0.5rem;
    }
}

.clientele-belt::before,
.clientele-belt::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clientele-belt::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.clientele-belt::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.clientele-belt .container {
    max-width: 100%;
    padding: 0;
}

.clientele-scroll {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.clientele-scroll:hover {
    animation-play-state: paused;
}

.clientele-item {
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .clientele-item {
        padding: 1rem 1.5rem;
    }

    .client-text {
        font-size: 12px;
    }

    .clientele-item img {
        height: 30px;
    }
}

.clientele-item:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 166, 81, 0.3);
    transform: scale(1.05);
}

.clientele-item img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clientele-item:hover img {
    opacity: 1;
}

.client-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.clientele-item:hover .client-text {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Intro Section */
.about-intro-section {
    background: #0a0f1c;
    padding: 5rem 0;
}

.about-intro-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
}

.title-underline-center {
    width: 60px;
    height: 3px;
    background: #3b82f6;
    margin: 1rem auto 1.5rem;
}

.about-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 1rem;
}

.about-heading {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.btn-primary-about {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary-about:hover {
    background: #2563eb;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 992px) {
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

/* About Feature Cards */
.about-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #3b82f6;
    font-size: 1.5rem;
}

.about-feature-card h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-feature-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .about-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-feature-cards {
        grid-template-columns: 1fr;
    }
}

/* Services Section - Matching lovableAI */
.services-section {
    background: hsl(var(--background));
    padding: 5rem 0;
}

.service-card {
    background: hsl(var(--card));
    border-radius: 0.625rem;
    border: 1px solid hsl(var(--border));
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 166, 81, 0.4);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 166, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(0, 166, 81, 0.2);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Why Us Section - Matching lovableAI Dark Navy Design */
.why-us-section {
    background: var(--navy);
    padding: 5rem 0;
}

.why-us-section .section-title {
    color: white;
}

.why-us-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.625rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.why-us-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 166, 81, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    font-size: 1.75rem;
}

.why-us-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section - Matching lovableAI Dark Design */
.about-section {
    background: var(--primary-color);
    padding: 5rem 0;
}

.about-section .section-title {
    color: white;
}

.about-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.about-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.about-checklist li i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    padding: 2rem;
    text-align: center;
}

.about-stat-card .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.about-stat-card .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: #0c1220;
    padding: 5rem 0;
}

.mission-vision-section .section-title {
    color: white;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 166, 81, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.75rem;
}

.mv-card h3 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Team Section */
.team-section {
    background: #0f172a;
    padding: 5rem 0;
}

.team-section .section-title {
    color: white;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.team-title-wrapper {
    max-width: 500px;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: #3b82f6;
    margin: 1rem 0 1.5rem;
}

.team-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-nav {
    display: flex;
    gap: 0.75rem;
}

.team-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: transparent;
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.team-bio {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-nav {
        align-self: flex-end;
    }
}

/* Contact Section - Matching lovableAI */
.contact-section {
    background: hsl(var(--background));
    padding: 5rem 0;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 166, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    color: hsl(var(--muted-foreground));
    margin: 0;
}

.contact-form-simple {
    background: hsl(var(--card));
    border-radius: 0.625rem;
    padding: 2rem;
}

.contact-form-simple .form-control {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.contact-form-simple .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

/* Portfolio Section */
.portfolio-section {
    background: #ffffff;
    padding: 5rem 0;
}

.portfolio-section .section-title {
    color: #1a1a2e;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.portfolio-section .section-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.portfolio-filters {
    margin-bottom: 2rem;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 0.5rem 1.25rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.filter-btn.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.portfolio-header h4 {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.portfolio-date {
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-content > p {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.portfolio-metrics {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f5;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    color: #adb5bd;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.metric-value {
    color: #1a1a2e;
    font-size: 0.9rem;
    font-weight: 700;
}

.metric-actions {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.metric-actions .btn-outline-primary {
    border-color: #dee2e6;
    color: #495057;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background: transparent;
}

.metric-actions .btn-outline-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

/* Footer - Multi-column Design */
.footer {
    background: #0c1220;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: var(--accent-color);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.footer h5 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer .row > div {
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-brand {
        font-size: 1.25rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.footer-bottom strong {
    color: white;
}

.designed-by {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.designed-by a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Page Header - for About page */
.page-header {
    background: #0a0f1c;
    padding: 8rem 0 4rem;
    margin-top: 0;
}

.page-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Section */
.about-content-section {
    background: #0a0f1c;
    padding: 4rem 0;
}

.about-content-section .about-heading {
    color: white;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.about-content-section .about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-content-section .btn-primary-about {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.about-content-section .btn-primary-about:hover {
    background: #2563eb;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-header {
        padding: 7rem 0 3rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 6rem 0 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}
