:root {
    --primary: #2563eb;
    --secoundary:#FBB118;
    --primary-light: #93c5fd;
    --dark: #1e293b;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

body {
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    background-color: #fff;

    overflow-x: hidden;

}

p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/*** Spinner Start ***/
#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;
    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: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.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;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    padding: 12px 23px;
    border-radius: 0 30px 0px;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 125px;
    position: relative;
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 16%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--bs-dark);
    z-index: 1;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: 0;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-top .container {
        max-height: 80px;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-brand-2 {
        position: relative;
        overflow: hidden;
        width: 200px;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        z-index: 99;
    }

    .navbar-brand-2::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand-2::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Equal gap between nav items */
}

.navbar .navbar-nav .nav-item {
    flex: 0 0 auto;
    text-align: center;
    /* padding: 0; */
    border-right: 1px solid #ddd;
    padding-right: 20px;
    color: #333;
}

.navbar .navbar-nav .nav-item:last-child {
    border-right: none;
    padding-right: 0;
    /* optional: remove spacing as well */
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        height: 55px;
        margin-top: -9px;
        padding: 0 10px;
        top: -5px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: relative;
        overflow: hidden;
        padding: 18px 50px 40px 0;
        z-index: 99;
    }

    .navbar-brand::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 300px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-dark);
        transform: rotate(-18deg);
        z-index: -1;
    }

    .navbar-brand::after {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 5px;
        height: 600px;
        top: -200px;
        right: 18px;
        background: var(--bs-primary);
        transform: rotate(-18deg);
        z-index: -1;
    }
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/slider-bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Ensures the waves don't overflow */
}

/* Wave circles */
.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(187, 0, 0, 0.637);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation: waveFlow 6s linear infinite;
    opacity: 0;
}

.hero-section::after {
    animation-delay: 1.5s;
    /* Stagger the waves */
    width: 150px;
    height: 150px;
}

@keyframes waveFlow {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.2;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.hero-bg-half-1 {
    background-image: url(../img/sn-slider-1.avif);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(1);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../img/banners/sn-performance.jpeg);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(1);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 90%;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-3 {
    background-image: url(../img/banners/clientbanner2.jpeg);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(1);
    /* background-position: center right; */
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

/* Keep the original shape CSS but fix positioning issues */
.hero-shape-1 {
    background-color: var(--bs-primary);
    width: 100px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    transition: transform 0.5s ease-in-out;
}

.hero-shape-1:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
    transition: height 0.5s ease-in-out;
}

/* Add ring animation to shape */
.hero-shape-1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--bs-primary);
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1);
    z-index: -1;
}

.carousel-item.active .hero-shape-1::after {
    animation: shapeRingExpand 1.5s ease-out;
}

.hero-shape-2 {
    background-color: var(--bs-primary);
    width: 100px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    transition: transform 0.5s ease-in-out;
}

.hero-shape-2:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
    transition: height 0.5s ease-in-out;
}

/* Add ring animation to shape */
.hero-shape-2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--bs-primary);
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1);
    z-index: -1;
}

.carousel-item.active .hero-shape-2::after {
    animation: shapeRingExpand 1.5s ease-out;
}

/* Add shape animations for active slides */
.carousel-item.active .hero-shape-1,
.carousel-item.active .hero-shape-2 {
    animation: shapeSlideIn 0.8s forwards;
}

@keyframes shapeSlideIn {
    0% {
        transform: translateY(-50%) translateX(-20px) skew(-26deg, 0deg);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-50%) skew(-26deg, 0deg);
        opacity: 1;
    }
}

/* Ring expansion animation */
@keyframes shapeRingExpand {
    0% {
        opacity: 0.8;
        transform: scale(1);
        border-width: 3px;
    }

    70% {
        opacity: 0.3;
        border-width: 1px;
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
        border-width: 1px;
    }
}

/*** Carousel Header Styles ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.2); */
    display: flex;
    align-items: center;
    z-index: 9;
}

/* Animation for slide content */
.carousel-item.active .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.carousel-item.active .fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Keep shapes visible on mobile but with animation */
@media (max-width: 991px) {
    .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel-item {
        height: 700px;
    }

    .hero-bg-half-1,
    .hero-bg-half-2,
    .hero-bg-half-3 {
        width: 100%;
        clip-path: none;
        opacity: 0.3;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: block;
        width: 80px;
        left: 60%;
    }
}

/* Additional pulse animations for the center shapes */

/* Create multiple expanding rings for a more dramatic effect */
.hero-shape-1::before,
.hero-shape-2::before {
    z-index: 1;
    /* Ensure the inner part stays on top */
}

/* First ring (larger) */
.carousel-item .hero-shape-1::after,
.carousel-item .hero-shape-2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--bs-primary);
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transform: scale(1);
}

/* Second ring (medium) */
.carousel-item .hero-shape-1,
.carousel-item .hero-shape-2 {
    position: relative;
}

.carousel-item .hero-shape-1::before,
.carousel-item .hero-shape-2::before {
    z-index: 1;
}

