
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/*** Global Body Font ***/
body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

/*** Spinner Start ***/
/*** 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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-light) !important;
}

.btn.btn-dark {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-dark:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}

.btn.btn-light {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-family: 'Roboto', sans-serif;
    border: none;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-white) !important;
    color: var(--bs-dark) !important;
}
/*** Topbar Start ***/
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-dark) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/

/*** Navbar ***/
.sticky-top,
.sticky-top .container {
    transition: 0.5s !important;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
    color: var(--bs-dark) !important;
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px !important;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border: 0px solid var(--bs-primary);
    transition: 0.5s;
}

.navbar .navbar-nav .nav-item::before {
    top: 0;
    left: 0;
}
.navbar .navbar-nav .nav-item::after {
    bottom: 0;
    right: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
    width: 100%;
    border-width: 1px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        margin-top: 20px !important;
        transition: .5s;
        opacity: 0;
        z-index: 9;
    }
}

@media (max-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        margin-top: 15px !important;
        transition: 0.5s;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav .nav-item.nav-link {
        margin: 15px 0 !important;
    }

}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    margin-top: 20px !important;
    transition: .5s;
    opacity: 1;
}

.navbar .navbar-toggler {
    padding: 8px 15px;
    color: var(--bs-dark);
    background: var(--bs-primary);
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, .6);
}
/*** Mobile Slide-In Overlay Menu ***/
@media (max-width: 991px) {
    /* Hide Bootstrap's default collapse completely on mobile */
    .navbar-collapse,
    #navbarCollapse {
        display: none !important;
    }

    /* Overlay panel - completely independent of Bootstrap */
    #mobileMenuOverlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        z-index: 99999;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(0,0,0,0.4);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    #mobileMenuOverlay.open {
        transform: translateX(0);
    }

    /* Backdrop */
    #mobileMenuBackdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 99998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    #mobileMenuBackdrop.open {
        opacity: 1;
        visibility: visible;
    }

    /* Close button */
    #mobileMenuClose {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        border: 2px solid rgba(68, 210, 246, 0.5);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
    }

    #mobileMenuClose:hover {
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        transform: rotate(90deg);
        box-shadow: 0 0 15px rgba(68, 210, 246, 0.4);
    }

    #mobileMenuClose::before,
    #mobileMenuClose::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
    }

    #mobileMenuClose::before { transform: rotate(45deg); }
    #mobileMenuClose::after { transform: rotate(-45deg); }

    /* Nav links list */
    #mobileMenuOverlay .mobile-nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    #mobileMenuOverlay .mobile-nav-list li {
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    #mobileMenuOverlay.open .mobile-nav-list li {
        opacity: 1;
        transform: translateX(0);
    }

    #mobileMenuOverlay.open .mobile-nav-list li:nth-child(1) { transition-delay: 0.08s; }
    #mobileMenuOverlay.open .mobile-nav-list li:nth-child(2) { transition-delay: 0.14s; }
    #mobileMenuOverlay.open .mobile-nav-list li:nth-child(3) { transition-delay: 0.20s; }
    #mobileMenuOverlay.open .mobile-nav-list li:nth-child(4) { transition-delay: 0.26s; }
    #mobileMenuOverlay.open .mobile-nav-list li:nth-child(5) { transition-delay: 0.32s; }

    #mobileMenuOverlay .mobile-nav-list li a {
        display: block;
        color: #ffffff;
        font-size: 1.15rem;
        padding: 14px 8px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        text-decoration: none;
        letter-spacing: 0.3px;
        position: relative;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    #mobileMenuOverlay .mobile-nav-list li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 60%;
        background: var(--bs-primary);
        border-radius: 0 3px 3px 0;
        transition: width 0.3s ease;
    }

    #mobileMenuOverlay .mobile-nav-list li a:hover,
    #mobileMenuOverlay .mobile-nav-list li a.active {
        color: #44d2f6;
        padding-left: 18px;
    }

    #mobileMenuOverlay .mobile-nav-list li a:hover::before,
    #mobileMenuOverlay .mobile-nav-list li a.active::before {
        width: 4px;
    }

    /* CTA button */
    #mobileMenuOverlay .mobile-menu-cta {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    #mobileMenuOverlay .mobile-menu-cta a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
        background: var(--bs-primary);
        color: #ffffff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(68, 210, 246, 0.3);
        transition: background 0.3s ease;
    }

    #mobileMenuOverlay .mobile-menu-cta a:hover {
        background: #2bb8d9;
    }

    /* Hamburger */
    .navbar-toggler {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        position: relative;
        z-index: 100000;
        transition: transform 0.3s ease;
    }

    .navbar-toggler:active {
        transform: scale(0.9);
    }
}
/*** Mobile Slide-In Overlay Menu End ***/

