/*** Spinner Start ***/
@import url('header-hero.css');
@import url('theme.css');

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
/*
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
*/

/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: all .4s ease;
}

/* Primary Button */
.btn-primary {
    background: var(--tt-grad, linear-gradient(90deg, #2f6bff, #8b3bff)) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: linear-gradient(90deg, #3f7bff, #9b4bff) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

/* Secondary Button */
.btn-secondary {
    background: rgba(139, 59, 255, 0.12) !important;
    border: 1px solid rgba(139, 59, 255, 0.45) !important;
    color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: rgba(139, 59, 255, 0.22) !important;
    border-color: rgba(139, 59, 255, 0.65) !important;
    color: #ffffff !important;
}

/* Square Buttons */
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;

    background: var(--tt-grad, linear-gradient(90deg, #2f6bff, #8b3bff)) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50%;
    transition: all .4s ease;
}

.back-to-top:hover {
    background: linear-gradient(90deg, #3f7bff, #9b4bff) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/*** Button End ***/
/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/* Universal site header */
.site-header-bar {
    background-color: var(--tt-accent);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
}

.site-header-bar .navbar {
    min-height: 72px;
}

.site-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 1rem;
}

.site-logo-wrap {
    display: block;
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
}

.site-logo {
    display: block;
    width: 54px;
    height: auto;
    clip-path: inset(0 0 38% 0);
    transform: scale(1.08);
    transform-origin: top center;
}

.site-header-bar .navbar-nav .nav-link {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.site-header-bar .services-dropdown {
    background: #003640;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.45rem 0;
    margin-top: 0.35rem;
    min-width: 250px;
}

.site-header-bar .services-dropdown .dropdown-item {
    color: #ffffff;
    padding: 0.55rem 1.25rem;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header-bar .services-dropdown .dropdown-item:hover,
.site-header-bar .services-dropdown .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--bs-secondary);
}

.site-header-bar .services-dropdown .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 0.35rem 0;
}

@media (max-width: 991.98px) {
    .site-header-bar .services-dropdown {
        background: transparent;
        border: 0;
        box-shadow: none !important;
        padding-left: 0.75rem;
        margin-top: 0;
    }

    .site-header-bar .services-dropdown .dropdown-item {
        padding-left: 0.5rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .site-header-bar .services-dropdown .dropdown-divider {
        display: none;
    }
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** About Icon Visual Start ***/
.about-icon-showcase {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: radial-gradient(circle at 50% 50%, rgba(79, 125, 255, 0.16), rgba(5, 8, 16, 0.04) 58%, transparent 72%);
}

.about-icon-orbit {
    position: absolute;
    inset: 34px;
    border-radius: 50%;
    border: 1px solid rgba(79, 125, 255, 0.16);
    animation: aboutOrbitSpin 18s linear infinite;
}

.about-icon-orbit span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4f7dff;
    box-shadow: 0 0 18px rgba(79, 125, 255, 0.9);
}

.about-icon-orbit span:nth-child(1) {
    top: -5px;
    left: 50%;
}

.about-icon-orbit span:nth-child(2) {
    right: 18%;
    bottom: 8%;
}

.about-icon-orbit span:nth-child(3) {
    left: 12%;
    bottom: 18%;
}

.about-icon-core {
    width: 132px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, #2f6bff, #8b3bff);
    box-shadow: 0 18px 46px rgba(47, 107, 255, 0.28);
    animation: aboutCorePulse 2.8s ease-in-out infinite;
}

.about-icon-core i {
    font-size: 48px;
}

.about-icon-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(79, 125, 255, 0.12);
    animation: aboutIconFloat 4.5s ease-in-out infinite;
}

.about-icon-card i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: #ffffff;
    background: #4f7dff;
}

.about-icon-card span {
    color: #1a202c;
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.about-icon-card-1 {
    top: 42px;
    left: 18px;
}

.about-icon-card-2 {
    top: 92px;
    right: 0;
    animation-delay: -1.2s;
}

.about-icon-card-3 {
    bottom: 74px;
    left: 0;
    animation-delay: -2.1s;
}

.about-icon-card-4 {
    right: 28px;
    bottom: 34px;
    animation-delay: -3.1s;
}

@keyframes aboutIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes aboutCorePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes aboutOrbitSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 575.98px) {
    .about-icon-showcase {
        min-height: 360px;
    }

    .about-icon-card {
        min-width: 138px;
        padding: 12px 14px;
    }

    .about-icon-card span {
        font-size: 0.82rem;
    }

    .about-icon-core {
        width: 112px;
        height: 112px;
    }
}
/*** About Icon Visual End ***/
/*** Services Start ***/
/*
.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}
*/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

.services .services-content {
    height: 100%;
    display: flex;
}

.services .services-content-icon {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services .services-content-icon p {
    flex: 1 1 auto;
}

.services .services-content-icon .btn {
    margin-top: auto;
}

.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.92), rgba(139, 59, 255, 0.88));
    transition: .5s;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon h4,
.services-item .services-content-icon p {
    transition: .5s;
}

/* Hover text colors */
.services-item:hover .services-content-icon i {
    color: #ffffff !important;
}

.services-item:hover .services-content-icon h4 {
    color: #ffffff !important;
}

.services-item:hover .services-content-icon p {
    color: #ffffff !important;
}

/* ==========================
   Service Buttons
========================== */

.services .btn-secondary {
    background-color: #000000 !important;
    border: 2px solid #000000 !important;
    color: #ffffff !important;
    transition: all .4s ease;
}

/* Button Hover */
.services .btn-secondary:hover,
.services .btn-secondary:focus,
.services .btn-secondary:active {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
}

/* Keep button black when card is hovered */
.services-item:hover .btn-secondary {
    background-color: #000000 !important;
    border: 2px solid #000000 !important;
    color: #ffffff !important;
}

/* Button stays white on its own hover */
.services-item:hover .btn-secondary:hover {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
}

/*** Services End ***/




/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Portfolio Filter & Cards Start ***/

.project-filter-nav {
    margin-bottom: 3rem;
}

.project-filter-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 0;
}

.project-filter-scroll::-webkit-scrollbar {
    display: none;
}

.project-filter-track {
    position: relative;
    display: inline-flex;
    min-width: 100%;
    justify-content: center;
}

.project-filter-pill {
    position: relative;
    display: inline-flex;
    padding: 0.45rem;
    background: #f4f7f8;
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(47, 107, 255, 0.08);
    border: 1px solid rgba(47, 107, 255, 0.08);
}

.project-filter-list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.project-filter-list li {
    flex-shrink: 0;
}

.project-filter-btn {
    position: relative;
    z-index: 2;
    border: none;
    background: transparent;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.25s ease;
}

.project-filter-btn:hover {
    color: var(--tt-accent);
    transform: translateY(-1px);
}

.project-filter-btn.active {
    color: #ffffff;
}

.project-filter-indicator {
    position: absolute;
    top: 0.45rem;
    left: 0;
    height: calc(100% - 0.9rem);
    background: var(--tt-accent);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(47, 107, 255, 0.35);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(47, 107, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(47, 107, 255, 0.14);
}

.portfolio-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.06);
}

