﻿/********** Template CSS **********/

:root {
    --primary: #4761FF; /*#0b8bb3, #0b8bb3, #0b8bb3*/
    --secondary: #e06666;
    --light: #F1F3FA;
    --dark: #1C2035;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}

/*** 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;
    }

/*** Button ***/

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/

.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0; /* Keep padding consistent */
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
    transition: color 0.3s ease-in-out; /* Only transition color, not size */
}

/* Ensure hover does not change size */
/*.navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        border: none !important;
        outline: none !important;
        color: #D49E3A;
        padding: 25px 0 !important;*/ /* Enforce fixed padding */
/*font-size: 18px !important;*/ /* Prevent font size change */
/*font-weight: 500 !important;
        transition: color 0.3s ease-in-out;
    }*/


.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
/* Hero Section Styles */
/* ===========================
   Hero Section
=========================== */
.hero-section {
    position: relative;
    height: 80vh;
    width: 100%;
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10vw; /* Space on both sides */
    margin-bottom: 50px; /* Add space to the bottom of the Hero section */
}

/* Background Container */
.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: -1;
    margin-left: 2px;
}
/* Ttile Text color */
.hero-inner h1 {
    color: white; /* Ensures text is white */
    font-size: 3rem; /* Optional: Adjust size as needed */
    margin-bottom: 20px;
}

/* Individual Background Images */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 4s ease-in-out;
    animation: fadeInOut 24s infinite;
}

/* Fading effect */
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }
}

/* Hero content */
.hero-inner {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.default-btn {
    /* background-color: #0b8bb3;*/
    background-color: #0b8bb3;
    color: white; /* Ensure the text is white */
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
    text-decoration: none; /* Ensure no underline */
    display: inline-block;
}

/* On hover */
.hero-inner .default-btn:hover {
    background-color: #e6b800; /* Slightly darker shade on hover */
    color: white;
    text-decoration: none; /* No underline */
}
/* Orange variation */
.default-btn.orange-btn {
    background-color: #0b8bb3; /* Orange background */
}

/* On hover */
.default-btn.orange-btn:hover {
    background-color: #e56e00; /* Darker orange on hover */
    color: white;
    text-decoration: none; /* No underline */
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

        #header-carousel .carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
}

.page-header {
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/Software-Product-Development.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

    .page-header.loaded {
        opacity: 1;
    }




    .page-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-size: 18px;
        color: var(--light);
    }

/*** Features ***/

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

/*** About ***/

.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.about-us-section {
    background-color: #f8f9fa; /* Light background */
    padding: 50px 0;
}

.about-list {
    list-style-type: none; /* Remove default list bullets */
    padding-left: 0;
}

    .about-list li {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        margin-bottom: 12px;
        line-height: 1.6;
    }

        .about-list li i {
            color: #28a745; /* Green color for the checkmark */
            margin-right: 10px;
            font-size: 18px; /* Checkmark size */
        }
.about-us-section .container {
    padding-top: 20px; /* Adjust as needed */
    padding-bottom: 20px; /* Adjust as needed */
}

.about-us-section h2 {
    margin-bottom: 20px; /* Optional: Reduce space below heading */
}

.about-us-section .about-list li {
    margin-bottom: 10px; /* Optional: Control spacing between points */
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}


.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

    .btn-play:before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 90px;
        height: 90px;
        background: var(--primary);
        border-radius: 100%;
        animation: pulse-border 1500ms ease-out infinite;
    }

    .btn-play:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        display: block;
        width: 90px;
        height: 90px;
        background: var(--primary);
        border-radius: 100%;
        transition: all 200ms;
    }

    .btn-play span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        left: 3px;
        border-left: 30px solid #FFFFFF;
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
    }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

/*** Service ***/

/*** Service ***/

/*.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}
.section-heading-white {
    color: white;
}

    .section-heading-white p {
        color: white;
    }

    .section-heading-white h1,
    .section-heading-white h2,
    .section-heading-white h3 {
        color: white;
    }
*/

/*Services with redmore button*/
/* ==========================
   Service Section Styling
========================== */
.card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease-in-out;
}

.industries-icon {
    max-width: 150px;
    height: auto;
}


