<style >
/* General Body */
body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0;
}

    .hero-section h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .hero-section .lead {
        font-size: 1.25rem;
        font-weight: 400;
        margin-bottom: 2rem;
        color: #6c757d;
    }

    .hero-section .btn {
        border-radius: 50px;
        padding: 0.875rem 2.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border: none;
    }

        .hero-section .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
        }

.hero-image {
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .hero-image:hover {
        transform: scale(1.02);
    }

/* Section Spacing */
.section {
    padding: 80px 0;
}

/* Who We Are & Testimonials */
.who-we-are, .testimonials {
    background: #f8f9fa;
}

.section-badge {
    background: linear-gradient(135deg, #ffc107, #ff8800);
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.display-6 {
    font-weight: 700;
    line-height: 1.3;
}

.text-highlight {
    background: linear-gradient(135deg, #003333, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Testimonials Cards */
.testimonials .card {
    transition: all 0.3s ease;
    border: none;
    background: #fff;
}

    .testimonials .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.testimonial-quote {
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #ffc107;
}

/* Client Logos */
.grayscale {
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    max-height: 50px;
}

    .grayscale:hover {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.05);
    }

/* Principles Section */
.principles {
    background: #fff;
    padding: 80px 0;
}

.principle-card {
    transition: all 0.3s ease;
    border: none;
    background: #fff;
    position: relative;
    overflow: hidden;
}

    .principle-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #ffc107, #ff8800);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .principle-card:hover::before {
        transform: scaleX(1);
    }

    .principle-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

/* Icon Circle for Principles */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff8800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.principle-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Showcase Gallery */
.showcase-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

    .showcase-card img {
        transition: transform 0.4s ease;
        height: 250px;
        object-fit: cover;
    }

    .showcase-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

        .showcase-card:hover img {
            transform: scale(1.08);
        }

    .showcase-card .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0,51,51,0.85) 0%, rgba(255,193,7,0.85) 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        font-weight: 600;
        letter-spacing: 0.5px;
        font-size: 1.25rem;
    }

    .showcase-card:hover .overlay {
        opacity: 1;
    }

/* Content Images */
.content-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .content-image:hover {
        transform: scale(1.02);
    }

/* Responsive Design */
@@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

        .hero-section h1 {
            font-size: 2.5rem;
        }

    .hero-image {
        max-height: 280px;
        margin-top: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .principles {
        padding: 60px 0;
    }
}

/* Subtle Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Button Enhancements */
.btn-outline-primary {
    border-width: 2px;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,123,255,0.3);
    }

/* Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e9ecef, transparent);
    margin: 0 auto;
    width: 50%;
}

</style >