/* Create a second ring with a pseudo-element on a wrapper */
.carousel-item.active .hero-shape-1,
.carousel-item.active .hero-shape-2 {
    position: relative;
}

.carousel-item.active .hero-shape-1::after,
.carousel-item.active .hero-shape-2::after {
    animation: ringExpand 1.5s ease-out;
}

/* Create a third ring with absolute positioning */
.carousel-item.active .hero-shape-1,
.carousel-item.active .hero-shape-2 {
    overflow: visible;
}

.carousel-item.active .hero-shape-1::before,
.carousel-item.active .hero-shape-2::before {
    animation: innerPulse 1.5s ease-out;
}

/* Ring expansion animation */
@keyframes ringExpand {
    0% {
        opacity: 0.8;
        transform: scale(1);
        border-width: 3px;
    }

    70% {
        opacity: 0.3;
        border-width: 1px;
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
        border-width: 1px;
    }
}

/* Inner pulse animation */
@keyframes innerPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Create multiple concentric rings with additional elements */
.hero-shape-wrapper {
    position: absolute;
    left: 54%;
    top: 0;
    width: 100px;
    height: 50%;
    z-index: 1;
}

.ring-1,
.ring-2,
.ring-3 {
    position: absolute;
    border: 2px solid var(--bs-primary);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
}

.carousel-item.active .ring-1 {
    animation: ringExpand 1.5s ease-out;
}

.carousel-item.active .ring-2 {
    animation: ringExpand 1.5s ease-out 0.3s;
}

.carousel-item.active .ring-3 {
    animation: ringExpand 1.5s ease-out 0.6s;
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}
.laptop-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg/lapbanner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;   
}
.desk-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/bg/desktopbanner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}
.server-and-work {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/server/server3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}
.contact-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/contact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/


/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/bg/lapbanner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

/*** Banner End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}

.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 991px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }

    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}

/*** Service End ***/

/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}

/*** Projects End ***/


