
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: #ffffff;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.spinner-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
}

.cn-loader-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
}

.cn-loader-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0077B6, #00B4D8);
    animation: cn-dot-bounce 1.2s infinite ease-in-out both;
}

.cn-loader-dots span:nth-child(1) { animation-delay: 0s; }
.cn-loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.cn-loader-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes cn-dot-bounce {
    0%, 70%, 100% { transform: translateY(0) scale(0.85); opacity: 0.45; }
    35% { transform: translateY(-10px) scale(1); opacity: 1; }
}

/* Image skeleton — hides progressive half-load */
.cn-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #e8f4fc 0%, #f8fafc 40%, #e8f4fc 80%);
    background-size: 200% 100%;
    animation: cn-img-shimmer 1.4s linear infinite;
}

.cn-img-wrap.cn-img-loaded {
    animation: none;
    background: transparent;
}

.cn-img-wrap > img {
    opacity: 0;
    transition: opacity 0.45s ease;
    display: block;
    width: 100%;
}

.cn-img-wrap > img.cn-loaded {
    opacity: 1;
}

/* Team photos must fill card — never shrink inside skeleton wrap */
.team-img-pro .cn-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #e8eef3;
}

.team-img-pro .cn-img-wrap > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.team-img-pro .cn-img-wrap.cn-img-loaded {
    background: transparent;
}

@keyframes cn-img-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.codenorix-logo {
    background: transparent !important;
    object-fit: contain;
}

/*** Spinner End ***/

.back-to-top {
    display: none;
    position: fixed !important;
    right: 28px !important;
    bottom: 28px !important;
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    z-index: 99999;
    width: 52px;
    height: 52px;
    border: none;
    background: var(--cn-gradient) !important;
    box-shadow: 0 8px 28px rgba(0, 119, 182, 0.4);
    animation: none;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav a.nav-item.nav-link.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-secondary);
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 45%, #4F46E5 100%) !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    padding: 70px 0 70px 0;
    transition: 0.5s;
}

.bg-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: breadcrumb-drift 25s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.bg-breadcrumb::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -120px;
    z-index: 0;
    pointer-events: none;
}

@keyframes breadcrumb-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.bg-breadcrumb .container {
    position: relative;
    z-index: 3;
}

.bg-breadcrumb .page-hero-title {
    position: relative;
    z-index: 3;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem !important;
}

.bg-breadcrumb h4 {
    animation: breadcrumb-title-in 0.8s ease-out;
}

.bg-breadcrumb .breadcrumb {
    animation: breadcrumb-title-in 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 10px 24px !important;
    display: inline-flex !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

@keyframes breadcrumb-title-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.bg-breadcrumb .breadcrumb-item.active,
.bg-breadcrumb .breadcrumb-item.active.text-primary {
    color: #fff !important;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.25);
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
}
/*** Single Page Hero Header End ***/


/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon {
    color: var(--bs-primary);
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--bs-white);
}
.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(1, 95, 201, .8);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** FAQs End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-section {
    background: linear-gradient(180deg, #f0f7fc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-badge {
    display: inline-block;
    background: rgba(0, 119, 182, 0.1);
    color: var(--cn-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.testimonial-stats {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.testimonial-stat-item {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    border: 1px solid rgba(0, 119, 182, 0.08);
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.05);
    transition: all 0.35s ease;
    height: 100%;
}

.testimonial-stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 119, 182, 0.12);
}

.testimonial-stat-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cn-primary);
    line-height: 1;
}

.testimonial-stat-item h3 span {
    font-size: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

.testimonial-stat-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 500;
}

.testimonial-carousel-wrap {
    position: relative;
    padding: 0 10px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(0, 119, 182, 0.08);
    box-shadow: 0 8px 30px rgba(11, 29, 58, 0.06);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cn-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 180, 216, 0.25);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--cn-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-stars .far {
    color: #cbd5e1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #475569;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 119, 182, 0.08);
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 4px 12px rgba(0, 119, 182, 0.15);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--cn-dark);
    font-size: 1rem;
}

.testimonial-role {
    display: block;
    font-size: 0.82rem;
    color: var(--cn-primary);
    font-weight: 500;
    margin-top: 2px;
}

