:root {
    --primary-color: #002347;
    /* Deep Navy */
    --secondary-color: #004080;
    /* Corporate Blue */
    --accent-color: #0099ff;
    /* Electric Blue */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --white: #ffffff;
    --light-bg: #f4f7fa;
    --border-radius: 12px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('images/headerbg.png') no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0;
}

.hero-content {
    max-width: 420px;
    padding-left: 0;
}

.hero-content h1 {
    font-size: 85px;
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-content .tagline {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.tagline-line {
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    margin-bottom: 30px;
}

.hero-content .description {
    font-size: 18px;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 40px;
    max-width: 380px;
    font-weight: 500;
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
    z-index: 1;
    min-height: 400px;
}

.hero-overlay-text {
    position: absolute;
    bottom: 25%;
    right: 12%;
    color: var(--white);
    text-align: left;
    z-index: 2;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.hero-overlay-text h3 {
    color: var(--white);
    font-size: 44px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Features List */
.feature-item {
    display: flex;
    align-items: center;
}

.feature-icon {
    font-size: 34px;
    color: var(--primary-color);
    margin-right: 12px;
}

.feature-info {
    line-height: 1.1;
}

.feature-info .title {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-color);
}

.feature-info .subtitle {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    padding: 0 60px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transform: translateY(-50%);
}

.section-title h2::before {
    left: 0;
}

.section-title h2::after {
    right: 0;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-overlay {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 4px solid var(--white);
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card .card-body {
    padding: 40px 20px 20px;
}

.service-card h5 {
    font-size: 18px;
    margin-bottom: 0;
}

/* Stats Banner */
.stats-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 30px;
    margin-right: 15px;
    color: var(--accent-color);
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 0;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 15px;
    font-weight: 600;
}

.check-list li i {
    color: var(--accent-color);
    margin-right: 10px;
}

.mission-vision-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
    color: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    border-left: 5px solid var(--accent-color);
}

.mission-vision-box i {
    font-size: 30px;
    margin-right: 20px;
    color: var(--accent-color);
}

.mission-vision-box h4 {
    color: var(--white);
    margin-bottom: 10px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #f0f7ff 0%, #ffffff 100%);
    padding: 60px 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    border: 1px solid rgba(0, 153, 255, 0.1);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: var(--white);
}

footer .logo-text {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        background: var(--white);
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-overlay-text {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin-top: 50px;
        color: var(--primary-color);
    }

    .hero-overlay-text h3 {
        color: var(--primary-color);
    }
}
/* Inner Hero */
.inner-hero {
    position: relative;
    background: url('images/headerbg.png') no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item, .breadcrumb-item a {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.inner-hero h1 {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.inner-hero .tagline {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    border-right: 1px solid #eee;
}

.value-card:last-child {
    border-right: none;
}

.value-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.value-card h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Mission Vision Container */
.mission-vision-row {
    background: #f8f9fa;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.mission-box, .vision-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
    padding: 40px;
    color: var(--white);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mission-box i, .vision-box i {
    font-size: 40px;
    margin-right: 20px;
    color: var(--accent-color);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-card i {
    font-size: 35px;
    color: var(--primary-color);
    margin-right: 10px;
}

.stat-card h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Process Flow */
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
    position: relative;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.process-step .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.process-step i {
    font-size: 40px;
    color: var(--primary-color);
}

.process-step h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
}

.process-arrow {
    position: absolute;
    top: 40px;
    right: -10px;
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 900;
}

@media (max-width: 992px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
    }
    .process-step {
        margin-bottom: 40px;
    }
    .process-arrow {
        transform: rotate(90deg);
        right: auto;
        bottom: -30px;
        left: 50%;
        margin-left: -12px;
    }
}

/* Hero Features Row */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    background: rgba(255,255,255,0.8);
    padding: 20px;
    border-radius: 10px;
    display: inline-flex;
}

.hero-feature-item {
    text-align: center;
    padding: 0 10px;
}

.hero-feature-item i {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.hero-feature-item span {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
}

/* Service Detail Includes */
.service-include-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: var(--transition);
}

.service-include-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-include-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-include-card h5 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-include-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Brands & Types Section */
.type-list {
    list-style: none;
    padding: 0;
}

.type-list li {
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.type-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.brand-item {
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--accent-color);
    background: #f8fbff;
}

.brand-item span {
    font-weight: 900;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1px;
}

/* Why Choose Section (Detail Page) */
.why-choose-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #001a35 100%);
    padding: 60px 0;
    color: var(--white);
    border-radius: 20px;
}

.why-choose-item-detail {
    text-align: center;
    padding: 0 15px;
}

.why-choose-item-detail i {
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.why-choose-item-detail h6 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--white);
}

.why-choose-item-detail p {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Projects Hero Section */
.projects-hero {
    background: #f8fbff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.projects-hero-img {
    position: relative;
    z-index: 1;
}

.projects-hero-img::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 120%;
    height: 120%;
    background: var(--primary-color);
    border-radius: 50% 0 0 50%;
    z-index: -1;
}

.projects-hero img {
    border-radius: 40% 10px 10px 40%;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    width: 100%;
}

/* Projects Stats Bar */
.projects-stats-bar {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item-project {
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item-project:last-child {
    border-right: none;
}

.stat-item-project i {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-item-project h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item-project p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
}

/* Project Cards */
.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.project-img-wrapper {
    position: relative;
    height: 220px;
}

.project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-icon-circle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    z-index: 2;
}

.project-card .card-body {
    padding: 40px 25px 30px;
    text-align: center;
}

.project-card h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.project-location {
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.project-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-details {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.view-details:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.divider-line {
    height: 1px;
    background: #ddd;
    flex-grow: 1;
    max-width: 100px;
}

.divider-text {
    padding: 0 20px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .projects-stats-bar {
        margin-top: 30px;
    }
    .stat-item-project {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }
    .stat-item-project:last-child {
        border-bottom: none;
    }
}

/* Project Detail Specific */
.project-meta-box {
    text-align: center;
    padding: 15px;
    border-right: 1px solid #eee;
}

.project-meta-box:last-child {
    border-right: none;
}

.project-meta-box i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.project-meta-box .meta-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.project-meta-box .meta-value {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
}

.highlights-card {
    background: #f1f7ff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.highlights-list li i {
    color: var(--accent-color);
    margin-right: 15px;
}

.gallery-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.result-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.result-icon {
    width: 50px;
    height: 50px;
    background: #f8fbff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 20px;
}

.result-content h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 0;
    color: var(--primary-color);
}

.result-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.execution-process {
    background: #f8fbff;
    padding: 60px 0;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .project-meta-box {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

/* Contact Page Specific */
.contact-info-card {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #f8f9fa;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info-card .icon-box {
    width: 60px;
    height: 60px;
    background: #f1f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin-right: 25px;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.contact-info-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-form-wrapper {
    background: #f8fbff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #eef4fb;
}

.contact-form-wrapper .form-control {
    border-radius: 10px;
    padding: 15px 20px;
    border: 1px solid #e1e8f0;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(1, 41, 112, 0.1);
}

.trust-badges-bar {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-badge-item {
    display: flex;
    align-items: center;
}

.trust-badge-item i {
    font-size: 30px;
    color: var(--primary-color);
    margin-right: 20px;
}

.trust-badge-item h6 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.trust-badge-item p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.map-section {
    position: relative;
    height: 450px;
    margin-bottom: 50px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #e9ecef;
    border-radius: 20px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-info-card {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    width: 380px;
    z-index: 5;
}

.map-info-card h5 {
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-info-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px;
        margin-top: 50px;
    }
    .map-info-card {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }
    .map-section {
        height: auto;
    }
}

/* Gallery Specific */
.gallery-filter-bar {
    background: var(--white);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 50px;
}

.filter-item {
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
}

.filter-item i {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.filter-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.filter-item:hover {
    background: #f1f7ff;
}

.filter-item.active {
    background: var(--primary-color);
}

.filter-item.active i,
.filter-item.active span {
    color: var(--white);
}

.gallery-grid-item {
    margin-bottom: 30px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.gallery-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.1);
}

.gallery-caption {
    padding: 15px;
    text-align: center;
}

.gallery-caption h6 {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .gallery-filter-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    .filter-item {
        width: 33.33%;
        padding: 10px;
    }
}

/* Creative Approach Section */
.approach-section {
    position: relative;
    overflow: hidden;
}

.creative-process-row {
    position: relative;
    padding-top: 50px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
}

/* The connecting line */
.creative-process-row::before {
    content: '';
    position: absolute;
    top: 145px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #eef4fb;
    z-index: 1;
}

.approach-step-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f4f8;
    height: 100%;
}

.approach-step-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(1, 41, 112, 0.12);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.approach-step-card .icon-circle {
    width: 80px;
    height: 80px;
    background: #f1f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition);
}

.approach-step-card:hover .icon-circle {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(10deg);
}

.approach-step-card h5 {
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-step-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .creative-process-row::before {
        display: none;
    }
    .approach-step-card {
        margin-bottom: 50px;
    }
}

/* 5 Column Grid for Horizontal Layout */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}