/*** Blog Start ***/
.blog .blog-item {
    height: 100%;
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(246, 138, 10, .3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    width: 100%;
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-heading {
    position: relative;
    background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
    position: relative;
    width: 100%;
    display: inline-flex;
    transition: 0.5s;
    z-index: 2;
}

.blog .blog-item .blog-heading::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
    width: 100%;
    background: var(--bs-primary);
}

.blog .blog-item:hover .blog-heading a.h4 {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
    color: var(--bs-dark);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

/*** FAQs End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    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 .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/


.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 7%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    z-index: 9;
}

#heroCarousel,
#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 500px;
}

.header-carousel-item {
    height: 100%;
    position: relative;
}

/* Optional: center content vertically */
.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    position: absolute;
}

/* Animation delays */
[data-animation-delay] {
    animation-delay: var(--animation-delay) !important;
}

/* Initialize elements as invisible */
.animated {
    opacity: 0;
    animation-fill-mode: both;
}

/* Animation trigger when slide becomes active */
.carousel-item.active .animated {
    opacity: 1;
}

.border-1 {
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* .about {
        background-image: url('../img/slider-bg-2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    } */

.slider-content {
    max-width: 540px;
}

/* Modern Why Choose Us Section */
.why-choose-us-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/whychoose.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;

}

.blob-pulse-multi {
    position: relative;
    overflow: hidden;
    background: #f9f9ff;
    border-radius: 2rem;
    z-index: 1;
}

/* Base ring style */
.pulse-ring {
    content: '';
    position: absolute;
    border: 3px solid rgba(128, 0, 128, 0.4);
    /* Customize color here */
    border-radius: 50%;
    opacity: 0;
    animation: waveFlow 6s linear infinite;
    z-index: -1;
}

/* Custom positions */
.pulse-top-left {
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.pulse-bottom-right {
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.pulse-center-left {
    top: 50%;
    left: 0;
    width: 100px;
    height: 100px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.pulse-top-right {
    top: 10%;
    right: 10%;
    width: 130px;
    height: 130px;
    animation-delay: 3s;
}

@keyframes waveFlow {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    60% {
        opacity: 0.2;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.why-choose-us-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.why-choose-us-modern .section-header .badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--bs-badge);
}

.why-choose-us-modern .section-header h2 {
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(45deg, #212529, #495057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Modern Achievements Grid */
.achievements-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.achievement-item-modern {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var();
    transition: width 0.3s ease;
}

.achievement-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.achievement-item-modern:hover::after {
    width: 5px;
}

.achievement-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 0 50px 50px;
    background: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon-modern i {
    font-size: 1.5rem;
    color: #fff;
}

.achievement-content-modern h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #212529;
}

.achievement-content-modern p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.achievement-content-modern .progress {
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.05);
    width: 90%;
}

/* Modern Visual Container */
.modern-visual-container {
    padding: 1rem;
}

.main-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.main-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.05) !important;
}

.years-badge {
    top: -1rem;
    left: -1rem;
    background: var(--bs-dark);
    color: white;
}

.clients-badge {
    bottom: -1rem;
    right: -1rem;
    background: var(--bs-primary);
    color: white;
}

.inner-badge {
    text-align: center;
    padding: 0.5rem;
}

.inner-badge .number {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.inner-badge .label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-top: 0.25rem;
}

/* Tagify Style Service Highlights */
.service-highlights-tagify {
    padding: 1.5rem;

    border-radius: 0.75rem;

    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.section-title {
    font-weight: 700;
    color: #212529;
    display: flex;
    align-items: center;
}

.tagify-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa;
    color: #495057;
}

.service-tag i {
    font-size: 0.8em;

}

/* Tag Sizes */
.small-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.8rem;
}

.medium-tag {
    font-size: 0.85rem;
}

.big-tag {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
}

/* Highlight Tags */
.highlight-tag {
    background: linear-gradient(45deg, #0d6efd, #6c8cff);
    color: white;
    border: none;
    box-shadow: 0 3px 10px rgba(13, 110, 253, 0.3);
}

/* Hover Effects */
.service-tag:not(.highlight-tag):hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

.highlight-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
    background: linear-gradient(45deg, #0b5ed7, #5a7cff);
}

/* Animation */
@keyframes tagFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.service-tag:hover {
    animation: tagFloat 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .tag-row {
        justify-content: flex-start;
    }

    .service-tag {
        font-size: 0.8rem;
    }

    .big-tag {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us-modern .section-header h2 {
        font-size: 2.2rem;
    }

    .achievement-item-modern {
        flex-direction: column;
        text-align: center;
    }

    .achievement-content-modern .progress {
        margin: 0 auto;
    }
}

.industries-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}



.industry-content {
    display: none;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    height: 558px;

}

.industry-content.active {
    display: block;
}

.industry-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--bs-dark) !important;
}

.industry-content img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 200px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.industry-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.industry-content ul {
    padding-left: 0;
}

.industry-content ul li {

    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
}

.industry-content ul li i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: #495057;
}

.industry-item.active .d-flex {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-left: 2px solid #0d6efd;
}

.industry-item .d-flex:hover {
    transform: translateX(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-item h5 {
    font-size: 15px;
}

.footer .footer-item a i {
    color: var(--bs-primary);
}

.footer .footer-item:hover {
    color: #fff;
}


.navbar-brand img {
    width: 200px;
    height: 50px;
}

.companyname {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;

}

/* Team item animations */
.team-item {
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    transition: transform 0.8s ease;
}

.team-item:hover .team-img img {
    transform: scale(1.1);
}

.team-icon {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.team-item:hover .team-icon {
    right: 15px;
}

.team-content {
    position: relative;
    transition: all 0.4s ease;
}

.team-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #007bff, #00c3ff);
    transition: all 0.5s ease;
}

.team-item:hover .team-content::before {
    width: 100%;
}

/* Keyframe Animations */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.05;
    }

    50% {
        opacity: 0.15;
    }
}

/* Staggered animation for cards */
.col-md-6:nth-child(1) {
    animation-delay: 0.1s;
}

.col-md-6:nth-child(2) {
    animation-delay: 0.2s;
}

.col-md-6:nth-child(3) {
    animation-delay: 0.3s;
}

.col-md-6:nth-child(4) {
    animation-delay: 0.4s;
}

/* Pulse animation for buttons */
.btn-square {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-square:hover {
    transform: scale(1.1);
}

.btn-square::after {
    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%);
    opacity: 0;
}

.btn-square:active::after {
    width: 100px;
    height: 100px;
    opacity: 1;
    transition: all 0.5s ease;
}

.promo-section {
    background-image: url('../img/promoimage2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;


    position: relative;
    color: #fff;
}
.promo-section2 {
    background-image: url('../img/laptops/laptop-with-glowing-screen.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    height: 450px;


    position: relative;
    color: #fff;
}
.promo-section2 .promo-content{
    max-width: 650px;
}
.promo-section2 .promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}
@media (max-width:425px) {
    .promo-section2 .promo-content h2{
        font-size: 20px;
    }
}
.promo-container {
    display: flex;
    align-items: center;
    max-width: 1285px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.promo-image {
    flex: 1;
    padding-right: 40px;
}

.promo-image img {
    /* max-width: 100%; */
    height: 500px;
    width: 647px;
    object-fit: contain;
    border-radius: 8px;
}

.promo-content {
    flex: 1;
    padding-left: 40px;
}

.promo-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.promo-content p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff;
}

.find-now-btn {
    display: inline-block;
    border: 2px solid #fff;
    color: white;
    padding: 9px 30px;
    border-radius: 0 35px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;

    cursor: pointer;
    font-size: 1rem;
}

.find-now-btn:hover {
    background-color: #ff8c00;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
    }

    .promo-image,
    .promo-content {
        padding: 20px;
        text-align: center;
    }

    .promo-content h2 {
        font-size: 2rem;
    }
}

.team-img img {
    height: 200px;
    object-fit: cover;
}

.team-item .team-content {
    height: 73px;
}

.lead {
    font-size: 1.1rem;
}

.lead2 {
    font-size: 16px !important;
}

.main-image-container {
    position: relative;
    max-width: 100%;
    text-align: center;
}

/* Main Image Styling */
.main-image-container img.main-image {
    max-width: 100%;
    height: 673px;
    /* Set fixed height for consistency */
    object-fit: cover;
    border-radius: 285px 0px 0px 0px;
    /* Rounded corner on the left side */
    transition: transform 0.3s ease;

    z-index: 1;
    /* Ensure the main image is above other content */
    position: relative;
    display: inline-block;
    /* or block depending on your layout */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



/* Main Image Container */
.main-image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;

}

.main-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 285px 0px 0px 0px !important;
    /* Rounded corner on the left side */
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* Optional subtle border */
}

