@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600&display=swap');

* {
    box-sizing: border-box;
    padding:0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Fredoka', 'Open Sans', sans-serif;
}

img {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: block;
}

section {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove Bootstrap margin classes */
.mb-1, .mb-2, .mb-3, .mb-4, .mb-5, .mb-6, .m-0, .mx-0, .my-0 {
    margin-bottom: 0 !important;
}

.pb-1, .pb-2, .pb-3, .pb-4, .pb-5, .pb-6, .p-0, .px-0, .py-0 {
    padding-bottom: 0 !important;
}

/* Remove gaps from images and figures */
figure, picture {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.container, .container-fluid {
    margin-bottom: 0 !important;
}

/* Ensure images display as block to remove inline gaps */
img, svg {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    vertical-align: middle;
}

/* Animated Heading */
.animated-heading {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    animation: hideAfterDelay 1s ease-in-out 5s forwards;
}

.animated-heading .word {
    opacity: 0;
    color: #007bff; /* Start with blue color */
    animation: fadeInUpColor 1s ease-out forwards;
}

.animated-heading .word:nth-child(1) { animation-delay: 0.1s; }
.animated-heading .word:nth-child(2) { animation-delay: 0.3s; }
.animated-heading .word:nth-child(3) { animation-delay: 0.5s; }
.animated-heading .word:nth-child(4) { animation-delay: 0.7s; }
.animated-heading .word:nth-child(5) { animation-delay: 0.9s; }
.animated-heading .word:nth-child(6) { animation-delay: 1.1s; }
.animated-heading .word:nth-child(7) { animation-delay: 1.3s; }

@keyframes fadeInUpColor {
    from {
        opacity: 0;
        transform: translateY(30px);
        color: #007bff; /* Blue */
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px);
        color: #dc3545; /* Red */
    }
    to {
        opacity: 1;
        transform: translateY(0);
        color: white; /* Final white */
    }
}

@keyframes hideAfterDelay {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Remove Bootstrap row gaps */
.row {
    margin-bottom: 0 !important;
}

.col-lg-4, .col-lg-6, .col-md-4, .col-md-6, .col-sm-12 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove gaps from items and cards */
.item, .card, [class*="card"], [class*="item"] {
    margin-bottom: 0 !important;
}
/* Ensure sections don't have bottom space */
section + section {
    margin-top: 0 !important;
}

/* Remove Bootstrap mb classes on specific items */
[class*="mb-"] {
    margin-bottom: 0 !important;
}
body {

    box-sizing: border-box;
    background-color: #f7f7f7;

}

html,
body {
    overflow-x: hidden;
}

:root {
    --navbar-height: 90px;
}

body {
    padding-top: var(--navbar-height);
}

#root {
    position: relative;
    min-height: 100vh;
}

.hero-particles {
    position: relative !important;
    overflow: hidden;
}

#particles-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.35;
}

#particles-background canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

.hero-particles > *:not(#particles-background) {
    position: relative;
    z-index: 2;
}

.app-shell {
    position: relative;
    z-index: 1;
}

/*navbar-section*/
.navbar {
    width: 100%;
    height: var(--navbar-height);
    color: white;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: space-between;
    padding: 10px 5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: steelblue;
    transition: background-color 0.3s ease;
    transition: top 0.3s;

}

nav.sticky {
    background-color: steelblue;
}

nav.sticky a {
    color: white;
}

.container-fluid {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}



.logo1 img {
    height: 35px;
    margin-left: 50px;
    width: 61px;  
}

.logo {
    font-size: 30px;
    font-family: system-ui;
    margin-right: auto;
    margin-left:0px;
    color: darkblue;
}

.logo span {
    color: white;
    font-family: system-ui;
}


#check {
    display: none;
}

#checkbtn {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: white;
    margin-right: 50px;
    z-index: 1101;
}

#checkbtn i {
    display: inline-block;
    transform: scaleX(1.25);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0px;
}

.nav-item {
    display: inline;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    margin: 0;
    padding: 10px 10px;
}


.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    display: block;
    width: 0%;
    background: white;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.nav-link:hover::before {
    width: 70%;
    color: yellowgreen;
    border-radius: 5px;

}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgb(39, 39, 95);
    background-image: linear-gradient(rgba(8, 10, 30, 0.62), rgba(8, 10, 30, 0.62)), url('/images/hamburger_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s;
    z-index: 1100;
}

ul li {
    margin: 20px 0;
}

#check:checked ~ .nav-menu {
    left: 0;
}

/*navbar-section-end*/
.home-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    height: calc(100vh - var(--navbar-height));
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.swiper-pagination {
    bottom: 10px !important;
    z-index: 20;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 20;
    width: 50px;
    height: 50px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.home-slider + section {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#domain_im {
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
}

.row_content {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5rem;
    padding: 0 10px;
    height: auto;
    border-radius: 3px;
    gap: 30px;
}

.container-total_clients,
.container-happy_clients,
.container-awards {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    margin: 15px;
    border-radius: 10px;
    flex-wrap: nowrap;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);

}

