/* body{
    cursor: none;
} */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    z-index: 0;
    /* background: linear-gradient(to bottom, #3c5ea8, #a258dc, #d08ee8); */
        background: linear-gradient(135deg, #007AC2, #F7941D);

}

.scroll-indicator {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.scroll-indicator svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-indicator circle {
    fill: none;
    stroke-width: 8;
}

.scroll-indicator .bg {
    stroke: #ccc;
}

.scroll-indicator .progress {
    stroke: #007AC2;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-indicator .arrow {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: #007AC2;
    font-weight: bold;
    pointer-events: none;
    /* allow clicks to pass through */
}

.circle {
    height: 20px;
    width: 20px;
    border-radius: 24px;
    background-color: #034267;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999999;
}

/* Preloader Container */
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
} */

/* Bouncing Dots */
/* .bouncing-loader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
}

.bouncing-loader div {
    width: 18px;
    height: 18px;
    background: #ff9900;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.bouncing-loader div:nth-child(2) {
    animation-delay: 0.2s;
}

.bouncing-loader div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    to {
        transform: translateY(-20px);
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
} */


.content-wrapper {
    position: relative;
    z-index: 1;
}

.navbar {
    position: fixed;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}


.navbar-brand {
    margin-left: 140px;
}

.nav-link {
    color: black;
    font-size: 18px;
}

.nav-link {
  position: relative;
  color: black;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #4188d2; /* You can change this to match your theme */
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #4188d2;
}

.nav-link:hover::after {
  width: 100%;
}


.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    max-width: 700px;
    color: white;
    margin-top: 60px;
}