.main-image2 {
    display: block;
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
        border-radius: 0px 285px 0px 0px !important;
        /* Rounded corner on the left side */
        border: 1px solid rgba(0, 0, 0, 0.1);
        /* Optional subtle border */
   
    
}

/* Round Image Badge - Adjusted for new border radius */
.round-image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 2;
    background: white;
    animation: moveRoundImage 5s ease-in-out infinite;
    /* Continuous movement */
}

/* Keyframes for auto-moving effect */
@keyframes moveRoundImage {
    0% {
        transform: translate(0, 0);
        /* Starting position */
    }

    25% {
        transform: translate(10px, -10px);
        /* Move slightly up-right */
    }

    50% {
        transform: translate(0, -20px);
        /* Move up */
    }

    75% {
        transform: translate(-10px, -10px);
        /* Move slightly up-left */
    }

    100% {
        transform: translate(0, 0);
        /* Return to original position */
    }
}

.badge-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pulse Animation Effect */
.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.2);
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0;
}

.round-image-badge:hover {
    transform: scale(1.05) rotate(5deg);
}

.round-image-badge:hover .badge-pulse {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.3);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-image {
        border-radius: 150px 0px 0px 0px;
        /* Smaller radius for mobile */
    }

    .round-image-badge {
        width: 60px;
        height: 60px;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 576px) {
    .main-image {
        border-radius: 100px 0px 0px 0px;
        /* Even smaller for phones */
    }
}

.bg-primary-gradient {
    background: var(--bs-primary);
}

.stats-inner h3 {
    font-weight: 700;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stats-text {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.stats-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    opacity: 0.2;
    z-index: 1;
}

/* Secondary Image */
.secondary-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    padding: 15px;
}

.secondary-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.secondary-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    top: -24px;
    right: 25px;
    background: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.image-badge i {
    color: #0d6efd;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-image-grid {
        min-height: 350px;
        margin-bottom: 2rem;
    }

    .stats-inner {
        padding: 1.5rem;
    }

    .stats-inner h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .stats-card,
    .secondary-image {
        width: 50% !important;
    }

    .stats-inner {
        padding: 1.2rem;
    }

    .stats-inner h3 {
        font-size: 2rem;
    }

    .stats-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-image-container {
        min-height: 300px;
    }

    .stats-card {
        width: 60% !important;
    }

    .secondary-image {
        width: 40% !important;
        padding: 10px;
    }

    .image-badge {
        font-size: 0.7rem;
        right: 15px;
    }
}

/* Benefits Container */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Benefit Item */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.25rem;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0.2), rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.2));
}

.benefit-item:last-child::before {
    height: 1.25rem;
}


/* Benefit Icon */
.benefit-icon {
    width: 24px;
    height: 24px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.benefit-icon .fa-check {
    color: var(--bs-dark);
    font-size: 0.7rem;
}

/* Benefit Text */
.benefit-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    position: relative;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.benefit-item:last-child .benefit-text {
    border-bottom: none;
    padding-bottom: 0;
}

/* Hover Effects */
.benefit-item:hover .benefit-icon {
    background: rgba(13, 110, 253, 0.2);
    transform: scale(1.1);
}

.benefit-item:hover .benefit-text {
    color: #212529;
}

/* Animation */
.benefit-item {
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-text {
        font-size: 0.95rem;
    }

    .benefit-item {
        gap: 0.8rem;
        padding-left: 1.2rem;
    }
}
.rental-section{
    position: relative;
        
}
.circuit-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 1.5rem;
}

.circuit-image-wrapper img {
    display: block;
    width: 100%;
    border-radius: 1.5rem;
    z-index: 1;
    position: relative;
}

/* SVG on top of image */
.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.circuit-path {
    fill: none;
    stroke: #fff;
    /* realistic copper/gold trace */
    stroke-width: 0.5;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: drawLine 8s linear infinite;
    opacity: 0.8;
}

.circuit-path.delay {
    animation-delay: 2s;
}

.circuit-path.delay {
    animation-delay: 2s;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 300;
        opacity: 0;
    }

    50% {
        stroke-dashoffset: 150;
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Custom Styles */
.projects-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 50px 50px;
    transition: all 0.3s ease;
}

.tab-controls .nav-item a {
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tab-controls .nav-item a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-controls .nav-item a.active {
    background-color: #f8f9fa;
    border-left: 4px solid var(--bs-dark);
    color: var(--bs-dark) !important;
}

.tab-controls .nav-item a.active span {
    color: var(--bs-dark);
    /* Change color of the span inside active link */
}

/* Tab Content Wrapper */
.tab-content-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Tab Indicator Styles */
.tab-indicator {
    position: relative;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.progress {
    height: 6px;
    margin-bottom: 10px;
    display: none;
}

.tab-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--bs-dark) !important;
    transform: scale(1.2);
}