/* Service Card */
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
    height: 100%; /* Ensure all cards are equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Keep button at bottom */
    padding: 2rem 1.5rem;
}

/* Hover effect */
.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
    margin-bottom: 1rem;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

/* Service button that appears on hover (if still needed) */
.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}

/* Limit Description to fixed height */
.service-description-limit {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Number of lines to show */
    -webkit-box-orient: vertical;
    color: #333;
    font-size: 14px;
    line-height: 1.5em;
    min-height: 6em; /* Keep min height for alignment */
    margin-bottom: 1.5rem;
}
/*.service-section-bg {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('../img/monoSmall.png');*/
    /* replace with your path */
    /*background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}*/


/* Read More Button Styling */
/* Read More Button Styling */
.read-more-btn {
    color: #fff;
    background-color: #D49E3A;
    border: none;
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    text-decoration: none; /* No underline */
    display: inline-block; /* Make it behave like button */
}

    .read-more-btn:hover {
        background-color: #e67000; /* Slightly darker on hover */
        text-decoration: none; /* No underline on hover */
    }


/* Make sure card height is consistent */
.service-item {
    height: 100%;
}

.service-text {
    height: 100%;
}

/* ==========================
   Section Headings (White)
========================== */

.section-heading-white {
    color: white;
}

    .section-heading-white p {
        color: white;
    }

    .section-heading-white h1,
    .section-heading-white h2,
    .section-heading-white h3 {
        color: white;
    }



/*** Project ***/

.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .project-item .project-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .5);
        opacity: 0;
        padding-top: 60px;
        transition: .5s;
    }

    .project-item:hover .project-overlay {
        opacity: 1;
        padding-top: 0;
    }

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin-left: 15px;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        border-radius: 55px;
        box-shadow: 0 0 45px rgba(0, 0, 0, .15);
        font-size: 25px;
        transition: .5s;
    }

        .project-carousel .owl-nav .owl-prev:hover,
        .project-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            color: #FFFFFF;
        }
@media (max-width: 768px) {
    .navbar-brand img {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

        .project-carousel .owl-nav .owl-prev,
        .project-carousel .owl-nav .owl-next {
            margin: 0 7px;
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
}

/*** Team ***/

.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

    .team-item .team-social {
        position: absolute;
        padding: 0;
        top: 15px;
        left: 0;
        overflow: hidden;
    }

        .team-item .team-social li {
            list-style-type: none;
            margin-bottom: 10px;
            margin-left: -50px;
            opacity: 0;
            transition: .5s;
        }

    .team-item:hover .team-social li {
        margin-left: 15px;
        opacity: 1;
    }

    .team-item .team-social li .btn {
        background: #FFFFFF;
        color: var(--primary);
        border-radius: 40px;
        transition: .5s;
    }

        .team-item .team-social li .btn:hover {
            color: #FFFFFF;
            background: var(--primary);
        }

    .team-item .team-social li:nth-child(1) {
        transition-delay: .1s;
    }

    .team-item .team-social li:nth-child(2) {
        transition-delay: .2s;
    }

    .team-item .team-social li:nth-child(3) {
        transition-delay: .3s;
    }

    .team-item .team-social li:nth-child(4) {
        transition-delay: .4s;
    }

    .team-item .team-social li:nth-child(5) {
        transition-delay: .5s;
    }

/*** Testimonial ***/

.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

    .owl-item .testimonial-item,
    .testimonial-item * {
        transition: .5s;
    }

    .owl-item.center .testimonial-item,
    .testimonial-item:hover {
        background: var(--primary);
    }

        .owl-item.center .testimonial-item *,
        .testimonial-item:hover * {
            color: #FFFFFF !important;
        }

    .testimonial-item img {
        width: 100px !important;
        height: 100px !important;
        border-radius: 100px;
    }

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin-left: 15px;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        border-radius: 55px;
        box-shadow: 0 0 45px rgba(0, 0, 0, .15);
        font-size: 25px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            color: #FFFFFF;
        }

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

        .testimonial-carousel .owl-nav .owl-prev,
        .testimonial-carousel .owl-nav .owl-next {
            margin: 0 7px;
            width: 45px;
            height: 45px;
            font-size: 20px;
        }
}