.testimonial-project-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--cn-primary);
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
}

.testimonial-carousel .owl-stage-outer {
    padding: 12px 0 20px;
}

.testimonial-carousel .owl-item {
    display: flex;
}

.testimonial-carousel .owl-item > div {
    width: 100%;
}

.testimonial-carousel-wrap .owl-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
}

.testimonial-carousel-wrap .owl-nav button.owl-prev,
.testimonial-carousel-wrap .owl-nav button.owl-next {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: var(--cn-gradient) !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0 !important;
    margin: 0;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.testimonial-carousel-wrap .owl-nav button.owl-prev:hover,
.testimonial-carousel-wrap .owl-nav button.owl-next:hover {
    transform: scale(1.08);
    background: var(--cn-dark) !important;
    box-shadow: 0 8px 25px rgba(11, 29, 58, 0.25);
}

.testimonial-carousel-wrap .owl-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
}

.testimonial-carousel-wrap .owl-dot span {
    width: 10px;
    height: 10px;
    background: #cbd5e1 !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.testimonial-carousel-wrap .owl-dot.active span {
    width: 28px;
    background: var(--cn-primary) !important;
}

.testimonial-item {
    transition: all 0.4s ease;
}

.testimonial-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
/*** Testimonial End ***/


/*** Contact Start ***/
.contact .contact-img {
    position: relative;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s
}

@keyframes image-efects {
    0%  {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}

    25% {border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;}

    50% {border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;}

    75% {border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;}

    100% {border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;}
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

/*** Codenorix Brand & Enhanced UI ***/
:root {
    --cn-primary: #0077B6;
    --cn-secondary: #00B4D8;
    --cn-accent: #4F46E5;
    --cn-dark: #0B1D3A;
    --cn-gradient: linear-gradient(135deg, #0077B6 0%, #00B4D8 50%, #4F46E5 100%);
}

body {
    font-family: 'DM Sans', 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-4 {
    font-family: 'Space Grotesk', 'DM Sans', sans-serif;
}

.header-carousel .header-carousel-item.bg-primary {
    background: var(--cn-gradient) !important;
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item.bg-primary::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -100px;
    animation: float-bubble 8s ease-in-out infinite;
}

.header-carousel .header-carousel-item.bg-primary::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    bottom: -150px;
    left: -80px;
    animation: float-bubble 10s ease-in-out infinite reverse;
}

@keyframes float-bubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-title {
    animation: hero-slide-up 1s ease-out;
}

@keyframes hero-slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.codenorix-logo {
    transition: transform 0.4s ease;
    background: transparent !important;
}

.codenorix-logo:hover {
    transform: scale(1.05);
}

.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.15);
}

.feature-icon {
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--cn-gradient) !important;
    color: #fff !important;
}

.service-card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 119, 182, 0.08);
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.06);
}

.service-grid > [class*="col-"] {
    display: flex;
}

.service-img-uniform {
    height: 220px !important;
    min-height: 220px;
    max-height: 220px;
    background: #f0f7fc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img-fixed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.service-card-hover .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-hover .service-content-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.service-card-hover .service-desc {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 72px;
}

