/**
 * Custom Styles
 * Additional styling for Okanta Engineering Theme
 */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #004499;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Loading Animation */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dropdown Menu Styles */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 10px 0;
    border-radius: 5px;
    z-index: 999;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children.hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    padding: 0;
}

.main-navigation .sub-menu a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
}

.main-navigation .sub-menu a::after {
    display: none;
}

/* ===============================================
   HOMEPAGE ENHANCEMENTS
   =============================================== */

/* Stats Section with Icons */
.stats-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.stats-section .section-title,
.stats-section .section-subtitle {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Services Section Enhanced */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-content h3 a:hover {
    color: #0066cc;
}

.service-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
}

/* Projects Section Enhanced */
.projects-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.project-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 68, 153, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-view {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.project-item-content {
    padding: 25px;
}

.project-item-content h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.project-item-content h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-item-content h4 a:hover {
    color: #0066cc;
}

.project-item-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-link {
    color: #0066cc;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #004499;
    gap: 8px;
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Enhancements */
.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* No Content Messages */
.no-services,
.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-image,
    .project-image {
        height: 200px;
    }
}

.main-navigation .sub-menu a:hover {
    background-color: #f8f9fa;
}

/* Animated Elements */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* Service Cards Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination span {
    display: inline-block;
}

.pagination span a {
    display: block;
    padding: 10px 15px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.pagination span.active a,
.pagination span a:hover {
    background-color: #0066cc;
    color: #ffffff;
    border-color: #0066cc;
}

/* Comments Styles */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 10px;
}

.comment-metadata {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.comment-content {
    margin-bottom: 15px;
}

.reply {
    margin-bottom: 10px;
}

.reply a {
    color: #0066cc;
    font-size: 0.9rem;
}

/* ===============================================
   WHY CHOOSE US - REDESIGNED
   =============================================== */

.why-choose-us-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-redesigned::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.12);
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon {
    width: 64px;
    height: 64px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ===============================================
   TRUSTED CLIENTS SLIDER
   =============================================== */

.trusted-clients-section {
    padding: 80px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.clients-slider-wrapper {
    margin: 50px 0;
    overflow: hidden;
    position: relative;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.clients-slider {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.clients-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-slide {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.12);
}

.client-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===============================================
   ARCHIVE PAGES - SERVICES
   =============================================== */

.archive-services {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 50px 0;
}

.service-archive-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.service-archive-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-archive-card:hover .service-archive-image img {
    transform: scale(1.15);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 68, 153, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-archive-card:hover .service-image-overlay {
    opacity: 1;
}

.view-service {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-archive-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-archive-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.service-archive-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-archive-title a:hover {
    color: #0066cc;
}

.service-archive-excerpt {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-archive-footer {
    margin-top: auto;
}

.service-archive-footer .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-archive-footer .btn:hover .arrow {
    transform: translateX(5px);
}

/* ===============================================
   ARCHIVE PAGES - PROJECTS
   =============================================== */

.archive-projects {
    padding: 60px 0;
    background: #ffffff;
}

.project-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
    padding: 40px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.project-stat {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.project-stat:last-child {
    border-right: none;
}

.project-stat .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.project-stat .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.projects-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin: 50px 0;
}

.project-archive-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.project-archive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.15);
}

.project-archive-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.project-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 102, 204, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92), rgba(0, 68, 153, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-archive-card:hover .project-image-overlay {
    opacity: 1;
}

.project-archive-card:hover .project-archive-image img {
    transform: scale(1.15);
}

.overlay-content {
    text-align: center;
}

.view-project {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 14px 32px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    margin-bottom: 15px;
}

.project-arrow {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
}

.project-archive-content {
    padding: 28px;
}

.project-archive-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.project-archive-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-archive-title a:hover {
    color: #0066cc;
}

.project-archive-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.project-archive-footer {
    margin-top: 10px;
}

.project-link {
    color: #0066cc;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: #004499;
    gap: 12px;
}

.project-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.project-link:hover .arrow {
    transform: translateX(3px);
}

/* Archive CTA Section */
.archive-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
}

.archive-cta h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.archive-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-services-found,
.no-projects-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-services-found p,
.no-projects-found p {
    font-size: 1.1rem;
}

/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

.contact-page {
    padding: 60px 0 80px;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-intro h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #0066cc, #004499);
    transition: height 0.3s ease;
}

.contact-card:hover::before {
    height: 100%;
}

.contact-card:hover {
    border-color: #0066cc;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.phone-secondary {
    font-size: 0.9rem;
    color: #999;
    margin-top: 3px !important;
}

.contact-card-arrow {
    font-size: 1.5rem;
    color: #0066cc;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
    transform: translateX(5px);
}

/* Business Hours */
.business-hours {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
}

.business-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.business-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.business-hours ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span {
    font-weight: 600;
}

/* Map Column */
.contact-map-column {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

.map-link-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    color: #0066cc;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.map-link-button:hover {
    background: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
}

.contact-form-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-form-intro h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-form-intro p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Form 7 Styling */
.contact-form-wrapper .wpcf7-form {
    display: grid;
    gap: 20px;
}

.contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper input[type="submit"] {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* ===============================================
   RESPONSIVE DESIGN - REDESIGNED SECTIONS
   =============================================== */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-intro h1 {
        font-size: 2.2rem;
    }
    
    .features-grid-redesigned {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-archive-grid,
    .projects-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .project-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .client-slide {
        width: 150px;
        height: 85px;
    }
}

@media (max-width: 768px) {
    .features-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .services-archive-grid,
    .projects-archive-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-stats-bar {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 30px 20px;
    }
    
    .project-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 25px 10px;
    }
    
    .project-stat:last-child {
        border-bottom: none;
    }
    
    .client-slide {
        width: 130px;
        height: 75px;
        padding: 15px;
    }
    
    .clients-slider {
        gap: 40px;
    }
    
    .archive-cta {
        padding: 50px 25px;
    }
    
    .archive-cta h2 {
        font-size: 2rem;
    }
    
    .archive-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Search Form */
.search-form {
    position: relative;
    max-width: 400px;
}

.search-form input[type="search"] {
    width: 100%;
    padding-right: 50px;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.search-form button:hover {
    background: #004499;
}

/* Post Navigation */
.post-navigation {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    display: block;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.post-navigation a:hover {
    background: #0066cc;
    color: #ffffff;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Accessibility */
.skip-link:focus {
    z-index: 100000;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .sidebar,
    .back-to-top,
    .menu-toggle {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ===============================================
   CLIENTS PAGE STYLES
   =============================================== */

.clients-section {
    padding: 60px 0 80px;
}

.clients-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.clients-intro h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.clients-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
}

.clients-grid-with-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.client-card-link {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.client-card-link:hover {
    transform: translateY(-8px);
    border-color: #0066cc;
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
}

.client-link-wrapper {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.client-logo-container {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.client-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.client-card-link:hover .client-logo-container img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.client-name-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-size: 1.1rem;
}

.client-info {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.client-info h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.visit-website {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #0066cc;
    font-weight: 600;
    transition: all 0.3s ease;
}

.client-card-link:hover .visit-website {
    gap: 10px;
}

.visit-website svg {
    transition: transform 0.3s ease;
}

.client-card-link:hover .visit-website svg {
    transform: translateX(3px) translateY(-3px);
}

/* Clients Pagination */
.clients-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #0066cc;
    border-color: #0066cc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #0066cc;
    border-color: #0066cc;
    color: #ffffff;
    transform: scale(1.1);
}

.pagination-info {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* Clients Page Responsive */
@media (max-width: 992px) {
    .clients-grid-with-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .clients-intro h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .clients-grid-with-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .client-logo-container {
        height: 140px;
        padding: 20px;
    }
    
    .clients-intro h1 {
        font-size: 1.8rem;
    }
    
    .clients-intro p {
        font-size: 1rem;
    }
    
    .pagination-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===============================================
   ABOUT PAGE - MISSION & VISION
   =============================================== */

.mission-vision-section {
    margin: 60px 0;
}

.mission-box,
.vision-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0066cc, #004499);
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.mission-box h3,
.vision-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mission-box p,
.vision-box p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.mission-box p strong,
.vision-box p strong {
    color: #0066cc;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 10px;
}

.mission-box ul,
.vision-box ul {
    margin-top: 20px;
}

.mission-box ul li,
.vision-box ul li {
    color: #555;
    font-size: 1rem;
    line-height: 2;
    padding-left: 10px;
    position: relative;
}

.mission-box ul li::marker,
.vision-box ul li::marker {
    color: #0066cc;
    font-weight: 700;
}

/* Features Grid on About Page */
.features-grid {
    margin: 50px 0;
}

.features-grid h4 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.features-grid p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .mission-box,
    .vision-box {
        padding: 30px 25px;
    }
    
    .mission-box h3,
    .vision-box h3 {
        font-size: 1.6rem;
    }
    
    .mission-box p,
    .vision-box p {
        font-size: 1rem;
    }
    
    .mission-box p strong,
    .vision-box p strong {
        font-size: 1.05rem;
    }
}

/* ===============================================
   SINGLE PROJECT - PROFESSIONAL REDESIGN
   =============================================== */

/* Lightbox */
.okanta-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.okanta-lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
    position: relative;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption {
    color: #ccc;
    margin-top: 12px;
    font-size: 0.95rem;
}
.lightbox-counter {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-top: 6px;
}
.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 8px;
    transition: opacity 0.2s;
    z-index: 10;
}
.lightbox-close:hover { opacity: 0.7; }
.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    padding: 0;
    line-height: 1;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}

/* Hero Banner */
.project-hero-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}
.project-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.project-hero-inner {
    padding: 48px 0;
}
.project-hero-tag {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.project-hero-title {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.project-category-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.project-category-badge-hero:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* No image hero */
.project-hero-no-image {
    background: linear-gradient(135deg, #0055aa 0%, #003380 100%);
    padding: 60px 0;
}
.project-hero-no-image .entry-title { color: #fff; margin: 10px 0; }

/* Body Layout */
.project-body-container {
    padding-top: 48px;
    padding-bottom: 60px;
}
.project-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Info Cards */
.project-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
    padding: 24px;
    background: #f8f9fb;
    border-radius: 12px;
    border: 1px solid #eee;
}
.project-info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.info-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #e8f0fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
}
.info-card-content {
    display: flex;
    flex-direction: column;
}
.info-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 3px;
}
.info-card-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
}
.info-card-link {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s;
}
.info-card-link:hover { color: #004499; text-decoration: underline; }
.status-completed { color: #1a7a3a; }

/* Description */
.project-description {
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Gallery */
.project-gallery-section {
    margin-bottom: 10px;
}
.gallery-section-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.title-accent {
    display: inline-block;
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #0066cc, #004499);
    border-radius: 2px;
    flex-shrink: 0;
}
.gallery-section-subtitle {
    color: #888;
    font-size: 0.92rem;
    margin-bottom: 20px;
}
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gallery-thumb-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #f0f0f0;
}
.gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-thumb-wrap:hover .gallery-thumb-img {
    transform: scale(1.07);
}
.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,102,204,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-thumb-wrap:hover .gallery-thumb-overlay {
    opacity: 1;
}

/* Sidebar */
.project-sidebar-new {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-cta-widget {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    padding: 28px 24px;
    border-radius: 14px;
    text-align: center;
}
.cta-icon {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
}
.sidebar-cta-widget h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.sidebar-cta-widget p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 18px;
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.btn-whatsapp:hover {
    background: #1ebe5b;
    border-color: #1ebe5b;
    color: #fff;
}

/* Category Widget */
.sidebar-category-widget {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 22px 20px;
}
.widget-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eef5ff;
    border: 1.5px solid #c3d9f7;
    color: #0066cc;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.93rem;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
}
.service-category-pill:hover {
    background: #0066cc;
    color: #fff;
    border-color: #0066cc;
    transform: translateX(3px);
}
.category-widget-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Contact Widget */
.sidebar-contact-widget {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 22px 20px;
}
.sidebar-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
    color: #555;
}
.sidebar-contact-list li:last-child { border-bottom: none; }
.sidebar-contact-list svg { color: #0066cc; flex-shrink: 0; margin-top: 1px; }
.sidebar-contact-list a { color: #0066cc; text-decoration: none; }
.sidebar-contact-list a:hover { text-decoration: underline; }

/* Related Projects Section */
.related-projects-section {
    background: #f4f7fc;
    padding: 70px 0 80px;
    margin-top: 0;
}
.related-projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}
.section-eyebrow {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 6px;
}
.related-projects-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.related-projects-title .highlight { color: #0066cc; }
.related-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0066cc;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.related-service-link:hover {
    background: #004499;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,102,204,0.25);
}

/* Related Project Cards Grid */
.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.related-project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}
.related-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.13);
}
.related-card-image-link {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.related-card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.related-project-card:hover .related-card-image-link img {
    transform: scale(1.08);
}
.related-card-no-image {
    width: 100%;
    height: 100%;
    background: #f0f3f8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.related-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,102,204,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.related-project-card:hover .related-card-overlay { opacity: 1; }
.related-card-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 8px 18px;
    border-radius: 20px;
}
.related-card-content { padding: 18px 20px; }
.related-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #0066cc;
    background: #eef5ff;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.2s;
}
.related-card-category:hover { background: #0066cc; color: #fff; }
.related-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.4;
}
.related-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}
.related-card-title a:hover { color: #0066cc; }
.related-card-meta {
    font-size: 0.82rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.meta-sep { color: #ccc; }

.related-projects-footer {
    text-align: center;
    margin-top: 40px;
}
.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-outline-primary:hover {
    background: #0066cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,102,204,0.2);
}

/* Responsive */
@media (max-width: 1100px) {
    .project-layout { grid-template-columns: 1fr 290px; gap: 30px; }
}
@media (max-width: 900px) {
    .project-layout { grid-template-columns: 1fr; }
    .project-sidebar-new { position: static; }
    .project-hero-banner { height: 340px; }
    .project-hero-title { font-size: 2rem; }
    .related-projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .project-hero-banner { height: 260px; }
    .project-hero-title { font-size: 1.5rem; }
    .related-projects-grid { grid-template-columns: 1fr; }
    .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .project-info-cards { grid-template-columns: 1fr 1fr; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .related-projects-header { flex-direction: column; align-items: flex-start; }
}

/* ================================================================
   ABOUT US PAGE STYLES
   ================================================================ */
.about-page-content { overflow: hidden; }
.section-eyebrow { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:#0066cc; font-weight:700; display:block; margin-bottom:10px; }
.about-mission-section { padding:80px 0; background:#fff; }
.about-intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-intro-text h2 { font-size:2.2rem; font-weight:700; margin:0 0 20px; line-height:1.3; }
.lead-text { font-size:1.1rem; color:#333; line-height:1.7; margin-bottom:16px; }
.about-cta-group { display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.about-stats-panel { background:linear-gradient(135deg,#003580,#0066cc); border-radius:16px; padding:40px; display:grid; grid-template-columns:1fr 1fr; gap:30px; }
.about-stat-item { text-align:center; }
.stat-big { display:block; font-size:2.5rem; font-weight:800; color:#fff; line-height:1; }
.stat-label { display:block; font-size:12px; color:rgba(255,255,255,.75); margin-top:6px; }
.about-mvv-section { padding:80px 0; background:#f8f9fa; }
.mvv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.mvv-card { background:#fff; border-radius:12px; padding:36px 28px; box-shadow:0 2px 16px rgba(0,0,0,.06); text-align:center; }
.mvv-icon { width:72px; height:72px; border-radius:50%; background:#e8f0fe; color:#0066cc; display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
.mvv-card h3 { font-size:1.2rem; font-weight:700; margin:0 0 14px; }
.about-why-section { padding:80px 0; background:#fff; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.why-item { background:#f8f9fa; border-radius:10px; padding:28px 24px; border-left:4px solid #0066cc; }
.why-number { font-size:2.5rem; font-weight:800; color:rgba(0,102,204,.12); line-height:1; margin-bottom:10px; }
.why-item h4 { font-size:1rem; font-weight:700; margin:0 0 10px; color:#222; }
.about-capabilities-section { padding:80px 0; background:#f8f9fa; }
.capabilities-list { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px; }
.capability-item { display:flex; align-items:center; gap:10px; padding:14px 18px; background:#fff; border-radius:8px; font-size:14px; font-weight:500; }
.cap-check { color:#0066cc; font-weight:700; font-size:16px; flex-shrink:0; }
.about-cta-section { padding:80px 0; background:linear-gradient(135deg,#002a6e,#0066cc); color:#fff; text-align:center; }
.about-cta-section h2 { font-size:2rem; margin:0 0 16px; }
.about-cta-section p { opacity:.88; margin:0 0 32px; font-size:1.05rem; }
.about-cta-inner .cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.text-center { text-align:center; }
@media(max-width:992px){
  .about-intro-grid,.mvv-grid,.why-grid,.capabilities-list { grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .about-intro-grid,.mvv-grid,.why-grid,.capabilities-list { grid-template-columns:1fr; }
  .about-stats-panel { grid-template-columns:1fr 1fr; }
}