.description-block {
    max-height: 150px; /* Set max-height to limit the description size */
    overflow: hidden;
    transition: max-height 0.3s ease; /* Smooth transition for expanding */
}

    .description-block p {
        margin-bottom: 10px; /* Reduce bottom margin */
    }

/* Make product detail images smaller */
.product-detail-img {
    max-width: 70%; /* reduce image width */
    height: auto;
    display: block;
    margin: 0 auto; /* center */
}

/* Make glance product grid images even smaller */
.glance-product-img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    /* On mobile, make them slightly bigger */
    .glance-product-img {
        max-width: 80px;
    }
}
/*** Footer ***/

.footer {
    color: #D49E3A;
    background-color: #A37B16;
}
.container-fluid.footer {
    background-color: #0b8bb3 !important;
}

    .footer .btn.btn-link {
        display: block;
        margin-bottom: 5px;
        padding: 0;
        text-align: left;
        color: #B0B9AE;
        font-weight: normal;
        text-transform: capitalize;
        transition: .3s;
    }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            color: var(--light);
            letter-spacing: 1px;
            box-shadow: none;
        }
/* Make only the contact p tags white */
.footer-contact p {
    color: #B0B9AE;
}

    /* Optional: make icons white too (if not already) */
    .footer-contact p i {
        color: #ffffff;
    }

.copyright {
    color: #D49E3A;
    background-color: #FCAF00;
}

.copyright {
    /*background: #545151;*/
    background: #b1a705;
}
.container-fluid.copyright {
    background-color: #0482a9 !important;
}

    .copyright a:hover {
        color: var(--primary) !important;
    }

/* new css */
.bg-dark {
    /*background-color: #333333 !important;*/
    background-color: #0b8bb3 !important;
}

.bg-primary {
    background-color: #0b8bb3 !important;
}

.text-primary {
    color: /*#0b8bb3*/ #D49E3A !important;
}

    .text-primary:hover {
        color: /*#D49E3A*/ #0b8bb3 !important;
    }

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    background-color: #0b8bb3 /*#D49E3A*/;
    border-color: #0b8bb3 /*#D49E3A*/;
}

.btn-primary {
    background-color: #D49E3A /**/;
    border-color: #D49E3A /*#0b8bb3*/;
}

    .btn-primary:hover {
        background-color: #0b8bb3 /*#D49E3A*/;
        border-color: #0b8bb3 /*#D49E3A*/;
    }

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #0b8bb3;
    border: 15px solid #0b8bb3;
}




.navbar .navbar-nav .nav-link {
    color: #D49E3A;
    text-transform: uppercase;
    font-size: 17px;
    font-weight: 1000;
    transition: all ease-in-out 0.2s;
}

    .navbar .navbar-nav .nav-link:hover {
        color: #D49E3A;
        transition: all ease-in-out 0.2s;
        font-weight: 600; /* Bold on hover */
        font-size: 17px; /* Ensure size stays the same on hover */
        padding: 25px 0; /* Ensure padding stays same on hover */
        border: none; /* Prevent any border changes if uncommented previously */
        /*border-bottom: 2px solid #D49E3A;*/
    }

    .navbar .navbar-nav .nav-link.active {
        color: #D49E3A;
        font-weight: 700; /* Bold on hover */
        font-size: 19px; /* Ensure size stays the same on hover */
        padding: 25px 0; /* Ensure padding stays same on hover */
        border: none; /* Prevent any border changes if uncommented previously */
    }

.text-white {
    color: #ffffff !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.owl-item.center .testimonial-item, .testimonial-item:hover {
    background: #D49E3A;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: #0b8bb3;
}

.service-text:hover h5 {
    color: #D49E3A !important;
}

.owl-item .testimonial-item, .testimonial-item {
    border: 1px solid #0b8bb3;
}

.owl-item.center .testimonial-item, .testimonial-item {
    background: #ffffff;
    text-align: center;
    font-weight: 500;
}

    .owl-item.center .testimonial-item, .testimonial-item:hover {
        background: #0b8bb3;
        text-align: center;
    }

    .testimonial-item img {
        margin: auto;
    }

.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next {
    color: #0b8bb3;
}

    .testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover {
        background: #D49E3A;
    }