/*** Navbar End ***/

/*** Carousel Header Start ***/
.header-carousel .header-carousel-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.owl-prev,
.owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 20px;
    border-radius: 40px;
    background: var(--bs-primary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-white) !important;
}

.header-carousel .header-carousel-item-img-1,
.header-carousel .header-carousel-item-img-2,
.header-carousel .header-carousel-item-img-3 {
    position: relative;
    overflow: hidden;
}

.header-carousel .header-carousel-item-img-1::before,
.header-carousel .header-carousel-item-img-2::before,
.header-carousel .header-carousel-item-img-3::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -300px;
    border-radius: 300px;
    border: 100px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -400px;}
    50%   {right: -200px;}
    75%   {top: -200px;}
    100%  {top: -400px;}
}

.header-carousel .header-carousel-item-img-1::after,
.header-carousel .header-carousel-item-img-2::after,
.header-carousel .header-carousel-item-img-3::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 70px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}

@keyframes RotateMoveRight {
    0%   {left: 0px;}
    50%   {left: 70px;}
    100%  {left: 0px;}
}

.header-carousel .header-carousel-item::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 1200px;
    top: -150px;
    left: -265px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}

@keyframes RotateMoveLeft {
    0%   {left: -240px;}
    50%   {left: -300px;}
    100%  {left: -240px;}
}

.header-carousel .header-carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2 !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 9;
}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item .carousel-caption {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0 10px;
    }
    .header-carousel-item img {
        height: 700px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        top: 55px !important;
    }

    .owl-prev {
        left: 65%;
    }

    .header-carousel .header-carousel-item .carousel-caption .display-1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .header-carousel .header-carousel-item .carousel-caption .fs-5 {
        font-size: 1rem !important;
        line-height: 1.5;
    }

    .header-carousel .header-carousel-item .carousel-caption .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding: 0 12px !important;
        top: 0;
        display: flex;
        align-items: center;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-inner {
        padding: 10px 8px !important;
    }

    .header-carousel .header-carousel-item .carousel-caption .display-1 {
        font-size: 1.6rem !important;
        line-height: 1.25;
        margin-bottom: 12px !important;
    }

    .header-carousel .header-carousel-item .carousel-caption .fs-5 {
        font-size: 0.85rem !important;
        line-height: 1.45;
        margin-bottom: 16px !important;
    }

    .header-carousel .header-carousel-item .carousel-caption .btn {
        padding: 8px 16px !important;
        font-size: 0.8rem;
        margin-bottom: 8px !important;
        margin-right: 6px !important;
    }

    .header-carousel-item img {
        height: 550px;
        object-fit: cover;
    }

    .owl-prev,
    .owl-next {
        width: 40px;
        height: 40px;
        top: 50px !important;
    }

    .owl-prev {
        left: auto;
        right: 70px;
    }

    .owl-next {
        right: 15px;
    }
}

/*** About Customer Mobile Fix ***/
@media (max-width: 576px) {
    .about-customer {
        display: flex !important;
        position: relative !important;
        align-items: center;
        justify-content: center;
        min-height: auto !important;
        height: auto !important;
        gap: 0;
    }

    .about-customer .btn-xl-square {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        width: 50px !important;
        height: 50px !important;
        margin-left: -10px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

    .about-customer .btn-xl-square:first-child {
        margin-left: 0;
    }

    .about-customer .position-absolute.text-dark {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        margin-left: 12px;
    }

    .about-customer .position-absolute.text-dark p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}
/*** Header Carousel End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

.bg-breadcrumb .bg-breadcrumb-single {
    position: absolute;
    width: 500px;
    height: 1200px;
    top: 0px;
    left: 0;
    margin-left: 30px;
    transform: rotate(-30deg);
    background: var(--bs-dark);
    animation: RotateMoveLeft 5s linear infinite;
    opacity: 0.7;
    z-index: 2 !important;
}


.bg-breadcrumb::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    border-radius: 200px;
    border: 80px solid rgba(68, 210, 246, 0.2);
    animation: RotateMoveCircle 10s linear infinite;
    background: transparent;
    z-index: 2 !important;
}

@keyframes RotateMoveCircle {
    0% {top: -200px;}
    50%   {right: -100px;}
    75%   {top: -100px;}
    100%  {top: -200px;}
}


.bg-breadcrumb::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 1200px;
    top: -150px;
    left: 0;
    margin-left: 160px;
    transform: rotate(-30deg);
    background: rgba(68, 210, 246, 0.2);
    animation: RotateMoveRight 5s linear infinite;
    z-index: 2 !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .text {
    position: relative;
}

.about .text::after {
    content: "";
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bs-primary);
}
/*** About End ***/

/*** Service Start ***/
.service .service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.3);
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item .service-img::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.service .service-item:hover .service-img::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content {
    position: relative;
}

