/*** 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 ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

@media (max-width: 576px) {
    .back-to-top {
        width: 35px;
        height: 35px;
        right: 15px;
        bottom: 15px;
    }
}

.btn {
    text-transform: uppercase;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-primary:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-dark {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-primary);
    color: var(--bs-dark) !important;
}



/*** Topbar Start ***/

.search-btn {
    position: relative;
    width: 100%;
    padding: 0 0 0 25px;
}

.search-btn .form-group {
    width: 100%;
}

.search-btn button {
    position: absolute;
    right: 25px;
}

@media (max-width: 992px) {
    .search-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
    }

    .search-btn {
        display: none;
    }

    .topbar-info {
        flex-direction: column;
    }

    .topbar-info a {
        padding: 0 0 10px 0;
    }

    .topbar-icon {
        padding: 0 0 10px 0;
    }
}

@media (max-width: 576px) {
    .topbar-top {
        display: none;
    }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 15px;
    color: var(--bs-white);
    font-weight: 500;
    font-size: 16px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 5px 12px;
    border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/

/* Ensure dropdown items are dark on yellow background */
.dropdown-menu.bg-primary .dropdown-item {
    color: #000000 !important;
    font-weight: 500;
}

.dropdown-menu.bg-primary .dropdown-item:hover,
.dropdown-menu.bg-primary .dropdown-item.active {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    padding: 5px 0;
    transition: 0.3s;
}


.brand-text-innovative {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-text-innovative .main-name {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    color: #ffd700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-text-innovative .sub-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.transparent-logo-header {
    height: 80px;
    width: auto;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
    transition: 0.3s;
}

.navbar-brand-custom:hover .transparent-logo-header {
    transform: scale(1.1);
}

.footer-logo-custom {
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
}

@media (max-width: 576px) {
    .navbar-brand-custom {
        padding: 5px 15px;
        gap: 10px;
    }

    .brand-text-innovative .main-name {
        font-size: 18px;
    }

    .brand-text-innovative .sub-name {
        font-size: 9px;
    }

    .transparent-logo-header {
        height: 50px;
    }
}





/*** Carousel Start ***/

.carousel-item {
    position: relative;
    height: 700px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 30px 30px 0;
    transition: .5s;
    opacity: 1;
}


.carousel-control-next {
    width: 80px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 30px 0 0 30px;
    transition: .5s;
    opacity: 1;
}

#carouselId .carousel-indicators li {
    width: 20px;
    height: 20px;
    background: var(--bs-dark);
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    margin: 0 8px 20px 8px;
}

@media (max-width: 576px) {
    #carouselId .carousel-indicators li {
        width: 12px;
        height: 12px;
        margin: 0 5px 15px 5px;
    }
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary) !important;
}

@media (max-width: 768px) {
    .carousel-item {
        width: 100%;
        height: 400px;
    }

    .carousel-item img {
        height: 400px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-indian-1.png) center center no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

/*** Carousel End ***/


/*** About Start ***/

.about-img {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px;
    overflow: hidden;
}

.about-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.about-img::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.rotate-left {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    left: -10%;
    rotate: 25deg;
    z-index: 2;
}

.rotate-right {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: -10%;
    rotate: -25deg;
    z-index: 2;
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.experiences {
    width: 160px;
    height: 200px;
    position: absolute;
    top: -0;
    right: 0;
    padding: 35px 35px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    animation: mymove 5s infinite;
    animation-timing-function: ease-in-out;
}

@keyframes mymove {
    from {
        top: -202px;
    }

    to {
        top: 102%;
    }
}

/*** About End ***/


/*** Services Start ***/
.services-inner-icon {
    width: 130px;
    height: 130px;
    background: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    position: relative;

}

.services-inner-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 62px;
    top: 50%;
    left: 50%;
    transition: .5s;
}

.services-item:hover .services-inner-icon::after {
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    background: var(--bs-primary);
    color: var(--bs-dark);

}

.services-item {
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.services-item h4,
.services-item p {
    flex-grow: 1;
}

.services-item i {
    text-align: center;
    transition: .5s;
}

.services-item:hover i {
    color: var(--bs-dark) !important;
    z-index: 1;
    rotate: 360deg;
}

.services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px;
    overflow: hidden;
}

.project-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.project-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.project-item img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item a {
    position: absolute;
    padding: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
}

.project-item:hover a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    opacity: 1;

}