.project-video-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: #000000;
    cursor: pointer;
}

.project-video-preview,
.project-video-modal video {
    display: block;
    width: 100%;
    background: #000000;
}

.project-video-preview {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.portfolio-card:hover .project-video-preview {
    transform: scale(1.06);
    opacity: 0.86;
}

.project-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.25s ease, background 0.25s ease;
}

.project-video-trigger:hover .project-video-play,
.project-video-trigger:focus .project-video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--tt-accent);
}

.project-video-modal .modal-content {
    background: #050810;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.project-video-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.project-video-modal .modal-body {
    padding: 0;
}

.project-video-modal video {
    max-height: 78vh;
}
.portfolio-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--tt-accent);
    background: rgba(47, 107, 255, 0.08);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.portfolio-card-title {
    font-family: 'Saira', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.65rem;
    line-height: 1.35;
}

.portfolio-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0;
    flex-grow: 1;
}

.project-card-col {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-card-col.is-hidden {
    display: none !important;
}

.project-card-col.is-visible {
    animation: portfolioCardIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes portfolioCardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #94a3b8;
}

.project-empty-state i {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.project-empty-state p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .project-filter-track {
        justify-content: flex-start;
    }

    .project-filter-list {
        gap: 0.25rem;
    }

    .project-filter-pill {
        padding: 0.4rem;
    }

    .project-filter-btn {
        font-size: 0.82rem;
        padding: 0.55rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .project-filter-nav {
        margin-bottom: 2rem;
    }

    .project-filter-scroll {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .portfolio-card-body {
        padding: 1.25rem;
    }

    .portfolio-card-title {
        font-size: 1.05rem;
    }
}

/*** Portfolio Filter & Cards End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--tt-accent) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--tt-accent);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid #FFFFFF;
}

.team-img img {
    border: 10px solid var(--tt-accent);
    transition: .5s;
}

.team-item:hover h4 {
    color: #000000;
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--tt-accent);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--tt-accent);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: #000000;
    color: #FFFFFF;
}
@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/
.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--tt-accent);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}
/*** Testimonial End ***/


/*** Contact Start ***/
/*** Contact Start ***/

.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(47, 107, 255, 0.12), rgba(139, 59, 255, 0.06)),
                url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-card-link {
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card-link:hover,
.contact-card-link:focus {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(47, 107, 255, 0.14);
}

.contact-card-link:focus-visible {
    outline: 3px solid rgba(79, 125, 255, 0.35);
    outline-offset: 3px;
}
/* Left CTA Section */
.contact-map {
    background: #000000;
    color: #ffffff;
}

/* Right Contact Form */
.contact-form {
    background: #000000;
}

/* Form Fields */
.contact-form .form-control {
    background: #ffffff;
    color: #000000;
    border: 2px solid #ffffff;
    border-radius: 10px;
    transition: all .3s ease;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
}

.contact-form .form-control:focus {
    border-color: var(--tt-violet);
    box-shadow: 0 0 0 0.2rem rgba(139, 59, 255, 0.25);
}

/* Send Message Button */
.contact-form .btn {
    background: var(--tt-grad);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    transition: all .3s ease;
}

.contact-form .btn:hover,
.contact-form .btn:focus {
    background: linear-gradient(90deg, #3f7bff, #9b4bff);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(139, 59, 255, 0.35);
}

/* CTA Button */
.contact-map .btn {
    background: rgba(139, 59, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(139, 59, 255, 0.45);
    border-radius: 50px;
    transition: all .3s ease;
}

.contact-map .btn:hover,
.contact-map .btn:focus {
    background: rgba(139, 59, 255, 0.22);
    color: #ffffff;
    border-color: rgba(139, 59, 255, 0.65);
    box-shadow: 0 0 24px rgba(139, 59, 255, 0.3);
}

/*** Contact End ***/
/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}


/* ==========================================
   Service Buttons
========================================== */

.services .btn-secondary {
    background-color: #000000 !important;
    border: 2px solid #000000 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.services .btn-secondary:hover,
.services .btn-secondary:focus,
.services .btn-secondary:active {
    background-color: #ffffff !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

/* Prevent Bootstrap from changing the colors */
.services .btn-secondary:not(:disabled):not(.disabled):active,
.services .btn-secondary:not(:disabled):not(.disabled).active {
    background-color: #ffffff !important;
    border-color: #000000 !important;
    color: #000000 !important;
}
/*** Footer End ***/


/*** Custom Cursor Start ***/

@media (pointer: fine) {
    .custom-cursor-enabled,
    .custom-cursor-enabled * {
        cursor: none !important;
    }
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999999;
}

.cursor-dot,
.cursor-ring,
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    will-change: transform;
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: var(--tt-accent);
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.2s ease;
}

.cursor-ring {
    width: 38px;
    height: 38px;
    border: 2px solid rgba(47, 107, 255, 0.55);
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.3s ease,
                background 0.3s ease,
                opacity 0.25s ease;
}

.cursor-glow {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.18) 0%, rgba(47, 107, 255, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.85;
    transition: opacity 0.3s ease, width 0.5s ease, height 0.5s ease;
}

.cursor-dot.is-hover {
    width: 4px;
    height: 4px;
    background: #000000;
}

.cursor-ring.is-hover {
    width: 58px;
    height: 58px;
    background: rgba(47, 107, 255, 0.1);
    border-color: var(--tt-accent);
}

.cursor-glow.is-hover {
    width: 160px;
    height: 160px;
    opacity: 1;
}

.cursor-ring.is-click {
    width: 30px;
    height: 30px;
    border-color: #000000;
}

.cursor-dot.is-click {
    background: #000000;
}

.cursor-dot.is-hidden,
.cursor-ring.is-hidden,
.cursor-glow.is-hidden {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    #custom-cursor {
        display: none !important;
    }
}

/*** Custom Cursor End ***/
