
/* D-CLICK brand palette (from provided image) */
:root {
    --bs-primary: #0b1a8f; /* deep royal/navy */
    --bs-primary-dark: #081066;
    --bs-primary-light: #2132c4;
    --bs-dark: #0a0f3f; /* page dark */
    --bs-dark-alt: #0c123f;
    --bs-light: #f4f6fa;
    --brand-grey: #808080; /* dashed accent grey */
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** 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;
    border-radius: 50%;
}

.btn.btn-primary {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 26, 143, 0.3);
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--bs-primary-dark) 0%, var(--bs-primary) 100%) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 26, 143, 0.4);
}

/* Outline Primary Button - matches website color scheme */
.btn.btn-outline-primary {
    color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    background-color: transparent !important;
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-outline-primary:hover {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 26, 143, 0.3);
}

/* Hero Service Items - ensure they use primary color */
.hero-service-item {
    border-left: 3px solid var(--bs-primary) !important;
    transition: all 0.3s ease;
}

.hero-service-item:hover {
    box-shadow: 0 4px 12px rgba(11, 26, 143, 0.15) !important;
    transform: translateX(5px);
}

.hero-service-icon i {
    color: var(--bs-primary) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: 2px solid var(--bs-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-dark:hover {
    background: transparent !important;
    color: var(--bs-dark) !important;
    border-color: var(--bs-dark);
    transform: translateY(-2px);
}

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-family: 'Roboto', sans-serif;
    border: 2px solid var(--bs-primary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
/*** Topbar Start ***/
.topbar {
    padding: 0;
    background: var(--bs-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1040;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--bs-primary-light) !important;
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
}

.topbar-social:hover {
    background: var(--bs-primary);
    color: #fff !important;
}

.topbar-login {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.topbar-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

@media (max-width: 991px) {
    .topbar {
        font-size: 12px;
    }
    .topbar-link {
        font-size: 11px;
        margin-right: 8px !important;
    }
}
/*** Topbar End ***/

/* Body padding for fixed topbar + navbar */
body {
    padding-top: 117px;
}


@media (max-width: 991px) {
    body {
        padding-top: 117px;
    }
}

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-primary) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    display: none;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link,
.fixed-top .navbar .navbar-nav .nav-link { color: var(--bs-primary) !important; }

/* Ensure visibility of nav links on white header */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu { display: none; }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu { display: none; }

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-primary);
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Navbar End ***/

/*** Static Hero Start ***/
.hero-ict-static {
    background: #f8f9fa;
    padding: 30px 0 50px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(11, 26, 143, 0.2) 20%, rgba(11, 26, 143, 0.2) 80%, transparent 100%);
    margin: 0;
}

.hero-ict-static::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e3f2fd" width="1200" height="600"/></svg>') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.hero-ict-static .container {
    position: relative;
    z-index: 1;
}

.hero-headline {
    position: relative;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: var(--bs-primary) !important;
    margin-bottom: 10px;
}

/* Ensure hero tagline uses primary color */
.hero-ict-static .text-primary {
    color: var(--bs-primary) !important;
}

.hero-ict-static h1 {
    line-height: 1.2;
}

.hero-services-list {
    margin-top: 30px;
}

.hero-services-list .fa-2x {
    font-size: 1.8rem;
    min-width: 50px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    z-index: 2;
}

.hero-badge .bg-primary {
    box-shadow: 0 4px 15px rgba(11, 26, 143, 0.3);
}

@media (max-width: 991px) {
    .hero-ict-static {
        padding: 60px 0;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .hero-image-wrapper img {
        height: 400px !important;
    }
}
/*** Static Hero End ***/

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -250px;
    right: -250px;
    border-radius: 50%;
    border: 80px solid rgba(37, 99, 235, 0.15);
    animation: PulseCircle 8s ease-in-out infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes PulseCircle {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.15;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.25;
    }
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 1000px;
    top: -100px;
    left: 80px;
    transform: rotate(-25deg);
    background: linear-gradient(180deg, rgba(11, 26, 143, 0.12) 0%, rgba(128, 128, 128, 0.10) 100%);
    animation: SlideRight 6s ease-in-out infinite;
    z-index: 2 !important;
}

