﻿
/* Public Styles */
.justify-text {
    text-align: justify;
}


/*Home Styles*/

.address {
    display: block;
    transition: 0.5s;
    text-decoration: none;
    color: #ffffff;
}

    .address:hover, .address:focus {
        text-decoration: none;
        color: #4ac728;
    }


.partners-area .single-clients {
    height: 115px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

    .partners-area .single-clients img {
        max-width: 100% !important;
        max-height: 105px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        transition: all 0.3s ease !important;
    }

.feature-img {
    width: 450px;
    height: 450px;
}

.feature-img-fit {
    object-fit: cover;
}

/*About Us Styles*/

    /*Counter Styles*/
.achievements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: #2a81ea;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

    .section-subtitle:after {
        content: '';
        position: absolute;
        width: 40px;
        height: 2px;
        background: #2a81ea;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
    }

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2a3b47;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 300px;
}

.divider-line {
    height: 1px;
    background: #ddd;
    flex: 1;
}

.divider-icon {
    margin: 0 15px;
    color: #2a81ea;
    font-size: 20px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    z-index: 1;
}

    .achievement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .achievement-card.highlighted {
        background: linear-gradient(135deg, #2a81ea 0%, #1cb5e0 100%);
        color: white;
    }

        .achievement-card.highlighted .achievement-title,
        .achievement-card.highlighted .achievement-desc,
        .achievement-card.highlighted .counter {
            color: white;
        }

.achievement-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.icon-wrapper {
    width: 100%;
    height: 100%;
    background: rgba(42, 129, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #2a81ea;
    position: relative;
    z-index: 2;
}

.achievement-card.highlighted .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.animated-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(42, 129, 234, 0.3);
    animation: rotate 20s linear infinite;
}

.achievement-card.highlighted .animated-circle {
    border-color: rgba(255, 255, 255, 0.3);
}

.counter {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.achievement-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2a3b47;
}

.achievement-desc {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 0;
}

.achievement-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #2a81ea 0%, rgba(42, 129, 234, 0) 100%);
    opacity: 0.1;
    z-index: -1;
}

.achievement-card.highlighted .achievement-wave {
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/*Contact Us*/

.contact-method-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(42, 129, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2a81ea;
    font-size: 30px;
}

.contact-method-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-method-card p {
    color: #6c757d;
    margin-bottom: 20px;
}

.location-link {
    display: inline-flex;
    align-items: center;
    color: #2a81ea;
    font-weight: 500;
    margin-top: 10px;
}

    .location-link i {
        margin-left: 5px;
    }

.contact-numbers a {
    display: block;
    color: #6c757d;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .contact-numbers a:hover {
        color: #2a81ea;
        text-decoration: none;
    }

    .contact-numbers a i {
        margin-left: 8px;
        font-size: 18px;
    }

.working-hours {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    color: #6c757d;
    display: flex;
    align-items: center;
}

    .working-hours i {
        margin-left: 5px;
        font-size: 18px;
    }

    .working-hours-icon {
        margin-right: 10px;
    }

.contact-emails a {
    display: block;
    color: #6c757d;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .contact-emails a:hover {
        color: #2a81ea;
        text-decoration: none;
    }

    .contact-emails a i {
        margin-left: 8px;
        font-size: 18px;
    }

.social-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6c757d;
        font-size: 18px;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: #2a81ea;
            color: #fff;
            transform: translateY(-3px);
        }

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.visit-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

    .visit-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #2a3b47;
    }

    .visit-card p {
        color: #6c757d;
        margin-bottom: 20px;
    }

.visit-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.visit-feature {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
}

    .visit-feature i {
        margin-left: 5px;
        color: #2a81ea;
    }

.contact-experts-section {
    background-color: #f9f9f9;
}

.expert-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

    .expert-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.expert-content {
    padding-right: 30px;
}

    .expert-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #2a3b47;
    }

    .expert-content p {
        color: #6c757d;
        margin-bottom: 25px;
    }

.expertise-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .expertise-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
    }

        .expertise-list li i {
            margin-left: 10px;
            color: #2a81ea;
            font-size: 20px;
            margin-top: 3px;
        }