.custom_contact, .custom_contact:hover {
    color: #ffffff;
}

.hero-slide {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-inner {
    max-width: 800px;
    padding: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-sub-title {
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-slide h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.2;
}

.default-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.white-btn {
    background-color: #ffffff;
    color: #212529;
    border: 2px solid #ffffff;
}

    .white-btn:hover {
        background-color: transparent;
        color: #ffffff;
        transform: translateY(-2px);
    }

.btn-arrow::after {
    content: "→";
    margin-left: 0.75rem;
    transition: all 0.3s ease;
}

.white-btn:hover .btn-arrow::after {
    transform: translateX(5px);
}

.carousel-inner, .carousel-item {
    height: 100vh;
    width: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0.8;
}
/*.creative-card {
    border-radius: 20px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

    .creative-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

.creative-bg-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 255, 123, 0.1));
    border-radius: 50%;
    animation: pulse 6s infinite ease-in-out;
    z-index: 0;
}

.creative-title {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(90deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.title-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

.title-highlight {
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    z-index: -2;
    transform: skew(-5deg);
    transition: all 0.3s ease;
}

.creative-card:hover .title-highlight {
    background: rgba(255, 255, 255, 0.4);
    transform: skew(0deg);
}

.title-flow-line {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #007bff, transparent);
    border-radius: 2px;
    animation: flowLine 3s infinite ease-in-out;
}

.description-wrapper {
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.creative-text {
    line-height: 1.7;
    position: relative;
    color: #444;
    transition: color 0.3s ease;
    margin: 0;
}

.black-shade-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.5) );
    border-radius: 12px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.creative-card:hover .black-shade-effect {
    opacity: 0.5;
}

.creative-card:hover .creative-text {
    color: #222;
}

.btn-creative {
    border-radius: 25px;
    padding: 12px 25px;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-creative:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .btn-creative:hover:before {
        width: 200px;
        height: 200px;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes flowLine {
    0% {
        width: 60px;
    }

    50% {
        width: 100px;
    }

    100% {
        width: 60px;
    }
}

.z-1 {
    z-index: 1;
}

.service-item {
    transition: transform 0.3s ease;
}

    .service-item:hover {
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }

.service-text {
    background-image: linear-gradient(to bottom, #f9f9f9, #f2f2f2);
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .service-text:hover {
        background-image: linear-gradient(to bottom, #e6e6e6, #d9d9d9);
    }

.btn-square {
    transition: transform 0.3s ease;
}

    .btn-square:hover {
        transform: scale(1.1);
    }

.service-description {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.service-text {
    position: relative;
    overflow: hidden;
}

    .service-text::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at center, transparent 0%, transparent 50%, #007bff 50%, #007bff 100%);
        background-position: 50% 50%;
        background-size: 200% 200%;
        opacity: 0;
        transition: opacity 0.3s, background-position 0.3s;
    }

    .service-text:hover::after {
        opacity: 0.2;
        background-position: 50% 100%;
    }

.service-text {
    height: 300px;
}

@media (max-width: 768px) {
    .service-text {
        height: 250px;
    }
}*/
.privacy-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.updated-date {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #007bff;
    font-size: 20px;
}

p, li {
    color: #555;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.explained {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
}

.explained-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
}

.add-z-index {
    position: relative;
    z-index: 2;
}
/*Technology*/
/*Technology Main container*/
.technology-main {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px; /* Slightly reduced height */
    position: relative;
    opacity: 1;
    padding: 50px 0; /* Keeps space but lessens height */
}

    /* Background image with transparency */
    .technology-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1; /* Ensures background is behind content */
        background-image: url('/uploads/lines-of-html-codes.jpg'); /* Correct path */
        background-repeat: no-repeat;
        background-size: cover;
        filter: none;
    }

/* Card with transparency */
.tech-card {
    background: rgba(255, 255, 255, 0.15); /* More transparent */
    border-radius: 15px;
    color: white;
    padding: 25px; /* Reduced padding for compact cards */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: auto; /* Adjust height dynamically */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    /* Card Hover Effect */
    .tech-card:hover {
        transform: translateY(-10px);
        color: white;
    }

/* Title */
.tech-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px; /* Reduced margin */
    text-align: center;
}