.service .service-item .service-content::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    width: 100% !important;
    height: 100% !important;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover .service-content .service-content-inner a.h4 {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}
/*** Service End ***/

/*** Project Start ***/
.project .project-carousel.owl-carousel {
    height: 100%;
}

.project .project-carousel .project-item {
    position: relative;
    overflow: hidden;
}

.project .project-carousel .project-item .project-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.project .project-carousel .project-item .project-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(68, 210, 246, 0.4);
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img::after {
    height: 100%;
}

.project .project-carousel .project-item .project-img img {
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-img img {
    transform: scale(1.2);
}

.project .project-carousel .project-item .project-content {
    position: relative;
    width: 75%;
    height: 100%;
    bottom: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.project .project-carousel .project-item .project-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px !important;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project .project-carousel .project-item .project-content .project-content-inner {
    position: relative;
    z-index: 2;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner p,
.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4,
.project .project-carousel .project-item:hover .project-content .project-content-inner .project-icon i {
    color: var(--bs-white) !important;
    transition: 0.5s;
}

.project .project-carousel .project-item:hover .project-content .project-content-inner a.h4:hover {
    color: var(--bs-primary) !important;
}

.project .project-carousel .project-item:hover .project-content::after {
    height: 100%;
}

.project-carousel .owl-dots {
    position: absolute;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    background: var(--bs-dark);
    transition: 0.5s;
}

.project-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 40px;
    border: 8px solid var(--bs-primary);
}
/*** Project End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item-post a {
    transition: 0.5s;
}

.footer .footer-item-post a:hover {
    color: var(--bs-primary) !important;
}

.footer .footer-item-post .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item-post .footer-btn a:hover {
    color: var(--bs-dark);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

/*** Contact Section Image ***/
.contact-section-img {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-section-img img {
    transition: 0.5s;
}

.contact-section-img:hover img {
    transform: scale(1.05);
}

/*** Form Status Messages ***/
.form-status .alert {
    border-radius: 10px;
    font-size: 0.95rem;
    padding: 15px 20px;
    margin-top: 10px;
}

.form-status .alert-success {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: #198754;
}

.form-status .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

/*** Footer Logo ***/
.footer-logo {
    transition: 0.3s;
    opacity: 0.9;
}

.footer-logo:hover {
    opacity: 1;
}

/*** Attractive Text Highlights ***/
.about-description {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #444;
    letter-spacing: 0.01em;
}

.about-description strong {
    color: #1a1a2e;
    font-weight: 700;
}

.about-text-lead {
    font-weight: 700;
    font-size: 1.15em;
    background: linear-gradient(135deg, var(--bs-primary), #0f3460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    background: linear-gradient(120deg, rgba(68, 210, 246, 0.15) 0%, rgba(68, 210, 246, 0.08) 100%);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: #0a6d87;
    border-bottom: 2px solid rgba(68, 210, 246, 0.4);
    transition: all 0.3s ease;
}

.text-highlight:hover {
    background: linear-gradient(120deg, rgba(68, 210, 246, 0.25) 0%, rgba(68, 210, 246, 0.15) 100%);
    border-bottom-color: var(--bs-primary);
}

.text-highlight-secondary {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.text-highlight-secondary::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--bs-primary), rgba(68, 210, 246, 0.2));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.text-highlight-secondary:hover::after {
    transform: scaleX(1);
}

.contact-description {
    position: relative;
    padding-left: 20px !important;
    border-left: 3px solid var(--bs-primary);
}

/*** About Check Items ***/
.about-check-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(68, 210, 246, 0.06), rgba(68, 210, 246, 0.02));
    border-radius: 8px;
    font-weight: 500;
    color: #2c3e50;
    border: 1px solid rgba(68, 210, 246, 0.12);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.about-check-item:hover {
    background: linear-gradient(135deg, rgba(68, 210, 246, 0.12), rgba(68, 210, 246, 0.05));
    border-color: rgba(68, 210, 246, 0.25);
    transform: translateX(4px);
}

.about-check-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/*** Form Validation Styles ***/
.contact-form .form-control.is-invalid {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
    animation: fieldShake 0.4s ease;
}

@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

.field-error {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 6px;
    padding: 4px 8px;
    background: rgba(231, 76, 60, 0.06);
    border-radius: 4px;
    font-weight: 500;
    animation: fieldErrorSlide 0.3s ease;
}

@keyframes fieldErrorSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/*** Form Status Messages ***/
.form-status-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    margin-top: 12px;
    position: relative;
    animation: statusSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@keyframes statusSlideIn {
    from { opacity: 0; transform: translateY(15px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.form-status-message.form-status-fadeout {
    animation: statusFadeOut 0.5s ease forwards;
}

@keyframes statusFadeOut {
    to { opacity: 0; transform: translateY(-10px) scale(0.97); }
}

.form-status-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.08), rgba(39, 174, 96, 0.03));
    border: 1px solid rgba(39, 174, 96, 0.25);
    border-left: 4px solid #27ae60;
}

.form-status-error {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(231, 76, 60, 0.03));
    border: 1px solid rgba(231, 76, 60, 0.25);
    border-left: 4px solid #e74c3c;
}

.form-status-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.form-status-success .form-status-icon {
    background: rgba(39, 174, 96, 0.12);
    color: #27ae60;
}

.form-status-error .form-status-icon {
    background: rgba(231, 76, 60, 0.12);
    color: #e74c3c;
}

.form-status-content {
    flex: 1;
    min-width: 0;
}

.form-status-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
}