.expert-contact-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.expert-call, .expert-chat {
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.expert-call {
    background: #2a81ea;
    color: #fff;
}

    .expert-call:hover {
        background: #1a6fd8;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(42, 129, 234, 0.3);
    }

.expert-chat {
    background: #fff;
    color: #2a3b47;
    border: 1px solid #eee;
}

    .expert-chat:hover {
        background: #f5f5f5;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .expert-call i, .expert-chat i {
        margin-left: 8px;
        font-size: 18px;
    }

@media (max-width: 991px) {
    .expert-content {
        padding-right: 0;
        margin-top: 30px;
    }

    .visit-card {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: 20px;
    }
}


/* OurWork Styles */

.portfolio-hero {
    height: 100vh;
    background: linear-gradient(135deg, #2f3672, #4a60c1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

    .hero-scroll:hover {
        transform: translateY(5px);
    }

    .hero-scroll i {
        margin-top: 10px;
        animation: bounce 2s infinite;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-7px);
    }
}

.live-demo-section {
    padding: 100px 0;
    background: #f9f9ff;
    scroll-margin-top: 80px;
}

.live-demo-item {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
}

    .live-demo-item.reverse {
        flex-direction: row-reverse;
    }

.demo-preview {
    flex: 1.5;
    position: relative;
    z-index: 1;
}

.browser-mockup {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: white;
}

.browser-bar {
    height: 50px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    padding: 0 15px;
    justify-content: space-between;
}

.browser-dots {
    display: flex;
}

    .browser-dots span {
        display: inline-block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin-left: 8px;
    }

        .browser-dots span:nth-child(1) {
            background: #ff5f56;
        }

        .browser-dots span:nth-child(2) {
            background: #ffbd2e;
        }

        .browser-dots span:nth-child(3) {
            background: #27c93f;
        }

.demo-controls {
    display: flex;
    gap: 10px;
}

.demo-btn {
    border: none;
    background: #e0e5ff;
    color: #2f3672;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .demo-btn.active {
        background: #2f3672;
        color: white;
    }

    .demo-btn:not(.active):hover {
        background: #c1ccff;
    }

.demo-content {
    position: relative;
    height: 500px;
    width: 1200px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.demo-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: all 0.3s ease;
}

.demo-description {
    flex: 1;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.demo-title {
    font-size: 2.2rem;
    color: #2f3672;
    margin-bottom: 20px;
    position: relative;
}

    .demo-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 50px;
        height: 3px;
        background: #4a60c1;
    }

.demo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.demo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    background: #e0e5ff;
    color: #2f3672;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

    .feature i {
        margin-left: 8px;
        font-size: 0.9rem;
    }

.more-projects {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2f3672;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.project-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .project-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.project-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 54, 114, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-hover {
    opacity: 1;
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.1);
}

.quick-view-btn {
    background: white;
    color: #2f3672;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .quick-view-btn i {
        margin-left: 8px;
    }

    .quick-view-btn:hover {
        background: #4a60c1;
        color: white;
    }

.project-name {
    padding: 20px;
    font-size: 1.2rem;
    color: #2f3672;
    text-align: center;
}

.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .demo-modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    position: relative;
    padding: 20px;
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff5f56;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-preview {
    height: 80vh;
}

    .modal-preview .browser-mockup {
        height: 100%;
    }

#modal-iframe {
    width: 100%;
    height: calc(100% - 50px);
}

@media (max-width: 992px) {
    .live-demo-item {
        flex-direction: column;
    }

        .live-demo-item.reverse {
            flex-direction: column;
        }

    .demo-preview,
    .demo-description {
        width: 100%;
        padding: 0;
    }

    .demo-description {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .demo-content {
        height: 350px;
    }

    .demo-controls {
        display: none;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .demo-title {
        font-size: 1.8rem;
    }

    .demo-content {
        height: 250px;
    }
}


/* Certificate Style */

.certificates-area {
    background: #f9f9f9;
}

.single-certificate {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .single-certificate:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.certificate-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .certificate-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }

.single-certificate:hover .certificate-image img {
    transform: scale(1.05);
}

.certificate-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-certificate:hover .certificate-hover {
    opacity: 1;
}

.certificate-view {
    color: #fff;
    font-size: 30px;
}

.certificate-content {
    padding: 20px;
}

    .certificate-content h3 {
        margin-bottom: 10px;
        font-size: 18px;
    }

.certificate-date {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}

.nav-pills .nav-link.active {
    background: #4e54c8;
}

.achievement-image {
    position: relative;
}

.achievement-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #4e54c8;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(78, 84, 200, 0.3);
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .feature-box i {
        font-size: 40px;
        color: #4e54c8;
        margin-bottom: 15px;
    }