/* Tech Item */
.tech-item {
    display: flex;
    align-items: center;
    margin: 10px 0; /* Reduced margin */
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .tech-item:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(5px);
        color: #D49E3A;
    }

.tech-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.frontend-icon {
    color: #e91e63;
}

.backend-icon {
    color: #2196f3;
}
/*Industries Start*/
/* Industries Section */
.container-xxl.pt-5 {
    padding-top: 50px;
}

.text-center {
    text-align: center;
}

.display-5 {
    font-size: 2.5rem;
    font-weight: 700;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.card-img-custom {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-custom {
    transform: scale(1.1);
}

.card h5 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-top: 1rem;
}

/* Card Hover Effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

/* To fix WOW.js blinking: remove any scale/transform before the animation */
/*.wow {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}*/

    /* When animated with fadeInUp */
    /*.wow.fadeInUp {
        opacity: 1;
        visibility: visible;
        animation: fadeInUp 1s ease-out forwards;
    }*/

/*@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}*/

/* Responsive Layout */
@media (max-width: 768px) {
    .col-md-3 {
        max-width: 45%;
    }
}

@media (max-width: 576px) {
    .col-md-3 {
        max-width: 100%;
    }
}

/*Industries End*/
/*Seak Pik Journey Start*/
/* Sneak Pik Journey Start */
.feature-item {
    transition: all 0.3s ease;
    background: #0b8bb3;
    color: white;
    padding: 20px; /* Add padding to give some space inside the card */
    border-radius: 10px; /* Rounded corners for the feature item */
}

    .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Smooth box-shadow effect */
        color: white;
    }
.text-white {
    color: white;
}
/* Add transition for box-shadow and transform for smooth hover effect */
.feature-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Add padding for the button */
}
.counter-number + p { /* This targets the next p tag following the counter-number */
    color: white; /* Ensures "Happy Clients" text is white */
}

.counter-number {
    font-weight: bold;
    color: white;
}

.feature-row {
    margin-bottom: 40px;
}
/* Sneak Pik Journey End */

/*Sneak Pik Journey End*/

/*Get a quate*/
.help-image {
    position: relative;
    display: flex;
    justify-content: center;
}

    .help-image img {
        max-width: 500px; /* Adjust size */
        /*opacity: 0.8;*/
        max-height:550px;
        animation: fadeIn 2s ease-in-out;
    }
/* Ensure the heading fits on a single line */
.help-heading {
    font-size: 28px; /* Adjust font size */
    white-space: nowrap; /* Prevents text from wrapping */
    overflow: hidden; /* Hides overflow if needed */
    text-overflow: ellipsis; /* Adds "..." if text overflows */
    max-width: 100%; /* Ensures it fits within the container */
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*---------------------------------------*/
.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.service-title {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.service-description {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
}

.service-content {
    font-size: 1rem;
    line-height: 1.6;
}

/* Medicaid Plans Section - Compact Style */
.medicaid-section {
    padding: 30px 0;
}

.medicaid-heading {
    margin-bottom: 30px !important;
}

    .medicaid-heading h1 {
        color: #D49E3A !important;
        font-size: 2rem;
        margin-bottom: 15px;
    }

.medicaid-card {
    transition: all 0.3s ease;
    border-radius: 10px !important;
    border: 2px solid #D49E3A !important; /* Golden border */
    padding: 15px !important; /* More compact padding */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff !important;
}

    .medicaid-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.medicaid-title {
    color: #0b8bb3 !important;
    font-size: 1.1rem;
    margin-bottom: 5px !important; /* Tighter spacing */
}

.medicaid-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 10px !important;
    font-weight: 500;
}

.medicaid-image-container {
    width: 120px; /* Fixed width */
    height: 80px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px !important; /* Centered with bottom margin */
    border-radius: 8px; /* Matching rounded corners */
    overflow: hidden; /* Ensures image stays within rounded border */
    border: 1px solid rgba(212, 158, 58, 0.3); /* Subtle golden border */
    padding: 5px; /* Small padding around image */
    background: #fff;
}

.medicaid-image {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensures entire image is visible */
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-details {
        flex-direction: column;
        text-align: center;
    }
}