/*** prohect Start ***/


/*** Blog Start ***/

.blog-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.blog-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bs-light);
    border-radius: 10px;
    overflow: hidden;
}

.blog-item img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.blog-item .rounded-bottom {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 0 !important;
}

.blog-item .px-4.pb-0 {
    flex: 1 1 auto;
    padding-bottom: 20px !important;
}

.blog-item h4 {
    height: 3.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.blog-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-item .blog-btn {
    margin-top: auto;
}

.blog-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    left: 0;
    border: 0;
    border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    right: 0;
    border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
    box-shadow: inset 0 0 0 0 #000000;
    transition: .5s;
}

.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 #000000;
    color: var(--bs-primary) !important;
}

/*** Blog End ***/


/*** Pricing Start ***/
.pricing-item {
    transition: .5s;

}

.pricing-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    margin: -20px 0 20px 0;
}

.pricing-label {
    border-bottom: 20px solid var(--bs-light);
    border-radius: 0 0 300px 300px;
    transition: .5s;
}

.pricing-item:hover .pricing-label {
    border-color: rgba(0, 0, 0, .5);
}

.pricing-item:hover .pricing-label.pricing-featured {
    border-color: rgba(255, 255, 255, .5);
}


/*** Pricing End ***/


/*** Call To Action start ***/

.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-indian-2.png) center center no-repeat;
    background-size: cover;
}

/*** Call To Action End ***/


/*** Team Start ***/
.team-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .15);
}

.team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-content {
    padding: 25px;
    transition: .5s;
    background: var(--bs-primary) !important;
    position: relative;
    z-index: 2;
}

.team-item .team-content span {
    color: var(--bs-dark);
    font-size: 22px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.team-item .team-content p {
    color: #444;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.team-item:hover .team-content {
    background: var(--bs-dark) !important;
}

.team-item:hover .team-content span {
    color: var(--bs-primary);
}

.team-item:hover .team-content p {
    color: #fff;
    opacity: 0.8;
}

/*** Team End ***/

/*** Founder Card Start ***/
.founder-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    border: 8px solid var(--bs-primary);
    /* Framing effect */
    padding: 5px;
    /* Reduced space for the frame */
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--bs-dark);
    /* Frame color change on hover */
}

.founder-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Inner rounding for the image */
}

.founder-social {
    position: absolute;
    top: 30px;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: 0.5s;
    z-index: 10;
}

.founder-card:hover .founder-social {
    right: 30px;
}

.founder-social .btn-social {
    width: 45px;
    height: 45px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.founder-social .btn-social:hover {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.founder-card-content {
    background: var(--bs-dark);
    padding: 25px 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: -5px;
    /* Match the 5px card padding */
    margin-top: 5px;
    /* Reduced space below the image */
}

.founder-card-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
    transition: 0.6s ease;
}

.founder-card:hover .founder-card-content::before {
    left: 100%;
}

.founder-card-content h3 {
    color: var(--bs-dark);
    font-size: 24px;
    /* Adjusted size for frame */
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: 0.6s;
    position: relative;
    z-index: 2;
}

.founder-card-content p {
    color: var(--bs-secondary);
    font-size: 14px;
    /* Adjusted size */
    margin-bottom: 0;
    font-weight: 500;
    transition: 0.6s;
    position: relative;
    z-index: 2;
}

.founder-card:hover .founder-card-content h3 {
    color: var(--bs-primary);
}

.founder-card:hover .founder-card-content p {
    color: #999;
}

/*** Founder Card End ***/

/*** testimonial Start ***/


.testimonial {
    position: relative !important;
    padding: 100px 0 !important;
    /* More padding to prevent viewport clash */
}

.testimonial-carousel {
    position: relative !important;
    padding: 0 60px 60px 60px !important;
    /* Side padding for arrows, bottom for dots */
}

/* Side navigation arrows */
.testimonial-carousel .owl-nav {
    position: absolute !important;
    width: 100% !important;
    top: 50% !important;
    left: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    z-index: 100 !important;
    pointer-events: none !important;
}



.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    pointer-events: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    background: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
    font-size: 20px !important;
    border-radius: 5px !important;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1) !important;
    transition: .5s !important;
    cursor: pointer !important;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