.form-status-success .form-status-title {
    color: #1e8449;
}

.form-status-error .form-status-title {
    color: #c0392b;
}

.form-status-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #555;
}

.form-status-text a {
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: underline;
}

.form-status-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.form-status-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #333;
}

/*** Button Loading State ***/
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.85;
}

.btn-loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.btn-success-flash {
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

/*** ======================================= ***/
/*** Tech Marquee Section (Homepage)         ***/
/*** ======================================= ***/
.tech-marquee-section {
    background: linear-gradient(135deg, #0a0f1c 0%, #111827 50%, #0f172a 100%);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    contain: layout style paint;
}

.tech-marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 210, 246, 0.5), transparent);
}

.tech-marquee-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 210, 246, 0.5), transparent);
}

.tech-marquee-header {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.tech-marquee-header h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.tech-marquee-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

/* Cross Marquee Container */
.marquee-cross-container {
    position: relative;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    overflow: hidden;
}

/* Individual diagonal strips */
.marquee-strip {
    position: relative;
    padding: 18px 0;
    white-space: nowrap;
    overflow: hidden;
    width: 130%;
    margin-left: -15%;
    border-radius: 8px;
    z-index: 1;
    contain: layout style;
}

/* Strip 1: tilts left */
.marquee-strip:nth-child(1) {
    transform: rotate(-3deg);
    background: #091E3E;
    border-top: 2px solid rgba(68, 210, 246, 0.5);
    border-bottom: 2px solid rgba(68, 210, 246, 0.5);
    box-shadow: 0 8px 40px rgba(68, 210, 246, 0.15);
    z-index: 2;
}

/* Strip 2: tilts right */
.marquee-strip:nth-child(2) {
    transform: rotate(3deg);
    background: #0B2347;
    border-top: 2px solid rgba(68, 210, 246, 0.35);
    border-bottom: 2px solid rgba(68, 210, 246, 0.35);
    box-shadow: 0 8px 40px rgba(68, 210, 246, 0.1);
    z-index: 1;
}

.marquee-wrapper {
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 3;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0a0f1c, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0a0f1c, transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.marquee-track.scroll-left {
    animation: marqueeScrollLeft 40s linear infinite;
}

.marquee-track.scroll-right {
    animation: marqueeScrollRight 40s linear infinite;
}

.marquee-track.scroll-left-slow {
    animation: marqueeScrollLeft 55s linear infinite;
}

.marquee-row {
    padding: 8px 0;
    overflow: hidden;
}

.marquee-row + .marquee-row {
    margin-top: 16px;
}

@keyframes marqueeScrollLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeScrollRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

.tech-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 20px 18px;
    background: rgba(68, 210, 246, 0.08);
    border: 1px solid rgba(68, 210, 246, 0.2);
    border-radius: 14px;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: default;
    flex-shrink: 0;
    position: relative;
}

.tech-icon-card:hover {
    background: rgba(68, 210, 246, 0.15);
    border-color: rgba(68, 210, 246, 0.4);
}

.tech-icon-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    opacity: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.tech-icon-card span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.tech-icon-card:hover span {
    color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
    .marquee-cross-container {
        height: 270px;
        gap: 24px;
    }
    .marquee-strip {
        padding: 14px 0;
    }
    .tech-icon-card {
        min-width: 100px;
        padding: 16px 14px;
    }
    .tech-icon-card img {
        width: 36px;
        height: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tech-marquee-section {
        padding: 30px 0;
    }
    .tech-marquee-header {
        margin-bottom: 20px;
    }
    .tech-marquee-header h3 {
        font-size: 1.2rem;
    }
    .tech-marquee-header h4 {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    .marquee-cross-container {
        height: 210px;
        gap: 20px;
    }
    .marquee-strip {
        padding: 10px 0;
        width: 140%;
        margin-left: -20%;
        border-radius: 6px;
    }
    .marquee-strip:nth-child(1) {
        transform: rotate(-2deg);
        border-width: 1px;
    }
    .marquee-strip:nth-child(2) {
        transform: rotate(2deg);
        border-width: 1px;
    }
    .marquee-track {
        gap: 12px;
    }
    .marquee-track.scroll-left {
        animation: marqueeScrollLeft 25s linear infinite;
    }
    .marquee-track.scroll-right {
        animation: marqueeScrollRight 25s linear infinite;
    }
    .tech-icon-card {
        min-width: 80px;
        padding: 10px 8px;
        border-radius: 10px;
    }
    .tech-icon-card img {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }
    .tech-icon-card span {
        font-size: 0.65rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .marquee-cross-container {
        height: 170px;
        gap: 14px;
    }
    .marquee-strip {
        padding: 8px 0;
        width: 160%;
        margin-left: -30%;
    }
    .marquee-strip:nth-child(1) { transform: rotate(-1.5deg); }
    .marquee-strip:nth-child(2) { transform: rotate(1.5deg); }
    .marquee-track {
        gap: 8px;
    }
    .tech-icon-card {
        min-width: 65px;
        padding: 8px 6px;
        border-radius: 8px;
    }
    .tech-icon-card img {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }
    .tech-icon-card span {
        font-size: 0.58rem;
        letter-spacing: 0;
    }
}

/*** ======================================= ***/
/*** Service Page Tech Stack Section         ***/
/*** ======================================= ***/
.tech-stack-section {
    background: linear-gradient(135deg, #0a0f1c 0%, #111827 50%, #0f172a 100%);
    padding: 45px 0;
    overflow: hidden;
    position: relative;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 210, 246, 0.4), transparent);
}

.tech-stack-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(68, 210, 246, 0.4), transparent);
}

.tech-stack-header {
    text-align: center;
    margin-bottom: 30px;
}

.tech-stack-header h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 6px;
}

