:root {
    --primary-color: #0f172a; /* Dark blue/slate */
    --secondary-color: #3b82f6; /* Blue */
    --accent-color: #f59e0b; /* Amber/Gold for awards/highlights */
    --text-color: #334155;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Navbar Styling - Clean & Professional */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); /* Subtle shadow */
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-right: 2rem;
}

.nav-link {
    font-weight: 700;
    color: var(--text-color) !important;
    margin: 0 0.9rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.2s, text-shadow 0.2s;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    height: 2px;
    width: 28px;
    background: #3b82f6;
    transform: translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    transition: transform 0.25s ease;
    opacity: 0.9;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color) !important;
    text-shadow: 0 0 8px rgba(59,130,246,0.45), 0 0 2px rgba(59,130,246,0.35);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Animation - Subtle Fade */
.dropdown-menu {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 0.5rem;
    margin-top: 1rem;
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    border-radius: 0.25rem;
    padding: 0.6rem 1.25rem;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.2s;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

/* CTA Button - Solid Blue, Pill Rounded */
.navbar .btn-primary {
    border-radius: 50rem; /* Pill rounded corners */
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    box-shadow: none;
    transition: all 0.2s ease;
    border: none;
    background-color: var(--secondary-color);
    margin-left: 1rem;
}

.navbar .btn-primary:hover {
    background-color: #2563eb; /* Darker blue */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--secondary-color) !important;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.py-section {
    padding: 100px 0;
}

@media (max-width: 991px) {
    .py-section {
        padding: 60px 0;
    }
}

/* Hero Section Refinements */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

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

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 2s ease-in-out;
    transform: scale(1.1);
    display: flex;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: #f8fafc !important; /* Brighter text */
    max-width: 650px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content .btn-primary {
    background-color: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
}

.hero-content .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

/* Badge Refinement for Dark Background */
.badge-classic {
    background-color: #3b82f6;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    padding: 0.7rem 1.4rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.animate-in-up {
    opacity: 0;
}

.slider-item.active .animate-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s !important; }
.delay-2 { animation-delay: 0.4s !important; }
.delay-3 { animation-delay: 0.6s !important; }

/* Stat Card Classic Style */
.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

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

/* Workflow Section Redesign */
.workflow-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.workflow-container {
    position: relative;
    z-index: 2;
}

.workflow-step {
    position: relative;
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.workflow-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.workflow-step:hover .workflow-icon-wrapper {
    background: #3b82f6;
    color: #ffffff;
    transform: rotate(10deg);
}

.workflow-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    position: absolute;
    bottom: -20px;
    right: -10px;
    line-height: 1;
    z-index: 1;
    transition: all 0.4s ease;
}

.workflow-step:hover .workflow-number {
    color: rgba(59, 130, 246, 0.08);
    transform: scale(1.1);
}

.workflow-content {
    position: relative;
    z-index: 2;
}