.service-card-hover .service-title {
    min-height: 52px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.service-card-hover .service-content-inner .btn {
    align-self: flex-start;
    margin-top: auto;
}

.service-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.service-card-hover:hover .service-img-fixed {
    transform: scale(1.06);
}

.service-card-hover .service-icon {
    transition: all 0.4s ease;
}

.service-card-hover:hover .service-icon {
    background: var(--cn-gradient) !important;
    color: #fff !important;
    transform: rotate(360deg);
}

.counter-item {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.counter-item:hover {
    transform: translateY(-5px);
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.1);
}

.team-item {
    transition: all 0.4s ease;
}

.team-item:hover {
    transform: translateY(-8px);
}

.nav-bar.sticky-top {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95) !important;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.tech-stack-section {
    background: var(--cn-dark);
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 8px;
}

.tech-badge:hover {
    background: var(--cn-gradient);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.tech-badge i {
    font-size: 1.2rem;
}

.calrousel-img img {
    animation: float-img 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes float-img {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
}

.footer {
    background: var(--cn-dark) !important;
}

.btn.btn-primary {
    background: var(--cn-gradient) !important;
    border: none !important;
}

.btn.btn-primary:hover {
    background: var(--cn-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
}

.text-primary {
    color: var(--cn-primary) !important;
}

.bg-primary {
    background: var(--cn-gradient) !important;
}

@keyframes pulse-btn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(79, 70, 229, 0); }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
}

.navbar .navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--cn-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .navbar-nav .nav-item:hover .nav-link::after,
.navbar .navbar-nav .nav-item.active .nav-link::after,
.navbar .navbar-nav a.nav-item.nav-link.active::after {
    width: 80%;
}

.navbar .navbar-nav .dropdown-item.active {
    background: rgba(0, 119, 182, 0.1);
    color: var(--cn-primary);
    font-weight: 600;
}

/* Carousel Slides */
.carousel-slide-1 {
    background: linear-gradient(135deg, #0B1D3A 0%, #1B4F8A 50%, #00B4D8 100%) !important;
}

.carousel-slide-2 {
    background: linear-gradient(135deg, #1E1B4B 0%, #4F46E5 50%, #06B6D4 100%) !important;
}

.carousel-slide-3 {
    background: linear-gradient(135deg, #0F172A 0%, #312E81 50%, #0891B2 100%) !important;
}

.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow:
        100px 200px 0 rgba(255,255,255,0.3),
        300px 100px 0 rgba(255,255,255,0.2),
        500px 300px 0 rgba(255,255,255,0.4),
        700px 150px 0 rgba(255,255,255,0.2),
        200px 400px 0 rgba(255,255,255,0.3),
        600px 450px 0 rgba(255,255,255,0.2),
        900px 250px 0 rgba(255,255,255,0.3),
        50px 500px 0 rgba(255,255,255,0.2),
        400px 50px 0 rgba(255,255,255,0.4),
        800px 400px 0 rgba(255,255,255,0.2);
    animation: particles-float 15s ease-in-out infinite;
}

.hero-particles .particle-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: particle-rise linear infinite;
    pointer-events: none;
}

@keyframes particle-rise {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

@keyframes particles-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    50% { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    color: #fff !important;
    transition: all 0.4s ease;
}

.btn-outline-light:hover {
    background: #fff !important;
    color: var(--cn-primary) !important;
    transform: translateY(-3px);
}

.hero-img-wrap {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.header-carousel .carousel-caption {
    z-index: 2;
}

/* Team Pro Cards */
.team-card-pro {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 119, 182, 0.08);
    box-shadow: 0 8px 30px rgba(11, 29, 58, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-pro:hover {
    transform: translateY(-14px);
    box-shadow: 0 28px 55px rgba(0, 119, 182, 0.22);
    border-color: rgba(0, 180, 216, 0.25);
}

.team-img-pro {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #e8eef3;
}

.team-img-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgba(11, 29, 58, 0.25) 100%
    );
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.team-card-pro:hover .team-img-pro::before {
    opacity: 1;
}

.team-img-pro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cn-gradient);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.team-card-pro:hover .team-img-pro::after {
    transform: scaleX(1);
}

.team-photo-pro {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(1) contrast(1.02) saturate(0.98);
}

.team-card-pro:hover .team-photo-pro {
    transform: scale(1.06);
    filter: brightness(1.03) contrast(1.05) saturate(1.05);
}

.team-img-pro .team-photo-pro[data-focus="top"] {
    object-position: center 20%;
}

.team-photo-sheraz,
.team-photo-aneeq,
.team-photo-usaid,
.team-photo-anas {
    object-position: center center !important;
}

.team-card-pro .team-img img:not(.team-photo-pro) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.team-card-pro:hover .team-img img:not(.team-photo-pro) {
    transform: scale(1.08);
}

.team-card-pro .team-icon {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    opacity: 0;
    z-index: 4;
    display: flex;
    gap: 6px;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-pro:hover .team-icon {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-card-pro .team-icon .btn {
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--cn-primary) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.team-card-pro .team-icon .btn:hover {
    background: var(--cn-gradient) !important;
    color: #fff !important;
    transform: translateY(-3px);
}

.team-card-pro .team-title {
    background: #fff !important;
    border-top: none;
    text-align: center;
    padding: 1.25rem 1rem 1.5rem !important;
    position: relative;
}

.team .team-item.team-card-pro .team-title {
    background: #fff !important;
    color: var(--cn-dark);
}

.team-card-pro .team-title h4,
.team .team-item.team-card-pro .team-title h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--cn-dark) !important;
    font-size: 1.05rem;
    margin-bottom: 0.35rem !important;
}

.team-card-pro .team-title p,
.team .team-item.team-card-pro .team-title p {
    color: var(--cn-primary) !important;
    letter-spacing: 0.3px;
    opacity: 1;
    margin-top: 0.15rem;
}

.team .team-item.team-card-pro:hover .team-title {
    background: #fff !important;
}

.team .team-item.team-card-pro:hover .team-img::after {
    height: 0;
    background: transparent;
}

.team .team-item.team-card-pro .team-img .team-icon {
    right: auto;
    left: 50%;
    margin-bottom: 0;
}

/* Core team highlight ring */
.team-card-pro.team-core .team-img-pro {
    box-shadow: inset 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.team-card-pro.team-core::before {
    content: 'Core Team';
    background: var(--cn-gradient);
}

.team-card-pro.team-dept-qa::before {
    content: 'QA Team';
    background: linear-gradient(135deg, #059669, #10B981);
}

.team-card-pro.team-dept-sales::before {
    content: 'Sales';
    background: linear-gradient(135deg, #D97706, #F59E0B);
}

.team-card-pro.team-core::before,
.team-card-pro.team-dept-qa::before,
.team-card-pro.team-dept-sales::before {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.4s ease;
}

.team-card-pro.team-core:hover::before,
.team-card-pro.team-dept-qa:hover::before,
.team-card-pro.team-dept-sales:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.team .team-item.team-card-pro {
    position: relative;
}

/* Page Section Animations */
.page-section {
    position: relative;
}

.section-divider {
    height: 4px;
    width: 60px;
    background: var(--cn-gradient);
    border-radius: 2px;
    margin: 0 auto 1rem;
}

/* Tilt hover on cards */
.tilt-hover {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
}

/* Footer wave */
.footer::before {
    content: '';
    display: block;
    height: 4px;
    background: var(--cn-gradient);
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(0, 119, 182, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-brand img {
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    max-height: 58px;
    width: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    max-width: 360px;
}

.footer-heading {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: var(--cn-gradient);
}

.footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    line-height: 2.2;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: var(--cn-secondary);
    transform: translateX(4px);
}

.footer-link i {
    color: var(--cn-secondary);
    width: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.15);
    color: var(--cn-secondary);
    border: 1px solid rgba(0, 180, 216, 0.25);
}

.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--cn-secondary);
}

.footer-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.footer-cta-box h5 {
    color: #fff;
    font-weight: 700;
}

.footer-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.footer-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.25rem;
}

.footer-tech-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(0, 180, 216, 0.12);
    color: var(--cn-secondary);
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.copyright {
    background: #0a1628 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text,
.copyright-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
}

.copyright-text a,
.copyright-link:hover {
    color: var(--cn-secondary);
}

/* Animated section headings */
.text-center h4.text-primary {
    position: relative;
    display: inline-block;
}

.text-center h4.text-primary::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--cn-gradient);
    border-radius: 2px;
}

/* Owl carousel dots enhancement */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.header-carousel .owl-dot span {
    background: rgba(255,255,255,0.4) !important;
    width: 12px !important;
    height: 12px !important;
    transition: all 0.3s ease;
}

.header-carousel .owl-dot.active span {
    background: #fff !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* Page load fade */
body.page-loaded .container-fluid:not(.topbar):not(#spinner) {
    animation: page-fade-in 0.6s ease-out;
}

@keyframes page-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Contact cards pulse */
.contact-add-item {
    transition: all 0.4s ease;
    border-radius: 12px;
    padding: 10px;
}

.contact-add-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.12);
    background: #fff;
}

/* Project cards if any */
.project-item {
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 16px;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.project-item img {
    transition: transform 0.6s ease;
}

.project-item:hover img {
    transform: scale(1.08);
}

/* Projects Portfolio Section */
.projects-section {
    background: #f8fafc !important;
}

.project-filter-btn {
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.project-filter-btn.active {
    background: var(--cn-gradient) !important;
    border-color: transparent !important;
    color: #fff !important;
}

.project-grid > [class*="col-"] {
    display: flex;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 182, 0.08);
    box-shadow: 0 4px 20px rgba(11, 29, 58, 0.06);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 180, 216, 0.2);
}

.project-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e8f4fc;
    flex-shrink: 0;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card-img img {
    transform: scale(1.08);
}

.project-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--cn-gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 119, 182, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cn-dark);
    margin-bottom: 0.75rem;
    min-height: 52px;
    line-height: 1.35;
}

