/********** Template CSS **********/
html {
  scroll-behavior: smooth;
}

:root {
    --primary: #5C7AEA;       /* Soft indigo */
    --secondary: #00B894;     /* Teal green */
    --light: #F0F9FF;         /* Light and clean */
    --dark: #2D3436;  
    --color-bg1: rgb(108, 0, 162);
    --color-bg2: rgb(0, 17, 82);
    --color1: 18, 113, 255;
    --color2: 221, 74, 255;
    --color3: 100, 220, 255;
    --color4: 200, 50, 50;
    --color5: 180, 180, 50;
    --color-interactive: 140, 100, 255;
    --circle-size: 80%;
    --blending: hard-light;
}

.primary-color{
    color: var(--primary) !important;
}

.secondary-color{
    color: var(--secondary) !important;
}
.dark-color{
    background-color: #191725 !important;
}

body{
    background-color: #000000 !important;
    color: var(--light) !important;
}

/* bubbles animation */
.text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 99vw;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white !important;
    z-index: 100;
    padding: 2rem;
    opacity: 0.95;
    user-select: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  .text-content {
    max-width: 800px;
    width: 100%;
  }
  
  .text-container h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color : white !important;
  }
  
  .text-container h4 {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color : white !important;
  }
  @keyframes moveInCircle {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(180deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes moveVertical {
    0% {
      transform: translateY(-50%);
    }
    50% {
      transform: translateY(50%);
    }
    100% {
      transform: translateY(-50%);
    }
  }
  
  @keyframes moveHorizontal {
    0% {
      transform: translateX(-50%) translateY(-10%);
    }
    50% {
      transform: translateX(50%) translateY(10%);
    }
    100% {
      transform: translateX(-50%) translateY(-10%);
    }
  }
  
  
  .gradient-bg {
    width: 100vw;
    height: 70vh;
    border-radius: 0px 0px 30px 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, #364a91, #3e795191);
    top: 0;
    left: 0;

    svg {
      position: fixed;
      top:0;
      left:0;
      width: 0;
      height: 0;
    }
  
  
    .gradients-container {
      filter: url(#goo) blur(40px) ;
      width: 100%;
      height: 100%;
    }
  
    .g1 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);
        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2);
        left: calc(50% - var(--circle-size) / 2);
        transform-origin: center center;
        animation: moveVertical 30s ease infinite;
        opacity: 1;
    }
  
    .g2 {
        position: absolute;
        background: radial-gradient(circle at center, rgb(217 204 220 / 80%) 0, rgba(var(--color2), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);
        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2);
        left: calc(50% - var(--circle-size) / 2);
        transform-origin: calc(50% - 400px);
        animation: moveInCircle 20s reverse infinite;
        opacity: 1;
    }
  
    .g3 {
        position: absolute;
        background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);
        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2 + 200px);
        left: calc(50% - var(--circle-size) / 2 - 500px);
        transform-origin: calc(50% + 400px);
        animation: moveInCircle 40s linear infinite;
        opacity: 1;
    }
  
    .g4 {
        position: absolute;
        background: radial-gradient(circle at center, rgb(7 161 145) 0, rgba(var(--color4), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);
        width: var(--circle-size);
        height: var(--circle-size);
        top: calc(50% - var(--circle-size) / 2);
        left: calc(50% - var(--circle-size) / 2);
        transform-origin: calc(50% - 200px);
        animation: moveHorizontal 40s ease infinite;
        opacity: 0.7;
    }
  
    .g5 {
        position: absolute;
        background: radial-gradient(circle at center, rgb(92 122 234) 0, rgba(var(--color5), 0) 50%) no-repeat;
        mix-blend-mode: var(--blending);
        width: calc(var(--circle-size) * 2);
        height: calc(var(--circle-size) * 2);
        top: calc(50% - var(--circle-size));
        left: calc(50% - var(--circle-size));
        transform-origin: calc(50% - 800px) calc(50% + 200px);
        animation: moveInCircle 20s ease infinite;
        opacity: 1;
    }
  
    .interactive {
      position: absolute;
      background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
      mix-blend-mode: var(--blending);
  
      width: 100%;
      height: 100%;
      top: -50%;
      left: -50%;
  
      opacity: 0.7;
    }
  }
  .text-container p {
      font-size: 1.25rem;
      font-weight: 300;
      color: #FFFFFF;
  }
  @media (max-width: 768px) {
  .gradient-bg,
  .text-container {
    height: auto;
    min-height: 100vh;
    padding: 3rem 1rem;
  }

  .text-container {
    /* position: relative; override absolute */
  }
}
/* bubbles animation */

.btn-pill {
    border-radius: 50px;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
}
.display-6 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}
@media (max-width: 992px) {
    .display-6 {
        font-size: 2rem;
    }
}

p{
    margin-top: 0 !important;
    margin-bottom: 0rem !important;
}
.high-nav-icons p {
    margin-top: 20px;
    padding: 0px 10px;
}

.bg-primary {
    background: var(--primary) !important;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}
/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@media (min-width: 1400px){
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
        max-width: 1670px!important;
    }
}


#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;
}

h2{
    color: var(--primary)!important;            
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h1{
    color: #ffff !important;
}


h4{
    color: #5C7AEA !important;
}

h5{
    color: #00B894 !important;
}
h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}
.btn-lg{
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem;
    font-family: 'Nunito', sans-serif;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary) !important;
    background-color: #52b96e !important;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/* .img-fluid {
    max-width: 100%;
    width: 800px;
    height: 500px;
} */

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    font-weight: 900;
    font-size: 20px;
}