/* Projects Item */
.projects-item {
    transition: all 0.5s ease;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.projects-content {
    border-radius: 0 0 12px 12px;
}

/* Animation for tab transitions */
.tab-pane.fade {
    transition: opacity 0.5s ease-in-out;
}

.tab-pane.fade.show {
    opacity: 1;
}

/* Button styles */
#pauseAutoScroll,
#resumeAutoScroll {
    transition: all 0.3s ease;
}

#pauseAutoScroll:hover,
#resumeAutoScroll:hover {
    transform: translateY(-2px);
}

/* Styling the round icons for the tab navigation */
.tab-dots {
    display: flex;
    justify-content: center;
    gap: 20px;

}

.dot {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
    font-size: 1.5rem;
}

.dot:hover {
    background-color: var(--bs-dark);
    transform: scale(1.1);
    color: #fff !important;
}

.dot i {
    color: #333;
    transition: color 0.3s;
    font-size: 18px;
}

/* .dot.active {
     background-color: #007bff;
 } */

.dot.active i {
    color: white;
}

/* Optional: Add a custom tooltip on hover */
/* .dot[title]:hover::after {
     content: attr(title);
     position: absolute;
     top: -25px;
     background-color: rgba(0, 0, 0, 0.7);
     color: white;
     padding: 5px;
     border-radius: 5px;
     font-size: 0.875rem;
 } */
.tabhead {
    color: var(--bs-dark);
    font-size: 20px;
}

.aboutservice {
    font-size: 16px;
}

.techy-footer-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-image: url(), linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top: 1px solid rgba(0, 173, 239, 0.2);
}

.techy-footer-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    /* <-- Dark semi-transparent layer */
    z-index: -1;
}

.footer-item a {
    color: #ddd;
    margin-bottom: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-item h4 {
    font-size: 20px;
}

.footer-item a:hover {
    color: #fff;
    padding-left: 5px;
}

.address {
    font-size: 1rem;
}

.companyname {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    box-shadow: 0 0 15px rgba(0, 173, 239, 0.3);
    border: 1px solid rgba(0, 173, 239, 0.2);
}

ul.list-unstyled {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    margin: 0;
}

ul.list-unstyled li {

    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff !important;
    color: #495057;

}

ul.list-unstyled li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
}

ul.list-unstyled li i {
    margin-right: 6px;
}

/* Dropdown styles */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-toggle {
    font-size: 16px;
    color: #333;


    border: none;
}

.nav-item.dropdown .dropdown-toggle:hover,
.nav-item.dropdown .dropdown-toggle:focus {
    color: #007bff;
    /* Change on hover/focus */
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 200px;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    display: none;
    /* Initially hidden */
}

.dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: #333;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.dropdown-menu .dropdown-item:hover i {
    color: #333;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Navbar button */
.nav-btn .btn-primary {

    border-radius: 0px 30px 0;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 23px;
    margin-top: -6px;
}

@media (max-width:1024px) {
    .nav-btn .btn-primary {
        display: none;
    }

    .navbar .navbar-nav {
        display: flex;
        align-items: flex-start;
        gap: 4px;
        position: relative;
        z-index: 1000;
    }

    .navbar .navbar-nav .nav-item {
        flex: 0 0 auto;
        text-align: center;
        /* padding: 0; */
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-right: 20px;
        color: #333;
    }
}

.nav-btn .btn-primary:hover {
    background-color: #0056b3;
}

.topbar {
    position: relative;
    /* or absolute / fixed depending on your layout */
    z-index: 5;
    /* or higher than overlapping elements */
}



.tech-circuit-section {
    position: relative;
    overflow: hidden;
    background: var(--bs-dark);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    /* shorthand for top: 0; right: 0; bottom: 0; left: 0; */
    z-index: 0;
    pointer-events: none;
}

.tech-circuit-section .position-relative {
    z-index: 1;
}






/* about page about section css */
.aboutpage {
    background-color: #fff;
}

/* Section Base */
.about-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 1;
}

.aboutpageimage {
    height: 700px;
    border-radius: 25px;
    object-fit: cover;
}