@keyframes SlideRight {
    0%, 100% { 
        left: 80px;
        opacity: 0.12;
    }
    50% { 
        left: 120px;
        opacity: 0.2;
    }
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 1100px;
    top: -100px;
    left: -250px;
    transform: rotate(-25deg);
    background: linear-gradient(180deg, var(--bs-dark) 0%, rgba(26, 31, 58, 0.8) 100%);
    animation: SlideLeft 7s ease-in-out infinite;
    opacity: 0.6;
    z-index: 2 !important;
}

@keyframes SlideLeft {
    0%, 100% { 
        left: -250px;
        opacity: 0.6;
    }
    50% { 
        left: -280px;
        opacity: 0.7;
    }
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 40px !important;
    }

    .owl-prev {
        left: 65%;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    top: -120px;
    right: -120px;
    border-radius: 50%;
    border: 70px solid rgba(37, 99, 235, 0.15);
    animation: PulseCircle 8s ease-in-out infinite;
    background: transparent;
    z-index: 2 !important;
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 1000px;
    top: -100px;
    left: 0;
    margin-left: 140px;
    transform: rotate(-25deg);
    background: linear-gradient(180deg, rgba(11, 26, 143, 0.12) 0%, rgba(128, 128, 128, 0.10) 100%);
    animation: SlideRight 6s ease-in-out infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.service .service-item:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); transform: none; border-color: rgba(37, 99, 235, 0.1); }

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    min-height: 200px;
    background-color: #f8f9fa;
}

/* Hide any unwanted text labels at top of service cards */
.service .service-item .service-img::before {
    content: none !important;
    display: none !important;
}

/* Hide any text content that might appear in image area (but keep images visible) */
.service .service-item .service-img {
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Hide any text overlays but keep images */
.service .service-item .service-img > *:not(img) {
    display: none !important;
}

.service .service-item .service-img img {
    display: block !important;
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
    /* Ensure image is visible and alt text doesn't show */
    font-size: 0;
    color: transparent;
}

.service .service-item:hover .service-img img { transform: none; }

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 26, 143, 0.25) 0%, rgba(128, 128, 128, 0.15) 100%);
    transition: all 0.4s ease;
}

.service .service-item:hover .service-img::after { width: 0 !important; height: 0 !important; }

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: linear-gradient(135deg, var(--bs-dark) 0%, var(--bs-primary-dark) 100%);
    transition: all 0.4s ease;
    z-index: 1;
}

.service .service-item:hover .service-content::after { width: 0 !important; height: 0 !important; }

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner { color: inherit !important; }

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-dark) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Hide any text labels in project image area */
.project .project-carousel .project-item .project-img::before {
    content: none !important;
    display: none !important;
}

.project .project-carousel .project-item .project-img > *:not(img) {
    display: none !important;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 26, 143, 0.28) 0%, rgba(128, 128, 128, 0.20) 100%);
    transition: all 0.4s ease;
}

.project .project-carousel .project-item:hover .project-img::after { height: 0; }

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img { transform: none; }

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: linear-gradient(135deg, var(--bs-dark) 0%, var(--bs-primary-dark) 100%);
    transition: all 0.4s ease;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i { color: inherit !important; }

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after { height: 0; }

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Blog Start ***/
.blog .blog-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .project-img .blog-plus-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(11, 26, 143, 0.20) 0%, rgba(128, 128, 128, 0.15) 100%);
    transition: all 0.4s ease;
    opacity: 0;
}

.blog .blog-item:hover .project-img .blog-plus-icon { opacity: 0; }

.blog .blog-item .project-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .project-img img { transform: none; }

/*** Blog End ***/

/*** Core Values & Why Choose Us Start ***/
.values-why {
    background-color: #f8f9fa;
}

/* Core Values - Purple square icon background */
.value-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.value-item .check-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9d7ce8 0%, #7c5acf 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.value-item .check-icon i {
    font-size: 20px;
    color: #fff;
}