/* Centered pagination dots */
.testimonial-carousel .owl-dots {
    position: absolute !important;
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    z-index: 100 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.testimonial-carousel .owl-dot {
    display: inline-block !important;
    margin-right: 8px !important;
    width: 10px !important;
    height: 10px !important;
    background: #495057 !important;
    border-radius: 50% !important;
    transition: .5s !important;
    cursor: pointer !important;
}

.testimonial-carousel .owl-dot.active {
    width: 25px !important;
    background: var(--bs-primary) !important;
    border-radius: 10px !important;
}

/*** testimonial End ***/

.testimonial-content {
    background: #f8f9fa !important;
    position: relative !important;
    border: none !important;
    z-index: 1 !important;
}

.testimonial-content::before {
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: 45px;
    bottom: -15px;
    transform: rotate(45deg);
    z-index: -1;
    background: #f8f9fa;
}

.testimonial-img-custom {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover !important;
    border: 4px solid var(--bs-primary) !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
    z-index: 5 !important;
    position: relative !important;
}

.testimonial-initial {
    width: 90px !important;
    height: 90px !important;
    background-color: var(--bs-primary) !important;
    color: var(--bs-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
    z-index: 5 !important;
    position: relative !important;
}



/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
    transition: .5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, .7);
    margin-top: 6rem;
}

.footer-item,
.footer-item a {
    color: rgba(255, 255, 255, .7);
    text-transform: capitalize;
}

/*** Footer End ***/


/*** Copywright Start ***/

.copyright .copyright-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright .copyright-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Copywright End ***/

/*** Brand Carousel Start ***/
.brand-carousel-section {
    padding: 10px 0;
    overflow: hidden;
    /* background: var(--bs-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
}

.brand-carousel-container {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.brand-carousel-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
    animation: scroll-left-to-right 60s linear infinite;
}

.brand-carousel-content img {
    height: 60px;
    width: auto;
    opacity: 1;
    transition: 0.3s;
    object-fit: contain;
}

.brand-carousel-content img:hover {
    transform: scale(1.1);
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover */
.brand-carousel-container:hover .brand-carousel-content {
    animation-play-state: paused;
}

.contact-link a {
    word-break: break-all;
    display: block;
}

/*** Brand Carousel End ***/

/*** Recent Post Styling Start ***/
.recent-posts-wrapper {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.section-title-small {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px !important;
    font-weight: 700;
    color: var(--bs-dark);
}

.section-title-small::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--bs-primary);
}

.recent-post-item {
    transition: .5s;
    padding: 10px;
    border-radius: 8px;
}

.recent-post-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.recent-post-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: .3s;
    text-decoration: none;
}

.recent-post-link:hover {
    color: var(--bs-primary) !important;
}

.recent-post-item small {
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

/*** Mobile Responsive Adjustments ***/
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--bs-dark);
        margin-top: 10px;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav {
        flex-direction: column !important;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .brand-text-innovative .main-name {
        font-size: 20px;
    }

    .brand-text-innovative .sub-name {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .brand-carousel-content {
        gap: 30px;
        padding-right: 30px;
    }
    
    .brand-carousel-content img {
        height: 50px;
    }
    
    .display-1 {
        font-size: 2.2rem;
    }
    
    .display-2 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
    
    .blog-carousel .owl-nav .owl-prev,
    .blog-carousel .owl-nav .owl-next {
        width: 50px;
        height: 35px;
        top: -40px;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .brand-carousel-content {
        gap: 20px;
        padding-right: 20px;
    }
    
    .brand-carousel-content img {
        height: 45px;
    }

    .about-item h1 {
        font-size: 1.4rem !important;
    }

    .about-item p {
        font-size: 0.95rem !important;
    }
    
    .experiences {
        width: 100px;
        height: 130px;
        padding: 15px;
    }
    
    .experiences h1 {
        font-size: 2rem;
    }
    
    .experiences h6 {
        font-size: 0.7rem;
    }
    
    .blog-carousel .owl-nav,
    .testimonial-carousel .owl-nav {
        display: none !important;
    }

    .carousel-item {
        height: 380px;
    }

    .carousel-item img {
        height: 380px;
    }

    .carousel-caption {
        padding-top: 80px !important;
        align-items: flex-start !important;
    }

    .carousel-content h4 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
        letter-spacing: 1px;
    }

    .carousel-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .carousel-content .btn {
        padding: 10px 25px !important;
        font-size: 14px !important;
    }

    .team-item img {
        height: auto !important;
        object-fit: contain !important;
        background: #f8f9fa;
    }
}