/*===========================
     08.COUNTER css
===========================*/
/* Counter section styles */
.counter_area {
    background: #f9f9ff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter_area .section-title {
    margin-bottom: 50px;
}

.counter_area .section-title .title {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
    position: relative;
}

.counter_area .section-title .title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.counter_area .section-title .section-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.counter_area::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 119, 182, 0.03), rgba(0, 119, 182, 0.02));
    transform: rotate(-45deg);
    z-index: 1;
}

.counter_area::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 119, 182, 0.02), rgba(0, 119, 182, 0.03));
    transform: rotate(-45deg);
    z-index: 1;
}

.single_counter {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
  }

.single_counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.counter_icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 119, 182, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.single_counter:hover .counter_icon {
    background: #0077B6;
}

.counter_icon i,
.counter_icon img {
  font-size: 35px;
    color: #0077B6;
    transition: all 0.3s ease;
}

.single_counter:hover .counter_icon i,
.single_counter:hover .counter_icon img {
    color: white;
    filter: brightness(0) invert(1);
}

.counter_content {
    text-align: center;
}

.counter_content .count {
    font-size: 42px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
    display: block;
    font-family: 'Open Sans', sans-serif;
}

.counter_content p {
    font-size: 16px;
    color: #0077B6;
    margin: 0;
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 991px) {
    .single_counter {
        padding: 30px 20px;
    }

    .counter_icon {
        width: 70px;
        height: 70px;
    }

    .counter_icon i,
    .counter_icon img {
        font-size: 30px;
    }

    .counter_content .count {
        font-size: 36px;
    }

    .counter_content p {
        font-size: 15px;
}
}

@media (max-width: 767px) {
    .counter_area {
        padding: 60px 0;
    }

    .single_counter {
        padding: 25px 15px;
    }

    .counter_icon {
        width: 60px;
        height: 60px;
    }

    .counter_icon i,
    .counter_icon img {
        font-size: 25px;
  }

    .counter_content .count {
        font-size: 32px;
    }

    .counter_content p {
        font-size: 14px;
    }
}

.contact-area {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
}

.contact-info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0077B6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.contact-info-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2e2e2e;
}

.contact-info-content p {
    margin: 0;
    color: #6c757d;
}

.contact-form-wrapper {
    padding: 0 30px 0;
    background: #fff;
    border-radius: 15px;
}

.form-title {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 25px;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 55px;
    padding: 0 25px;
    border: 2px solid #f1f1f1;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #0077B6;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    padding: 20px 25px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gmap_canvas {
    width: 100%;
    height: 450px;
}

.gmap_canvas iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-info {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .contact-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-info-item {
        padding: 15px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon i {
        font-size: 16px;
    }

    .form-control {
        height: 50px;
    }
}

/* Project Section Styles */
.project-section {
    padding: 80px 0;
    background: #fff;
}

.project-header {
    margin-bottom: 40px;
}

.project-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.project-heading {
    font-size: 48px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.project-subheading {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.project-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #0077B6;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-see-all:hover {
    background: #0077B6;
    transform: translateY(-2px);
}

.project-see-all i {
    transition: transform 0.3s ease;
}

.project-see-all:hover i {
    transform: translateX(5px);
}

.project-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.project-filter {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.project-filter.active,
.project-filter:hover {
    background: #0077B6;
    color: #fff;
}

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

.project-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.project-item.project-hidden {
    display: none;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.1);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: all 0.3s ease;
}

.project-content {
    padding: 25px;
}

.project-tag {
    font-size: 20px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
}

.project-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #0077B6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.project-link:hover {
    color: #0077B6;
}

.project-link:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .project-heading {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .project-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-heading {
        font-size: 32px;
    }

    .project-subheading {
        font-size: 16px;
    }

    .project-filters {
        flex-wrap: wrap;
    }

    .project-filter {
        font-size: 14px;
        padding: 8px 20px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px;
    }

    .project-tag {
        font-size: 18px;
    }

    .project-description {
        font-size: 14px;
    }
}

/*# sourceMappingURL=counter.css.map */