.tech-stack-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 115px;
    padding: 20px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tech-stack-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(68, 210, 246, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-stack-item:hover::before {
    opacity: 1;
}

.tech-stack-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 35px rgba(68, 210, 246, 0.2), 0 0 20px rgba(68, 210, 246, 0.08);
}

.tech-stack-item img {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    opacity: 0.85;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.tech-stack-item:hover img {
    opacity: 1;
    transform: scale(1.18) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(68, 210, 246, 0.3));
}

.tech-stack-item span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.tech-stack-item:hover span {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
    .tech-stack-grid {
        gap: 10px;
    }
    .tech-stack-item {
        width: 90px;
        padding: 14px 8px;
    }
    .tech-stack-item img {
        width: 28px;
        height: 28px;
    }
}

/*** ======================================= ***/
/*** GSAP Animation Utility Classes          ***/
/*** ======================================= ***/
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

.gsap-highlight-sweep .text-highlight {
    background-size: 0% 100%;
    background-repeat: no-repeat;
}

.gsap-highlight-sweep .text-highlight.revealed {
    background-size: 100% 100%;
    transition: background-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*** Typing Animation ***/
.typing-container {
    position: relative;
}

.typing-container .typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--bs-primary);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: cursorBlink 0.7s step-end infinite;
}

.typing-container .typing-cursor.done {
    animation: cursorFadeOut 0.5s ease forwards;
    animation-delay: 1s;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes cursorFadeOut {
    to { opacity: 0; width: 0; margin: 0; }
}

.typing-char {
    opacity: 0;
    display: inline;
}

.typing-char.visible {
    opacity: 1;
}