.workflow-content h4 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.workflow-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Connecting lines for large screens */
@media (min-width: 992px) {
    .workflow-step::after {
        content: "";
        position: absolute;
        top: 70px;
        left: 100%;
        width: 100%;
        height: 2px;
        background-image: linear-gradient(to right, #3b82f6 33%, rgba(255,255,255,0) 0%);
        background-position: bottom;
        background-size: 15px 1px;
        background-repeat: repeat-x;
        z-index: -1;
        opacity: 0.3;
    }
    
    .col-lg-3:last-child .workflow-step::after {
        display: none;
    }
}

/* Service Card Classic Style */
.service-card {
    border: 1px solid #f1f5f9 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    border-color: #3b82f6 !important;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-card .service-icon {
    margin-top: -32px;
    position: relative;
    z-index: 3;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background-color: #1d4ed8 !important; /* Darker blue on hover */
}

.service-card .card-body-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.learn-more-link {
    margin-top: auto;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.learn-more-link i {
    transition: transform 0.3s ease;
}

/* Service Card v2 (used in services.php) */
.service-card-v2, .service-card {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 20px !important;
    padding: 24px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

.service-card-v2:hover, .service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: #e2e8f0 !important;
}

.service-icon-box, .service-icon {
    background-color: #f0f7ff !important;
    color: #3b82f6 !important;
    border-radius: 12px !important;
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.service-card-v2:hover .service-icon-box, 
.service-card:hover .service-icon {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
}

.service-card-v2 h3, .service-card h4 {
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
}

.service-image-v2 img {
    border-radius: 16px !important;
    transition: transform 0.5s ease !important;
}

.service-card:hover .service-image-v2 img,
.service-card-v2:hover img {
    transform: scale(1.02);
}

.learn-more-link {
    color: #2563eb !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    transition: gap 0.3s ease !important;
}

.learn-more-link:hover {
    gap: 12px !important;
    color: #1d4ed8 !important;
}

.line-clamp-7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #64748b !important;
    line-height: 1.6 !important;
}

/* Project Detail Page Redesign */
.project-detail-header {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid #f1f5f9;
}

/* Feature Cards (Why Choose Us) */
.feature-card {
    background: #ffffff;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 180px; /* Reduced min-height */
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6 !important;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background-color: #eff6ff;
    color: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
    background-color: #3b82f6;
    color: #ffffff;
    transform: scale(1.1);
}

.feature-card h4 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.feature-card p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.check-icon-blue {
    width: 28px;
    height: 28px;
    background-color: #eff6ff;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.check-icon-blue:hover {
    background-color: #3b82f6;
    color: #ffffff;
    transform: scale(1.1);
}

/* Add a subtle background pattern or shape on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.03);
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: 0;
}

.feature-card:hover::after {
    transform: scale(10);
    background: rgba(59, 130, 246, 0.05);
}

.feature-card * {
    position: relative;
    z-index: 1;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    transform: translateX(-50%);
}

.timeline-row {
    margin-bottom: 60px;
    position: relative;
    display: flex;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 16px;
    height: 16px;
    background: #3b82f6;
    border: 4px solid #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.timeline-content-col {
    padding: 0 40px;
}

.timeline-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-color: #3b82f6;
}

.timeline-year {
    display: inline-block;
    font-weight: 800;
    color: #3b82f6;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-row {
        justify-content: flex-start !important;
        padding-left: 50px;
    }
    
    .timeline-content-col {
        width: 100%;
        padding: 0;
    }
    
    .timeline-card {
        text-align: left !important;
    }
}

@media (max-width: 991px) {
    .project-detail-header {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-detail-header p.lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .project-detail-header .breadcrumb {
        justify-content: center;
    }
}

.project-title {
    color: #0f172a;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

@media (min-width: 992px) {
    .header-actions {
        justify-content: flex-end;
        width: auto;
    }
}

.header-actions .btn {
    border-radius: 14px;
    padding: 16px 32px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-width: 170px;
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary-light {
    color: #3b82f6;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 50rem;
}

.btn-outline-primary-light:hover {
    background: #ffffff;
    border-color: #3b82f6;
    color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.12);
}

.spec-sidebar-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.spec-sidebar-card h5 {
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

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

.spec-item {
    position: relative;
    padding-left: 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    display: block;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 16px;
    transition: background 0.2s ease;
    border: 1px solid transparent;
}

.team-member:hover {
    background: #f8fafc;
    border-color: #f1f5f9;
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-avatar {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.25rem;
}

.team-info h6 {
    margin: 0 0 2px 0;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.team-info span {
    font-size: 0.8rem;
    color: #64748b;
    display: block;
}

.inquiry-card {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 28px;
    padding: 40px 32px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.inquiry-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.inquiry-card:hover::before {
    transform: scale(1.2);
    opacity: 0.15;
}

/* Leadership Cards */
.leadership-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.card-img-top-wrapper {
    position: relative;
    overflow: hidden;
}

.card-img-top-wrapper img {
    transition: transform 0.5s ease;
}

.leadership-card:hover .card-img-top-wrapper img {
    transform: scale(1.05);
}

.filter-btn {
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
}

.filter-btn.active {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

/* Breadcrumb improvements for light header */
.project-detail-header .breadcrumb-item + .breadcrumb-item::before {
    color: #94a3b8;
}

.project-detail-header .breadcrumb-item a {
    color: #64748b !important;
    transition: color 0.2s;
}

.project-detail-header .breadcrumb-item a:hover {
    color: var(--secondary-color) !important;
}

.project-detail-header .breadcrumb-item.active {
    color: #1e293b !important;
}

.border-secondary-blue {
    border-color: var(--secondary-color) !important;
}

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

.btn-inquiry {
    background: #ffffff;
    border: none;
    color: #3b82f6;
    width: 100%;
    padding: 16px;
    border-radius: 50rem;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-inquiry:hover {
    background: #f8fafc;
    color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-section h4 {
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

.gallery-section h4::before {
    content: "";
    width: 6px;
    height: 28px;
    background: #3b82f6;
    border-radius: 3px;
}

.gallery-img-wrapper {
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.overview-section h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.similar-project-card {
    border: 1px solid #f1f5f9;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    background: #ffffff;
}

.similar-project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
    border-color: #3b82f6;
}

.similar-project-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.similar-project-body {
    padding: 32px;
}

.similar-project-category {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.similar-project-title {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.similar-project-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-view-project {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-view-project i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-view-project:hover {
    color: #2563eb;
}

.btn-view-project:hover i {
    transform: translateX(6px);
}

.text-primary-blue {
    color: #3b82f6 !important;
}

.bg-light-subtle {
    background-color: #f8fafc !important;
}

/* About Page Classic Styles */
.about-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.classic-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
}

.about-lead {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 550px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.about-hero-image {
    position: relative;
}

.about-hero-image .img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.image-overlay-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.image-overlay-card i {
    font-size: 2.5rem;
    color: #3b82f6;
}

.image-overlay-card h6 {
    margin: 0;
    font-weight: 800;
    color: #0f172a;
}

.image-overlay-card span {
    font-size: 0.9rem;
    color: #64748b;
}

.mission-vision-card {
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.04);
    transform: translateY(-3px);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.value-card-classic {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card-classic:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.05);
}

.value-icon-circle {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.leader-card-v2 {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.leader-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: #3b82f6;
}

.leader-img-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
}

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

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

.leader-info-v2 {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.leader-info-v2 h5 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.leader-info-v2 span {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.leader-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.leader-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-social a:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: rotate(360deg);
}

.classic-link {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-cta-card {
    background: #0f172a;
    padding: 80px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.btn-classic-light {
    background: #ffffff;
    color: #0f172a;
    padding: 18px 35px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-classic-light:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .about-title {
        font-size: 3rem;
    }
    .image-overlay-card {
        left: 20px;
        bottom: 20px;
        padding: 15px 25px;
    }
    .about-cta-card {
        padding: 40px;
    }
}