.icon_1,
.icon_2,
.icon_3 {
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    margin: 15px;
    border-radius: 5px;
}

.icon_1 {
    background-color: #D8F9FE;
}

.icon_2 {
    background-color: #FFE6E6;
}

.icon_3 {
    background-color: #FEEFD8;
}


.text-content {
    width: 60%;
    display: block;
    padding: 15px;
}

.text-content h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 25px;
}

.text-content h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
}

.fixed-top {
    top: 0;
    z-index: 1050;
    transition: .4s;
}

#serviceSection {
    background: #222429;
    padding: 50px 0;
    overflow-x: hidden;
    margin-bottom: 100px;
}

#serviceSection .sec-header h2 {
    color: #fff;
    margin-bottom: 30px;
}

#serviceSection .sec-header h2 span {
    color: #fb383b;
}

#serviceSection .sec-header p {
    color: #9ca3a9;
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    margin-bottom: 0;
}

.service-robo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.service-robo {
    width: min(360px, 82%);
    height: auto;
    animation: roboFloat 3.2s ease-in-out infinite;
}

@keyframes roboFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

#serviceSection .service-box {
    display: flex;
    flex-direction: row;
    background: #1d1e22;
    align-items: flex-start;
    border-radius: 10px;
    justify-content: space-between;
    padding: 50px 40px;
    margin: 15px 0;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#serviceSection .service-box .txt-area h3 {
    color: #9ca3a94d;
    margin-bottom: 50px;
    transition: .4s;
}

#serviceSection .service-box .txt-area h4 {
    color: #9ca3a9;
    margin-bottom: 0;
    font-size: 20px;
    transition: .4s;
}

#serviceSection .service-box .img-box {
    position: relative;
}

#serviceSection .service-box .img-box img {
    width: 70px;
    transition: .4s;
}

#serviceSection .service-box .img-box .img01 {
    position: absolute;
    top: 0;
    left: 0;
}

#serviceSection .service-box .img-box .img02 {
    opacity: 0;
}

#serviceSection .service-box:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}

#serviceSection .service-box:hover .txt-area h3 {
    color: #fff;

}

#serviceSection .service-box:hover .txt-area h4 {
    color: #1d1e22;
}

#serviceSection .service-box:hover .img-box .img01 {
    opacity: 0;
}

#serviceSection .service-box:hover .img-box .img02 {
    opacity: 1;
}

@media (max-width: 991px) {
    .service-robo-wrap {
        margin-top: 10px;
        margin-bottom: 15px;
        min-height: 220px;
    }

    .service-robo {
        width: min(320px, 80%);
    }
}

#workSection .overlay {
    background: rgba(34, 34, 34, 0.7);
    justify-content: center;
    padding: 30px 0;
}

#workSection .work-box {
    margin: 10px 0;
}

#workSection .work-box h2 {
    color: #fff;
}

#workSection .work-box p {
    font-size: 22px;
    color: #fff;
    margin-bottom: 0;
}

#workSection .box-4 {
    border-right: none;
    justify-content: center;
}

#contactArea {
    margin-bottom: 10px;
}

.contact-box {
    background: #3e75ef;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    transform: translateY(10px);
    z-index: 1;
}

#contactArea .row {
    align-items: center;
}

#contactArea .sec-header h2 {
    color: #222429;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.1;
}

#contactArea .sec-header h2 span {
    color: #fff;
}

#contactArea .layer-btn {
    color: #fff;
}

#contactArea .layer-btn:hover {
    color: #222429;
}

#contactArea .layer-btn::after {
    background: #222429;
}

#contactArea .layer-btn::before {
    background: #fff;
    border: 1px solid #fff;
}


#contactSection form .form-group .form-control {
    font-family: 'Rubik', sans-serif;
    display: flex;
    background: #cfd7f4;
    border: 1px solid #18191b;
    font-size: 15px;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
}

#contactSection form .form-group .form-control:focus {
    box-shadow: none;
    border: 1px solid #fb383b;
}

#contactSection form .form-group input {
    height: 62px;
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

.services-row {
    width: 100%;
    height: 50vh;
    padding: 0 20px;

}

.services-card {
    width: 100%;
    height: 50vh;
    margin-left: 20px;
    margin-top: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    border-radius: 10px;
    transition: width 2s, height 4s;
}

.services-card p {
    justify-content: center;
}

.services-card:hover {
    width: 800px;
    height: 51vh;
    border-radius: 10px;
    background-color: darkorange;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}

.services-card img {
    width: 6rem;
    justify-items: center;
}


#card-img {
    max-width: 100%;
}

.row-container {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 10px;
    margin-bottom: 10px;
}

#col-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 280px;
    max-width: 420px;
    min-width: 260px;
    height: auto;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
    margin: 20px;
    padding: 10px;
    transition: .3s;
    box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.6);
}