.value-item .check-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.value-item h6 {
    color: var(--bs-dark);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Us - White circular icon background (for dark backgrounds) */
.why-choose-section {
    background: linear-gradient(135deg, #0b1a8f 0%, #081066 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.why-choose-section h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-choose-section .value-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-section .value-item .check-icon {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 56px;
    height: 56px;
}

.why-choose-section .value-item .check-icon i {
    color: #fff;
    font-size: 24px;
}

.why-choose-section .value-item h6 {
    color: #fff;
}

.why-choose-section .value-item p {
    color: rgba(255, 255, 255, 0.8);
}

/*** Core Values & Why Choose Us End ***/

/*** Pagination Start ***/
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: #fff;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
    opacity: 0.6;
}

/*** Pagination End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bs-dark);
    transition: 0.5s;
}

.team .team-item:hover { border: 1px solid var(--bs-dark) !important; }

.team .team-item::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: var(--bs-primary) transparent transparent var(--bs-primary) !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    border: 1px solid;
    border-color: transparent var(--bs-primary) var(--bs-primary) transparent !important;
    z-index: 5;
    transition: 1s;
    opacity: 0;
}

.team .team-item:hover:after,
.team .team-item:hover::before { width: 0 !important; height: 0 !important; opacity: 0; }

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    font-size: 0 !important;
    line-height: 0 !important;
}

/* Hide any text labels in team image area (but keep team-icon visible) */
.team .team-item .team-img::before {
    content: none !important;
    display: none !important;
}

.team .team-item .team-img > *:not(img):not(.team-icon) {
    display: none !important;
}

.team .team-item .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 26, 143, 0.20) 0%, rgba(128, 128, 128, 0.15) 100%);
    transition: all 0.4s ease;
}

.team .team-item:hover .team-img::after { height: 0; }

.team .team-item .team-img .team-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 8;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon .team-icon-share {
    position: relative;
    margin-top: -200px;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon .team-icon-share { margin-top: -200px; }

.team .team-item .team-content {
    position: relative;
}

.team .team-item .team-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-light) 100%) !important;
    transition: all 0.4s ease;
}

.team .team-item .team-content::before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: linear-gradient(135deg, var(--bs-primary-light) 0%, var(--bs-primary) 100%) !important;
    transition: all 0.4s ease;
}

.team .team-item:hover .team-content::after,
.team .team-item:hover .team-content::before { width: 0 !important; height: 0 !important; }

.team .team-item:hover .team-content .team-content-inner { color: inherit; }

.team .team-item .team-content .team-content-inner h4,
.team .team-item .team-content .team-content-inner p {
    transition: 0.5s;
}

.team .team-item:hover .team-content .team-content-inner p { color: inherit !important; }
.team .team-item:hover .team-content .team-content-inner h4 { color: inherit !important; }
/*** Team End ***/

/*** Testimonials Start (Mentor Style) ***/
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials .section-title {
    margin-bottom: 50px;
}

.testimonials .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bs-dark);
    margin-bottom: 20px;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    background: #fff;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0;
    padding: 15px 0;
    line-height: 26px;
    font-size: 16px;
    color: #555;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #c3e8fa;
    font-size: 26px;
    line-height: 0;
    position: absolute;
}

.testimonials .testimonial-item .quote-icon-left {
    top: 0;
    left: 0;
}

.testimonials .testimonial-item .quote-icon-right {
    bottom: 0;
    right: 0;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid var(--bs-primary);
    object-fit: cover;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--bs-dark);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-weight: 400;
}

.testimonials .testimonials-slider {
    margin-top: 30px;
}

.testimonials .testimonials-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonials .testimonials-slider .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    transition: all 0.3s ease;
}

.testimonials .testimonials-slider .owl-dot.active {
    background-color: var(--bs-primary);
    width: 30px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials .testimonial-item {
        min-height: auto;
        padding: 25px;
    }
    
    .testimonials .testimonial-item p {
        font-size: 14px;
        line-height: 24px;
    }
}
/*** Testimonials End ***/

/*** FAQ'S Start ***/
.faq {
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/bg.png);
    object-fit: cover;
    z-index: -1;
}

.faq .faq-img {
    position: relative;
}

.faq .faq-img .faq-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*** FAQ'S End ***/

