/*** Spinner Start ***/

#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 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: 100%;
    max-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 15px;
    color: #333 !important;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    position: relative;
    transition: .3s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--bs-secondary);
    border-radius: 2px;
}

.btn-contact-gradient {
    background: linear-gradient(to right, #ed2327, #801315) !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: .5s;
}

.btn-contact-gradient:hover {
    background: linear-gradient(to left, #ed2327, #801315) !important;
    color: #fff !important;
}

.btn-secondary:hover {
    color: #fff !important;
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !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: translateY(15px) scale(0.97);
        transform-origin: top center;
        transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0;
        pointer-events: none;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: translateY(0) scale(1);
    visibility: visible;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    pointer-events: all;
}

/* Premium Dropdown Styling */
.navbar .dropdown-menu {
    min-width: 240px;
    border: none;
    border-top: 3px solid var(--bs-primary);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    background: #ffffff;
}

.navbar .dropdown-item {
    padding: 11px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.navbar .dropdown-item::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--bs-primary);
    transition: transform 0.25s ease;
}

.navbar .dropdown-item:hover {
    background: linear-gradient(to right, rgba(0, 120, 255, 0.07), transparent);
    color: var(--bs-primary);
    border-left-color: var(--bs-primary);
    padding-left: 24px;
}

.navbar .dropdown-item:hover::before {
    transform: translateX(3px);
}

/* Animate each dropdown item individually */
.navbar .nav-item:hover .dropdown-item:nth-child(1) {
    animation: dropItem 0.3s ease forwards;
    animation-delay: 0.05s;
}

.navbar .nav-item:hover .dropdown-item:nth-child(2) {
    animation: dropItem 0.3s ease forwards;
    animation-delay: 0.10s;
}

.navbar .nav-item:hover .dropdown-item:nth-child(3) {
    animation: dropItem 0.3s ease forwards;
    animation-delay: 0.15s;
}

.navbar .nav-item:hover .dropdown-item:nth-child(4) {
    animation: dropItem 0.3s ease forwards;
    animation-delay: 0.20s;
}

@keyframes dropItem {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item video {
    display: block;
    width: 100%;
    margin-bottom: -3px; /* Prevents subpixel gaps between video and next section */
    vertical-align: bottom;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .35);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 0, 0, 0.3);
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.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: 15px;
    height: 15px;
    background: var(--bs-primary);
    margin: 6px;
    border-radius: 50%;
    border: 0;
    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,
    .carousel-item video {
        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,
    .carousel-item video {
        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 ***/


/*** 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(60, 185, 235, 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 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 ***/


/*** 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(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    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 var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.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(--bs-secondary);
    color: var(--bs-white);
    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: var(--bs-primary);
    color: var(--bs-white);
}

@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: #fdeced;

}

.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: #f5b7b8;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-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: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(253, 236, 237, 1), rgba(254, 245, 246, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #ed2327;
}

.contact-form {
    background: #ed2327;
}

/*** 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;
}

/*** Footer End ***/

/*** Custom Services Start ***/
.services-section {
    padding: 80px 0;
}

.service-pill {
    display: inline-block;
    background: #ffffff;
    color: #ed2327;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.service-title {
    font-size: 40px;
    font-weight: 800;
    color: #333;
}

.service-title span {
    color: #ed2327;
}

.custom-service-card {
    background: #ffffff;
    border-radius: 100px 15px 15px 15px;
    padding: 60px 30px 40px;
    margin-top: 60px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: auto;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.custom-service-card .icon-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(237, 35, 39, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px rgba(237, 35, 39, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.custom-service-card .icon-wrapper i {
    transform: rotate(-45deg);
    font-size: 35px;
    color: #000;
    transition: all 0.3s ease;
}

.custom-service-card .divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, rgba(237, 35, 39, 1) 0%, rgba(237, 35, 39, 0) 100%);
    margin: 20px auto;
    border-radius: 2px;
}

.custom-service-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.custom-service-card p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.custom-service-card .learn-more {
    display: none;
    color: #ed2327;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Active State (Hover or .active class) */
.custom-service-card:hover,
.custom-service-card.active {
    box-shadow: 0 15px 40px rgba(237, 35, 39, 0.15);
}

.custom-service-card:hover::before,
.custom-service-card.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: linear-gradient(180deg, rgba(237, 35, 39, 1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 100px 15px 60% 20% / 100px 15px 50% 20%;
    z-index: 0;
}

.custom-service-card:hover *,
.custom-service-card.active * {
    position: relative;
    z-index: 1;
}

.custom-service-card:hover .icon-wrapper,
.custom-service-card.active .icon-wrapper {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.custom-service-card:hover .icon-wrapper i,
.custom-service-card.active .icon-wrapper i {
    color: #222;
}

.custom-service-card:hover h4,
.custom-service-card.active h4 {
    color: #ffffff;
}

.custom-service-card:hover .divider,
.custom-service-card.active .divider {
    display: none;
}

.custom-service-card:hover p,
.custom-service-card.active p {
    display: none;
    /* Hide paragraph on hover to match image layout showing "Learn More" */
}

.custom-service-card:hover .learn-more,
.custom-service-card.active .learn-more {
    display: inline-block;
    opacity: 1;
}

/* Owl Carousel Customizations */
.services-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    transform: translateY(-50%);
    pointer-events: none;
}

.services-carousel .owl-nav .owl-prev,
.services-carousel .owl-nav .owl-next {
    pointer-events: all;
    width: 45px;
    height: 45px;
    background: #ffffff !important;
    color: #333 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    transition: 0.3s;
}

.services-carousel .owl-nav .owl-prev:hover,
.services-carousel .owl-nav .owl-next:hover {
    background: #ed2327 !important;
    color: #ffffff !important;
}

.services-carousel .owl-stage-outer {
    padding-top: 60px;
    /* Space for the floating icons */
    padding-bottom: 20px;
}

/*** Custom Services End ***/
/* Brand Card Styles */
.brand-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.brand-card h2 {
    font-size: 1.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}


.brand-card img {
    max-height: 50px !important;
    max-width: 120px !important;
    width: auto !important;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.brand-card:hover img {
    transform: scale(1.05);
}


.brand-card img {
    width: auto !important;
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    margin: 0 auto;
}


/* ===== Trusted Brands Section ===== */
.brands-section {
    background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 40%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/tech_circuit_bg.png') center center no-repeat;
    background-size: cover;
    opacity: 0.07;
    pointer-events: none;
}

.brands-badge {
    display: inline-block;
    background: linear-gradient(90deg, #0078FF, #00c6ff);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 50px;
}

.brands-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0078FF, #00c6ff);
    border-radius: 10px;
    margin-top: 15px;
}

/* Infinite Ticker */
.brands-ticker-wrapper {
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brands-ticker {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: brandScroll 22s linear infinite;
}

.brands-ticker:hover {
    animation-play-state: paused;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual Brand Card */
.brand-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 40px;
    min-width: 180px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.brand-logo-card:hover {
    background: rgba(0, 120, 255, 0.15);
    border-color: rgba(0, 198, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 120, 255, 0.25);
    transform: translateY(-6px);
}

.brand-logo-card img {
    max-height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.brand-logo-card:hover img {
    transform: scale(1.05);
}

.brand-logo-card span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-logo-card:hover span {
    color: #00c6ff;
}

/* ===== About Page - Mission/Vision/Commitment Cards ===== */
.mv-card {
    border-top: 4px solid var(--bs-primary);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-card-secondary {
    border-top: 4px solid var(--bs-secondary);
    transition: transform 0.3s ease;
}

.mv-card-secondary:hover {
    transform: translateY(-8px);
}

.mv-icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.6rem;
}

.mv-icon-circle-secondary {
    width: 70px;
    height: 70px;
    background: var(--bs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.6rem;
}

/* ===== About Page - Check Icon Boxes ===== */
.check-icon-box {
    min-width: 45px;
    height: 45px;
    background: var(--bs-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== About Page - Service Mini Cards ===== */
.service-mini-card-primary {
    border-bottom: 3px solid var(--bs-primary);
}

.service-mini-card-secondary {
    border-bottom: 3px solid var(--bs-secondary);
}

/* ===== About Page - Industry Tiles ===== */
.industry-tile {
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-tile:hover {
    background: var(--bs-primary) !important;
    color: white !important;
}

.industry-tile:hover i {
    color: white !important;
}

/* ===== Hero Carousel Badge ===== */
.hero-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--bs-secondary), #ff6b6b);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(237, 35, 39, 0.6);
}

/* ===== Brand Card Styles ===== */
.brand-section-bg {
    background: url('../img/tech_circuit_bg.png') center center no-repeat;
    background-size: cover;
    background-color: #f8f9fa;
}

/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
}

.floating-whatsapp i {
    margin-top: 2px;
}

@media screen and (max-width: 767px){
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 20px;
        font-size: 26px;
    }
}

/* ===== Certification Styles ===== */
.certification-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.certification-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--bs-primary);
}

.certification-img-wrapper {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.certification-item:hover .certification-img-wrapper {
    background-color: #fcfcfc !important;
}

.certification-item img {
    transition: all 0.3s ease;
}

.certification-item:hover img {
    transform: scale(1.05);
}