.project-card-desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
    min-height: 70px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.project-tech span {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--cn-primary);
    border-radius: 20px;
}

.project-card-wrap.hidden {
    display: none !important;
}

/* === Global Professional Animations & Polish === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--cn-gradient);
    z-index: 99999;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(0, 180, 216, 0.6);
}

.cn-site {
    scroll-behavior: smooth;
}

.cn-section-badge {
    display: inline-block;
    background: rgba(0, 119, 182, 0.1);
    color: var(--cn-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.display-4, .display-5 {
    font-family: 'Space Grotesk', sans-serif;
}

h4.text-primary {
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.35);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.06) !important;
    box-shadow: 0 14px 36px rgba(0, 119, 182, 0.5);
}

.back-to-top i {
    font-size: 1.1rem;
}

@media (max-width: 575.98px) {
    .back-to-top {
        right: 18px !important;
        bottom: 18px !important;
        width: 46px;
        height: 46px;
    }
}

.nav-bar.sticky-top {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.footer .btn-md-square {
    transition: all 0.35s ease;
}

.footer .btn-md-square:hover {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
}

.cn-stagger > [class*="col-"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cn-stagger.cn-visible > [class*="col-"]:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.cn-stagger.cn-visible > [class*="col-"]:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.cn-stagger.cn-visible > [class*="col-"]:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
.cn-stagger.cn-visible > [class*="col-"]:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
.cn-stagger.cn-visible > [class*="col-"]:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
.cn-stagger.cn-visible > [class*="col-"]:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: none; }
.cn-stagger.cn-visible > [class*="col-"]:nth-child(n+7) { transition-delay: 0.47s; opacity: 1; transform: none; }

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
}

.bg-breadcrumb::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%);
    animation: breadcrumb-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breadcrumb-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(2%, 2%); }
}

@media (prefers-reduced-motion: reduce) {
    .cn-stagger > [class*="col-"],
    .scroll-progress,
    .spinner-logo,
    .bg-breadcrumb::after {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Project Detail Pages */