/* New Footer */
.site-footer { background: var(--bs-dark); color: rgba(255,255,255,0.85); }
.site-footer .footer-text { color: rgba(255,255,255,0.75); }
.site-footer .footer-heading { color: #fff; letter-spacing: .5px; margin-bottom: 12px; }
.site-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-links li { margin: 8px 0; }
.site-footer .footer-links a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer .footer-links a:hover { color: var(--bs-primary-light); }
.site-footer .social-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); color: #fff; transition: .2s; }
.site-footer .social-btn:hover { background: var(--bs-primary); color: #fff; }
.site-footer .footer-newsletter .form-control { background: #fff; border: 1px solid rgba(255,255,255,0.15); }
.site-footer .footer-bottom { background: #0b1138; color: rgba(255,255,255,0.75); }
.site-footer .policy-links { list-style: none; display: flex; gap: 16px; padding: 0; }
.site-footer .policy-links a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-footer .policy-links a:hover { color: #fff; }

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*** Partners Section Start - Horizontal Scrolling Design ***/
.partners-section {
    background: #fff;
    position: relative;
}

.partners-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

.partners-scroll-wrapper {
    display: inline-flex;
    gap: 30px;
    animation: scrollPartners 40s linear infinite;
    width: max-content;
}

.partners-scroll-wrapper:hover {
    animation-play-state: paused;
}

.partner-logo-item {
    flex-shrink: 0;
    width: 220px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(11, 26, 143, 0.15);
}

.partner-logo-box {
    width: 140px;
    height: 140px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--bs-dark);
    margin: 0 0 5px 0;
}

.partner-logo-type {
    font-size: 12px;
    color: #666;
    margin: 0;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--scroll-distance, -50%));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .partner-logo-item {
        width: 180px;
    }
    .partner-logo-box {
        width: 120px;
        height: 120px;
    }
}
/*** Partners Section End ***/

/*** Values & Why Choose Start ***/
.values-why { background: #f7f9fc; }
.values-why .value-item .check-icon,
.values-why .why-item .why-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 26, 143, 0.1);
    color: var(--bs-primary);
}
.values-why h6 { color: var(--bs-dark); font-weight: 600; }
/*** Values & Why Choose End ***/

/*** About Timeline Start ***/
.about-timeline .timeline-content {
    min-height: 400px;
}

.about-timeline .timeline-block {
    margin-bottom: 30px;
}

.about-timeline .timeline-text-block {
    margin-left: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-timeline .timeline-text-block:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-img-timeline img {
        height: 400px !important;
        margin-bottom: 30px;
    }
    
    .about-timeline .timeline-content {
        padding-left: 0 !important;
    }
    
    .about-timeline .timeline-vertical-line {
        left: 15px !important;
    }
    
    .about-timeline .timeline-node {
        left: 4px !important;
    }
    
    .about-timeline .timeline-text-block {
        margin-left: 40px;
    }
}
/*** About Timeline End ***/

/*** Vision & Mission Start ***/
.vision-mission {
    background: #fff;
}

.vision-mission-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    height: 100%;
    position: relative;
    border-left: 5px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.vision-box {
    border-left-color: var(--bs-primary);
    background: #f0f4f9;
}

.mission-box {
    border-left-color: var(--bs-primary);
    background: #f0f4f9;
}

.vision-box .vm-icon {
    color: var(--bs-primary);
    font-size: 2.5rem;
}

.mission-box .vm-icon {
    color: var(--bs-primary);
    font-size: 2.5rem;
}

.vision-box .vm-heading {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.mission-box .vm-heading {
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.vm-text {
    color: #555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .vision-mission-box {
        padding: 30px;
        margin-bottom: 20px;
    }
    
    .vm-icon {
        font-size: 2rem !important;
    }
    
    .vm-heading {
        font-size: 1.5rem !important;
    }
}
/*** Vision & Mission End ***/

/*** Contact Icons Start ***/
.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
}
/*** Contact Icons End ***/

/*** Project Overview Table Start ***/
.project-overview {
    background: #fff;
}

.project-overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.project-table thead {
    background: #616161;
}

.project-table thead th {
    color: #fff;
    font-weight: 700;
    padding: 15px;
    text-align: left;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.project-table tbody tr {
    border: none;
}

.project-table tbody td {
    padding: 15px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    border: none;
    vertical-align: top;
}

.table-row-blue {
    background: var(--bs-dark);
}

.table-row-gray {
    background: #616161;
}

.project-table tbody tr:hover {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

@media (max-width: 991px) {
    .project-overview-title {
        font-size: 2rem;
    }
    
    .project-table thead th,
    .project-table tbody td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .project-overview-title {
        font-size: 1.75rem;
    }
    
    .project-table {
        font-size: 0.8rem;
    }
    
    .project-table thead th,
    .project-table tbody td {
        padding: 10px 6px;
        font-size: 0.75rem;
    }
}
/*** Project Overview Table End ***/