/* Decorative Elements */
.bg-pattern {
    background-image: radial-gradient(rgba(76, 175, 80, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

.bg-gradient-light {
    background: linear-gradient(to right, rgba(248, 249, 250, 0.8) 0%, transparent 100%);
    z-index: -1;
}



.floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(76, 175, 80, 0.1);
    filter: blur(30px);
    z-index: 0;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, 20px) rotate(5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .years {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

/* Content Styling */
.section-label {
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.text-gradient-primary {
    background: var(--bs-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(to right, #4c72af, transparent);
    margin: 1rem 0;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(76, 175, 80, 0.2);

    z-index: -1;
    transform: skew(-15deg);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}


.value-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(246, 138, 10, 0.2);
    transition: top 0.4s ease;
    z-index: 0;
}

.value-card:hover::before {
    top: 0;
}

.value-card .value-icon,
.value-card .value-content {
    position: relative;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card:hover .value-icon {
    background-color: var(--bs-primary);
    color: var(--bs-dark) !important;
}

.value-card:hover .value-icon i {

    color: var(--bs-dark) !important;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--text-primary);
    background-color: var(--bs-dark);
}


/* CTA Button */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.2);
}

/* Animations */
.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .image-container {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .experience-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

.diagonal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    height: 900px;
    gap: 10px;
}

.diagonal-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.diagonal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    grid-column: 1 / span 3;
    grid-row: 1;
    height: 400px;
}

.item-2 {
    grid-column: 2 / span 2;
    grid-row: 2;

}

.item-3 {
    grid-column: 1;
    grid-row: 2 / span 2;
}

.item-4 {
    grid-column: 2 / span 2;
    grid-row: 3;
}

.experience-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.label {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

/* service page */
.horizontal-services {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.service-section {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    scroll-snap-align: start;
}

.service-content {
    width: 50%;
    padding: 0 8%;
    z-index: 2;
}

.service-image {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.service-section:hover .service-image img {
    transform: scale(1.1);
}

.service-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 1;
}



p.service-description {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.features-list {
    margin-bottom: 40px;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 1rem;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232563eb'%3E%3Cpath d='M9.00039 16.1698L4.83039 11.9998L3.41039 13.4098L9.00039 18.9998L21.0004 6.99984L19.5904 5.58984L9.00039 16.1698Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--gradient);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Navigation Dots */
.section-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    display: block;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Scroll hint */
.scroll-hint {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--dark);
    animation: bounce 2s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .service-section {
        flex-direction: column;
    }

    .service-content,
    .service-image {
        width: 100%;
    }

    .service-content {
        padding: 40px;
        order: 2;
    }

    .service-image {
        height: 40vh;
        order: 1;
    }

    .service-image::before {
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
    }

    .section-nav {
        display: none;
    }
}

.about {
    background-color: #fff;
    position: relative;
    z-index: 1;
}














/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.6), rgba(226, 232, 240, 0.6)),
        url('../img/bg/5301586.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line.accent {
 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-main {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.hero-brands {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    margin-top: 50px;
}

.hero-brands span {
    color: #64748b;
    font-weight: 500;
    margin-right: 1rem;
}

.brand-logos {
    display: inline-flex;
    
}

.brand {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}
.brand img{
    width: 52px;
}
.brand:hover {
    transform: translateY(-2px);
}



/* Hero Visual - Enhanced Showcase */
.hero-visual {
    display: flex;
    justify-content: center;
    margin-top: -80px;
    align-items: center;
    position: relative;
    animation: slideInRight 1s ease-out;
}

.laptop-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

/* Main Laptop Display */
.main-laptop-display {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) rotateY(45deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
}

.laptop-item.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    z-index: 10;
}

.laptop-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px 0px 30px 30px;
    overflow: hidden;
   
    background: linear-gradient(145deg, #f0f0f0, #cacaca);
    transform-style: preserve-3d;
}

.laptop-image { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
   
}

.laptop-item.active .laptop-image {
    animation: laptopZoom 2s ease-in-out;
}

.laptop-reflection {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(1px);
}

.laptop-info {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.laptop-item.active .laptop-info {
    opacity: 1;
    transform: translateY(0);
    animation: infoSlideUp 1s ease-out 0.5s both;
}

.laptop-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.laptop-info p {
    color: #64748b;
    margin-bottom: 1rem;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

/* Brand Selector */
.brand-selector {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 20;
}

.brand-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.brand-option:nth-child(1) {
    animation: brandSlideUp 0.8s ease-out 1s both;
}

.brand-option:nth-child(2) {
    animation: brandSlideUp 0.8s ease-out 1.2s both;
}

.brand-option:nth-child(3) {
    animation: brandSlideUp 0.8s ease-out 1.4s both;
}

.brand-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-option.active {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.brand-logo {
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-option span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.brand-option.active span {
    color: #2563eb;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    opacity: 0;
    animation: floatingIcon 3s ease-in-out infinite;
}

.icon-1 {
    top: 20%;
    left: -9%;
    animation-delay: 0s;
}
.icon-2 {
    top: 30%;
    right: -10%;
    animation-delay: 0.5s;
}

.icon-3 {
    bottom: -10%;
    left: -10%;
    animation-delay: 1s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

/* Background Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2563eb;
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes laptopZoom {
    0% {
        transform: scale(0.8) rotateY(20deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.05) rotateY(-5deg);
        opacity: 0.8;
    }

    100% {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes infoSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brandSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes priceGlow {
    0% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }

    100% {
        box-shadow: 0 4px 25px rgba(37, 99, 235, 0.6);
    }
}

@keyframes floatingIcon {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0px) scale(0.8);
    }

    50% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1);
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}

/* Auto-rotation effect */
@keyframes autoRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.laptop-image-container:hover {
    /* animation: autoRotate 2s ease-in-out; */
}

/* Responsive adjustments for showcase */
@media (max-width: 768px) {
    .laptop-showcase {
        height: 400px;
    }

    .laptop-item {
        width: 280px;
        height: 240px;
    }

    .laptop-image-container {
        height: 200px;
    }

    .brand-selector {
        gap: 15px;
    }

    .brand-option {
        padding: 10px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .laptop-showcase {
        height: 350px;
    }

    .laptop-item {
        width: 240px;
        height: 200px;
    }

    .laptop-image-container {
        height: 160px;
    }

    .brand-selector {
        gap: 10px;
    }

    .brand-option {
        padding: 8px;
    }

    .brand-logo {
        width: 40px;
        height: 25px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    } }

.laptop-brand {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}


/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 0 50px 50px;
    border: 1px solid #ddd;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, border 0.3s ease;
}

/* Swipe animation layer */
.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--secoundary);
    /* or use a gradient like linear-gradient(...) */
    z-index: 0;
    transition: height 0.8s ease;
}

/* On hover - animate the swipe */
.feature-card:hover::before {
    height: 100%;
}

/* Keep content above the swipe background */
.feature-card * {
    position: relative;
    z-index: 1;
}

/* Optional: Change text color on hover */
.feature-card:hover {
    border: 1px solid var(--secoundary);
    color: white;
}
.feature-card:hover p{
    
    color: white;
}
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.why-choose-header{
    max-width: 800px;
    text-align: center;
    margin:0 auto;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #1e293b;
    color: white;
}

.contact-section .section-header h2,
.contact-section .section-header p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #94a3b8;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
}

.contact-form h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 2rem;
}

.total-cost {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

.total-cost h3 {
    color: #1e293b;
    font-size: 1.25rem;
}

.total-cost span {
    color: #2563eb;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.contact-info i {
    color: #2563eb;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle-main {
        font-size: 1.25rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand-logos {
        justify-content: center;
    }

    .laptop-stack {
        width: 280px;
        height: 240px;
    }

    .laptop-card {
        width: 160px;
        height: 110px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .brand-filter {
        justify-content: center;
    }

    .laptop-grid {
        grid-template-columns: 1fr;
    }

    .laptop-specs {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-header {
        display: none;
    }

    .pricing-row {
        display: block;
        padding: 1.5rem;
        border: 1px solid #e2e8f0;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        margin: 5% auto;
        width: 95%;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle-main {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .laptop-stack {
        width: 240px;
        height: 200px;
    }

    .laptop-card {
        width: 140px;
        height: 95px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}








/* Desktop Features Section */
.desktop-features {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.desktop-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25px 25px, rgba(37, 99, 235, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75px 75px, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px;
    animation: patternMove 30s linear infinite;
    opacity: 0.6;
}

.desktop-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}
.desktop-section-header h2{
    text-align: center;
    margin: 0 auto;
}
.desktop-section-header p{
    text-align: center;
    margin: 0 auto;
}
/* Left Side - Images Section */
.desktop-images-section {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.images-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    position: relative;
}
.images-grid2 {
    display: grid;
    grid-template-columns: 1fr 2fr !important;
    grid-template-rows: auto auto auto;
    gap: 1rem;
    position: relative;
}

.desktop-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.desktop-image-card.main-image {
    grid-row: span 2;
    animation: imageZoom 1s ease-out 0.10s both;
}

.desktop-image-card:nth-child(2) {
    animation: imageSlideIn 1s ease-out 0.10s both;
}

.desktop-image-card:nth-child(3) {
    animation: imageSlideIn 1s ease-out 0.10s both;
}

.desktop-image-card:nth-child(4) {
    animation: imageSlideIn 1s ease-out 1.1s both;
}

.desktop-image-card:nth-child(5) {
    animation: imageSlideIn 1s ease-out 1.3s both;
}

.desktop-image-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.desktop-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.desktop-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.desktop-image-card:hover .image-overlay {
    transform: translateY(0);
}

.specs-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.specs-badge i {
    color: #3b82f6;
    font-size: 1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

/* .floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: floatingBadge 4s ease-in-out infinite;
}

.floating-badge i {
    color: #2563eb;
    font-size: 1rem;
} */

.badge-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0s;
}

.badge-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1.5s;
}

.badge-3 {
    bottom: 20%;
    right: -15px;
    animation-delay: 3s;
}

/* Right Side - Content Section */
.desktop-content-section {
    animation: slideInRight 1s ease-out;
}

.features-list {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background:var(--secoundary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Industry Section */
.industry-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.industry-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.industry-section>p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.industry-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.industry-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.industry-tag:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.industry-tag i {
    font-size: 1rem;
    color: #2563eb;
    transition: color 0.3s ease;
}

.industry-tag:hover i {
    color: white;
}

/* CTA Buttons */
.desktop-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 20px;
}
.desktop-cta-buttons2 {
  
    justify-content: left;
    
}

.desktop-cta-buttons .btn {
    padding: 14px 28px;
    border-radius: 0 35px 35px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.desktop-cta-buttons .btn-primary {
    background: var(--bs-dark);
    color: white;
    border: 2px solid transparent;
}

.desktop-cta-buttons .btn-primary:hover {
    background: var(--secoundary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.desktop-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bs-dark);
    border: 2px solid var(--bs-dark);
    backdrop-filter: blur(10px);
}

.desktop-cta-buttons .btn-secondary:hover {
    background: var(--secoundary);
    color: white;
    transform: translateY(-3px);
    border: 2px solid var(--secoundary);
  
}

/* Animations */
@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imageZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes imageSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatingBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .desktop-image-card.main-image {
        grid-column: span 2;
        grid-row: span 1;
    }

    .floating-badge {
        position: static;
        margin: 0.5rem 0;
        display: inline-flex;
    }

    .floating-elements {
        position: static;
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .industry-tags {
        grid-template-columns: 1fr;
    }

    .desktop-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .desktop-cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .desktop-features {
        padding: 60px 0;
    }

    .images-grid {
        grid-template-columns: 1fr;
    }

    .desktop-image-card.main-image {
        grid-column: span 1;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .industry-section {
        padding: 1.5rem;
    }

    .desktop-cta-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


.rental-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 50%, #1e293b 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Background Elements */
.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("/placeholder.svg?height=400&width=400");
    background-repeat: repeat;
    background-size: 400px 400px;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.bg-element-1 {
    top: 80px;
    left: 40px;
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 246, 0.1);
}

.bg-element-2 {
    bottom: 80px;
    right: 40px;
    width: 400px;
    height: 400px;
    background: rgba(147, 51, 234, 0.1);
    animation-delay: 2s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
  
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.header-section.animate,
.loaded .header-section {
    opacity: 1;
    transform: translateY(0);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.title-underline {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    margin: 0 auto;
    border-radius: 2px;
}

/* Features Grid */
.features-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card2 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px 50px 50px;
    padding: 32px;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card2.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card2[data-delay="100"].animate {
    transition-delay: 0.1s;
}

.feature-card2[data-delay="200"].animate {
    transition-delay: 0.2s;
}

.feature-card2[data-delay="300"].animate {
    transition-delay: 0.3s;
}

.feature-card2[data-delay="400"].animate {
    transition-delay: 0.4s;
}

.feature-card2[data-delay="500"].animate {
    transition-delay: 0.5s;
}

.feature-card2[data-delay="600"].animate {
    transition-delay: 0.6s;
}

.feature-card2:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    
    border-radius: 0px 50px 50px;
    margin-bottom: 24px;
    font-size: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card2:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card2 h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card2:hover h3 {
    color: #93c5fd;
}

.feature-card2 p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Bottom Content */
.bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out 0.7s;
}

.bottom-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.content-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.content-box>p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.highlight-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.highlight-box p {
    color: #bfdbfe;
    font-size: 14px;
    line-height: 1.5;
}

.highlight-box strong {
    color: white;
}

/* Image Section */
.content-right {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.7s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.image-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.stat-top {
    top: 24px;
    right: 24px;
}

.stat-bottom {
    bottom: 24px;
    left: 24px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 12px;
    color: #d1d5db;
}

.deco-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}

.deco-1 {
    top: -16px;
    right: -16px;
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
}

.deco-2 {
    bottom: -16px;
    left: -16px;
    width: 128px;
    height: 128px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2));
}

/* Responsive Design */
@media (max-width: 768px) {
    .rental-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bottom-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-card {
        padding: 24px;
    }

    .content-box {
        padding: 24px;
    }

    .bg-element-1,
    .bg-element-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .main-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .content-box {
        padding: 20px;
    }
}
#contact{
    /* scroll-margin-top: 10px; */
}
.back-to-top{
    border-radius: 0 30px 30px !important;
}
.contact-map{
    height: 500px;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;

    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}


/* Base Styles */
:root {
    --primary-color: #4361ee;
    --primary-hover: #3a56d4;
    --text-color: #2b2d42;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --error-color: #ef233c;
    --success-color: #4cc9f0;
}



/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
    
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

/* Modal Header */
.modal-header {
    padding: 20px;
    /* background: var(--primary-color); */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-weight: 600;
    font-size: 1.5rem;
}

.close-button {
    background: none;
    border: none;
    color: #000;
    font-size: 1.75rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-button:hover {
    transform: scale(1.1);
}

/* Form Styles */
.inquiry-form {
    padding: 25px;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 48%;
}

@media (max-width: 768px) {
    .form-row .form-group {
        flex: 1 1 100%;
    }
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.required {
    color: var(--error-color);
}
/* Grid layout for the form */
.grid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

/* Full-width fields */
.grid-form .full-width {
    grid-column: 1 / -1;
}
input,
select,
textarea {
    width: 100%;
    padding: 6px !important;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Recaptcha Container */
.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 0px 0;
}

/* Submit Button */
.form-actions {
    display: flex;
    justify-content: center;
}

.submit-btn {
background-color: var(--bs-dark);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 0px 30px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 480px) {
    .modal-container {
        width: 95%;
    }

    .modal-header {
        padding: 15px;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .inquiry-form {
        padding: 20px 15px;
    }
}
.footeradd{
    font-weight:600;
    
}
.conatctpage-form{
    border:1px solid #ddd;
    padding:12px;
}