.project-detail-section {
    background: #f8fafc;
}

.project-detail-hero-img {
    background: #e8f4fc;
    min-height: 280px;
}

.project-detail-hero-img img {
    object-fit: cover;
    min-height: 280px;
}

.project-detail-tag {
    display: inline-block;
    background: var(--cn-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.project-detail-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--cn-dark);
}

.project-meta-box {
    background: #fff;
    border: 1px solid rgba(0, 119, 182, 0.1);
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
}

.project-meta-box small {
    display: block;
    color: #94a3b8;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.project-meta-box strong {
    color: var(--cn-dark);
    font-size: 0.95rem;
}

.project-feature-list li {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.08);
    color: #475569;
    font-size: 0.95rem;
}

.project-feature-list li:last-child {
    border-bottom: none;
}

.project-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 119, 182, 0.08);
    box-shadow: 0 8px 30px rgba(11, 29, 58, 0.06);
    height: 100%;
}

.project-review-stars {
    color: #f59e0b;
    font-size: 1rem;
}

.project-review-text {
    font-style: italic;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.project-review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 119, 182, 0.08);
}

.project-review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cn-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.project-review-author h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
}

.project-review-author span {
    font-size: 0.85rem;
    color: var(--cn-primary);
}

a.project-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

a.project-card-link:hover .project-card-title {
    color: var(--cn-primary);
}

a.project-card-link .project-overlay .btn {
    pointer-events: none;
}

/*** Codenorix End ***/