.sticky-top .navbar-dark .navbar-nav .nav-link:hover,
.sticky-top.navbar-dark .navbar-nav .nav-link.active {
    
    font-weight: 900;
    font-size: 20px;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }
    /* Base ::before style */
    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--light);
        transition: .5s;
    }

    /* Active or hover state */
    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
        
    }

    /* Override when sticky with shadow */
    .navbar-dark.sticky-top.shadow-sm .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    /* Optional active text color class */
    .navbar-dark.sticky-top.shadow-sm .navbar-nav .nav-link.active {
        color: var(--primary) !important;
    }
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: 0.3s ease;
}
.transition {
    transition: all 0.3s ease;
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

@media (max-width: 450px) {
  .carousel-caption {
    padding: 1rem !important;
  }

  .carousel-caption h2 {
    font-size: 1.5rem !important;
    line-height: 1.4;
  }

  .carousel-caption h5 {
    font-size: 0.9rem !important;
  }

  .carousel-caption a.quote-button {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem !important;
    margin: 0.3rem auto;
    font-size: 0.9rem !important;
    text-align: center;
  }

  .carousel-caption .p-3 {
    padding: 0 !important;
  }
  .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out;
    height: 50vh; /* Full height for mobile */
}
}


.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/* Custom CSS for Why Choose Us Section */
.why-us-card {
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 202, 240, 0.2);
    border-color: rgba(13, 202, 240, 0.3);
    background: linear-gradient(145deg, #1a1e21, #121416);
}

.bg-gradient-dark {
    background: linear-gradient(145deg, #1e2225, #161a1d);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #0dcaf0, #0d6efd);
}

.why-us-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.shadow-lg-hover {
    transition: all 0.3s ease;
}

.shadow-lg-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3) !important;
}

.transition-all {
    transition: all 0.3s ease;
}

/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover{
    border: 5px solid;
    border-radius: 20px !important;
    border-color: #5e72e9;
}

.service-item-contact:hover{
    border: 5px solid;
    border-radius: 20px !important;
    border-color: #f5f6ff;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

.service-card {
    border: 1px solid rgba(92, 122, 234, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(92, 122, 234, 0.3);
    border-color: rgba(92, 122, 234, 0.5);
}

.service-icon-wrapper {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 12px;
    transform: rotate(-45deg);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
    background: var(--secondary);
}

.service-icon i {
    transform: rotate(45deg);
    font-size: 28px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: rotate(0deg);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 184 148 / 38%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.display-6 {
    color: #5c7aea;
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}
/* Tech Icons *//* Tech Icons */
.service-tech-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.tech-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-icon i {
    font-size: 18px;
}

.tech-icon:hover {
    background: rgba(92, 122, 234, 0.3);
    transform: translateY(-3px);
}

/* Button Styles */
.btn-pill {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: 1px solid rgba(92, 122, 234, 0.3);
}

.bg-gradient-primary-to-secondary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .service-card {
        margin-bottom: 30px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
}

/*** Technologies ***/
.tech-categories-nav {
    margin-bottom: 2.5rem;
}

.tech-category .nav-item button {
    position: relative;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(92, 122, 234, 0.3);
    border-radius: 50px;
    background: transparent;
    color: var(--light);
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.25rem;
    overflow: hidden;
}

.btn-tech-category:hover {
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-tech-category.active {
    background: linear-gradient(135deg, var(--primary), #6c5ce7);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(92, 122, 234, 0.4);
}

.btn-tech-category i {
    margin-right: 8px;
}
/* 
.tech-item {
    position: relative;
    height: 100%;
    background: rgb(20 20 23 / 83%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
} */
 
.tech-item {
    /* position: relative; */
    /* height: 100%; */
    /* background: rgb(20 20 23 / 83%); */
    /* border-radius: 12px; */
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    overflow: hidden;
    z-index: 1;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000 !important;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

/* .tech-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(92, 122, 234, 0.2);
    border-color: var(--primary);
    background: rgba(40, 40, 50, 0.8);
} */

.tech-item:hover::before {
    opacity: 1;
}

.tech-icon-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-icon-web {
    background-color: #ffffff;
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%);
    border-radius: 30px;
}

.tech-item:hover .tech-icon {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.tech-name {
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.tech-hover-content {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background: rgba(92, 122, 234, 0.9);
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.tech-item:hover .tech-hover-content {
    bottom: 0;
    opacity: 1;
}

.tech-hover-text {
    font-size: 0.85rem;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .tech-icon {
        width: 50px;
        height: 50px;
    }
    
    .tech-icon-container {
        height: 60px;
    }
}

@media (max-width: 767.98px) {
    .btn-tech-category {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon-container {
        height: 50px;
    }
    
    .tech-name {
        font-size: 0.9rem;
    }
    
    .tech-hover-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .tech-categories-nav .d-flex {
        gap: 0.5rem;
    }
    
    .btn-tech-category {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .tech-item {
        padding: 1rem 0.5rem;
    }
}

/*** Testimonial ***/
.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: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.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: #29252569 !important;
    box-shadow: 0 0 10px #DDDDDD;
    border-radius: 20px;
}
@media (max-width: 425px) {
.testimonial-carousel .owl-item {
    width: 369px !important;
    margin-left: 7px;
}
}
@media (max-width: 375px) {
.testimonial-carousel .owl-item {
    width: 319px !important;
    margin-left: 7px;
}
}
@media (max-width: 325px) {
.testimonial-carousel .owl-item {
    width: 264px !important;
    margin-left: 7px;
}
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.nav-pills .nav-link.active {
    background-color: #0d6efd;
}

.nav-pills .nav-link {
    color: #0d6efd;
    font-weight: 500;
    margin: 0 5px;
}