.hero-text {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 80px;
    margin-top: 30px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    text-align: left;
    padding: 20px 0;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.animated-word {
    display: inline-block;
    opacity: 0;
    animation: scaleUp 1.2s ease-out forwards, floatText 4s ease-in-out infinite;
    animation-delay: 0s, 1.2s;
}

@keyframes scaleUp {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes floatText {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-text-subtext {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 27px;
    font-weight: 400;
    margin-top: 50px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    padding: 20px 0;
    letter-spacing: 0.8px;
    opacity: 0;
    animation: fadeInSubtext 2.5s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInSubtext {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-image {
    max-width: 650px;
    width:100%;
    height: 550px;
    margin-top: 100px;
    /* border-radius: 20px; */
    /* object-fit: cover; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease; 
}

.hero-image:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .hero-text-block {
        align-items: center;
        max-width: 100%;
    }

    .hero-text,
    .hero-text-subtext {
        text-align: center;
        font-size: 6vw;
    }

    .hero-text-subtext {
        font-size: 4.5vw;
    }

    .hero-image {
        max-width: 100%;
        height: auto;
        /* Ensures image doesn't get squished */
    }
}


.section-container {
    padding: 60px 0;
}

.main-image {
    position: relative;
    max-width: 400px;
    height: 500px;
    border-radius: 30px !important;
    transition: left 1s ease-out;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.small-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    height: 200px;
    background: white;
    padding: 6px;
    border-radius: 10px;
    clip-path: polygon(25% 5.77%, 75% 5.77%, 100% 50%, 75% 94.23%, 25% 94.23%, 0% 50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: popUp 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.small-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit;
    transform: translateZ(0);
    will-change: transform, opacity;
}

@keyframes popUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hex-wrapper {
    position: absolute;
    bottom: 10px;
    right: 60px;
    width: 200px;
    height: 200px;
    background: white;
    padding: 6px;
    border-radius: 10px;
    clip-path: polygon(25% 5.77%, 75% 5.77%, 100% 50%, 75% 94.23%, 25% 94.23%, 0% 50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: popUp 1s ease-out both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.hex-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: inherit;
    transform: translateZ(0);
    will-change: transform, opacity;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 767px) {
    .small-image {
        width: 90px;
        top: 10px;
        left: 10px;
    }
}

.choose-us {
    font-family: 'Source Sans Pro', sans-serif;
    color: black;
    line-height: 2;
    font-size: 20px;
}


.icon-circle {
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.badge-custom {
    background-color: #ede9fe;
    color: #007AC2;
    font-weight: 600;
    font-size: 40px;
    padding: 5px 15px;
    border-radius: 25px;
}

.web-project-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  color: #222; /* or #fff for dark bg */
  position: relative;
  opacity: 0;
  text-align: left;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.web-project-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00feba, #5b2cff);
  margin-top: 8px;
  border-radius: 4px;
}

.web-project-heading.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* Entrance Animation */
@keyframes fadeInHeading {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes underlineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

.project-card {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}


#projects i {
    color: #F7941D;
}

.project-back {
    background: linear-gradient(135deg, #c4d1fa, #F7941D);
    padding: 40px 0;
    width: 100%;
    margin-top: 10px;
}

.project-card {
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 20px !important;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  min-height: 130px;
  display: flex;
  align-items: start;
  text-align: left;
}


.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f1f1f1;
  color: #a05800;
}

.project-card i {
  color: #F7941D;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 36px;
  transition: transform 0.4s ease;
}

.project-card:hover i {
  transform: rotate(10deg) scale(1.1);
}


.project-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.project-card p {
  margin: 0;
  font-size: 15px;
  color: #555;
}



.why-choose-card {
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}

.why-choose-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* z-index: 1; */
}

.why-choose-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(111, 66, 193, 0.15), transparent);
    z-index: -1;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 50%;
}

.why-choose-card:hover::before {
    transform: scale(1.5);
    opacity: 1;
}

.why-choose-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background-color: #e6e0f8;
    color: #F7941D;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-choose-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #343a40;
    transition: color 0.3s;
}

.why-choose-card p {
    color: #6c757d;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.why-choose-card:hover h5,
.why-choose-card:hover p {
    color: #007AC2;
}



.counter-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    text-align: center;
}


.counter-icon {
    width: 70px;
    height: 70px;
    color: #007AC2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 5px;
}

.counter-card p {
    margin: 0;
    font-size: 1rem;
    color: #6c757d;
}


.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #c4d1fa, #F7941D);
    overflow: hidden;
    padding: 5rem 0;
    margin-top: 50px;
}

.testimonial-card {
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    border-radius: 20px;
    height: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    padding: 1.5rem;
    text-align: center;
}

.testimonial-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    transform: rotateX(2deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
}

.testimonial-card h6 {
    margin-top: 1.2rem;
    font-weight: 700;
    color: #444;
}

.floating-icon {
    position: absolute;
    font-size: 100px;
    opacity: 0.3;
    animation: float 15s infinite linear;
    color: #000;
    z-index: 0;
    filter: blur(2px);
}

.floating-icon:nth-of-type(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    color: #333;
}

.floating-icon:nth-of-type(2) {
    top: 60%;
    left: 85%;
    animation-delay: 2s;
    color: #555;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(15deg);
    }
    50% {
        transform: translateY(0) rotate(30deg);
    }
    75% {
        transform: translateY(-20px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 5px #fff);
}



.icon-circle1 {
    width: 50px;
    height: 50px;
    border: 2px dotted #007AC2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-msg {
    background-color: #007AC2;
    color: white;
}

.send-msg:hover {
    background-color: #a258dc;
    color: white;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(224, 58, 60, 0.2);
    transition: all 0.3s ease-in-out;
}

.contact-txt {
    font-size: 25px;
    color: black !important;
}

.footer-background{
background: linear-gradient(to right, #f6a816a3, #007acc8d);
}

.footer-logo {
  max-width: 230px;
}

@media (max-width: 1024px) {
  .footer-logo {
    margin-left: -30px;
  }
}


.footer-description {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.facebook-icon i:hover{
    color: #1877F2;
}
.yt-icon i:hover{
    color: red;
}
.insta-icon i:hover{
    color: rgb(95, 18, 77);
}
.ggl-icon i:hover{
    color: #4285F4;
}