#col-container1 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 280px;
    max-width: 420px;
    min-width: 260px;
    height: auto;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
    margin: 20px;
    padding: 10px;
    transition: .3s;
    box-shadow: 1px 0 5px 0 rgba(0, 0, 0, 0.6);
}

.img-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border: 6px solid #ddd;
    border-radius: 50%;
    margin-bottom: 10px;
    padding: 20px;
    background-size: cover;
    background-position: center center;
}

#col-container:nth-child(1) .img-area {
    background-image: url(../images/domain.png);
}

#col-container:nth-child(2) .img-area {
    background-image: url(../images/mobile-apps.png);
}

#col-container1:nth-child(1) .img-area {
    background-image: url(../images/local-seo.png);
}

#col-container1:nth-child(2) .img-area {
    background-image: url(../images/monitor.png);
}

.header-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 48px;
}

.img-text {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
}

.img-text h3 {
    margin: 10px 0;
}

.img-text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    flex: 1 1 auto;
    margin-bottom: 0;
}

#col-container:hover {
    background-color: rgba(44, 80, 190, 0.855);
    color: #fff;
}
#col-container1:hover {
    background-color: rgba(44, 80, 190, 0.855);
    color: #fff;
}

#col-container:hover .line {
    background-color: #fff;
}

h1 {
    text-align: center;
    font-family: Montserrat, sans-serif;
    color: #2ea685;
}


.number {
    text-align: center;
    margin: 0;
    position: relative;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    color: #26efb9;
    font-size: 20px;
    background-color: black;
    line-height: 40px;
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    border: solid 2px #26efb9;
}

.fancybox-content {
    width: 650px;
}


#content_tag {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
}

.navbar {
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: steelblue;
}


/*footer-section*/
#footerSection {
    background-color: rgb(9, 9, 42);
    background-image: linear-gradient(rgba(38, 52, 210, 0.62), rgba(108, 120, 244, 0.62)), url('/images/footer_bg.jpg');
    color: white;
    max-width: 100%;
    height: auto;
}

#footerSection .container {
    width: 100%;
    height: auto;
    overflow-x: hidden;
}

.footer-box {
    margin-bottom: 30px;
}

.col-lg-3 {
    margin-left: 5rem;
    padding-right: 2rem;
}

.footer-box a {
    font-size: 20px;
}

#upworld_software {
    font-size: 32px;
    font-weight: bold;
}

.footer-box .title {
    font-size: 20px;
    color: rgb(16, 155, 210);
    margin-bottom: 20px;
    margin-top: 11px;
    font-weight: bold;
}

.footer-box .list-unstyled {
    display: block;
}

#footer_section {
    padding: 0 30px;
}

#explore_tag {
    margin-left: 30px;
}

.footer-box.box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-box.box2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-box.box2 ul li {
    display: block;
    margin: 6px 0;
}

.footer-box .about {
    font-size: 16px;
    height: auto;
}

.footer-box .social-links a {
    font-size: 30px;
    margin-right: 15px;
    color: white;
}

.footer-box .social-links a:hover {
    color: rgb(210, 90, 16);
}

.footer-box .icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-box .icon-box .icon {
    font-size: 20px;
    margin-right: 10px;
}

.footer-box .icon-box .txt {
    font-size: 18px;
    line-height: 1.6;
    height: auto;
}

.footer-box ul {
    padding: 0;
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: white;
    text-decoration: none;
}

.footer-box ul li a:hover {
    color: rgb(16, 155, 210);
}

.copy-right {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
}

.copy-right span {
    font-size: 14px;
}

.our-offer-items button {
    border-radius: 5px;
    border: 1px solid white;
}

/* Responsive styles for home-slider */
@media (max-width: 768px) {
    .home-slider {
        height: 60vh;
    }

    .text-overlay h1 {
        font-size: 32px !important;
        margin: 4rem 1rem 0 1rem !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .home-slider {
        height: 50vh;
    }

    .text-overlay h1 {
        font-size: 24px !important;
        margin: 2rem 1rem 0 1rem !important;
    }
}

.layer-btn1 {
    position: relative;
    background: #28a745; /* green */
    color: #f30f0f;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
  }
  
  /* BEFORE (Red slide from left) */
  .layer-btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #dc3545; /* red */
    z-index: -1;
    transition: 0.4s;
  }
  
  /* AFTER (Dark overlay from right) */
  .layer-btn1::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(123, 231, 34, 0.8); /* slight dark effect */
    z-index: -1;
    transition: 0.4s;
  }
  
  /* HOVER EFFECT */
  .layer-btn1:hover::before {
    left: 0;
  }
  
  .layer-btn1:hover::after {
    right: 0;
  }
  
  .layer-btn1:hover {
    color: #fff;
  }

  .text-animation {
    font-weight: bold;
    background: linear-gradient(90deg, #28a745, #c4535e, #007bff, #28a745);
    background-size: 300%;
    
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  
    animation: hue 6s linear infinite;
  }
  
  /* Animation */
  @keyframes hue {
    0% {
      background-position: 0%;
    }
    100% {
      background-position: 300%;
    }
  }