.tj-primary-btn{
    border-radius: 30px;
    overflow: hidden;
}


.slider-title {
  color: #fff;
  text-shadow:
    0 2px 4px rgba(15, 38, 65, 0.4), 
    0 4px 15px rgba(56, 182, 255, 0.25); 
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  span {
    color: #38B6FF;
    text-shadow:
      0 2px 6px rgba(15, 38, 65, 0.3),
      0 0 12px rgba(51, 204, 255, 0.4);
  }
  text-align: start;
  text-wrap: balance;
  word-break: break-word;
}

.slider-desc {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow:
    0 1px 3px rgba(15, 38, 65, 0.35),  /* deep navy softness */
    0 2px 8px rgba(0, 0, 0, 0.25);      /* gentle universal glow */
  max-width: 650px;
  margin: 0 auto;
  font-weight: 400;
}


/* about section */

    .about-img img{
        width: 510px;
        height: 581.31px;
    }

    /* --------------------------------------------------------------
   MODERN ABOUT SECTION
-------------------------------------------------------------- */

.ccla-about-modern {
    position: relative;
}

.about-modern-content .modern-subtitle {
    font-weight: 600;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.about-modern-content .desc {
    margin: 20px 0;
    line-height: 1.7;
}

.btn-area {
  display: flex;
  justify-content: space-between;
}

/* ------ Floating Image Layout ------ */

.about-media-wrap {
    position: relative;
    width: 100%;
    padding-right: 40px;
}

.about-media-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-media-card img {
    width: 100%;
    height: auto;
    display: block;
}

.about-media-card.small-card {
    position: absolute;
    width: 55%;
    right: 5px;
    bottom: -20px;
    border-radius: 18px;
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Decorative floating dot */
.about-deco-circle {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0,150,255,0.15);
    border-radius: 50%;
    right: 50px;
    top: -20px;
}

.float-slow {
    animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
    0%,100% { transform: translateY(0) }
    50% { transform: translateY(-18px) }
}

/* Tilt Animation */
.tilt-effect:hover {
    transform: perspective(600px) rotateY(6deg) rotateX(4deg) scale(1.02);
    transition: 0.4s ease;
}

/* ---- Feature List ---- */
.feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.customer-group {
    text-align: left;
}

.customer-imgs {
    display: flex;
    align-items: center;
    gap: -10px;
}

.customer-imgs img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.customer-imgs .more {
    background: var(--tj-primary);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted {
    margin-top: 8px;
    font-size: 15px;
}



/* Global text highlight color */
::selection {
  background-color: #38B6FF;   /* your sky blue accent */
  color: #fff;                 /* white text for contrast */
}


/* services section */

.service-box{
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease; /* optional subtle lift */
}

.service-box:hover {
  transform: translateY(-4px);
}

.s-content-area{
    position: absolute;
    bottom: -250px;
    padding-left: 10px;
    padding-bottom: 20px;
    background-color: #0F2641;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
    transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1); /* smooth, elegant */
    border-top: 3px solid #38B6FF; /* optional accent line */
}

.s-content-area a strong{
  transition: color 0.3s ease;
}

.s-content-area a:hover strong{
  color: #38B6FF;
}

/* When hovered, the content slides up smoothly */
.service-box:hover .s-content-area {
  bottom: 0;
  opacity: 1;
}

.services-title{
    margin-bottom: 60px;
}

.icons-area{
    margin-top: 10px;
    margin-bottom: 10px;
}

.icons-area a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* initial icon color */
  background-color: #0F2641; /* optional background circle */
  border-radius: 50%;
  transition: all 0.3s ease;
}

.icons-area a svg {
  transition: transform 0.3s ease;
}

/* Hover effect */
.icons-area a:hover {
  color: #38B6FF; /* change color on hover */
  background-color: rgba(15, 38, 65, 0.2); /* optional light glow */
  transform: translateY(-3px);
}

.icons-area a:hover svg {
  transform: scale(1.1);
}


.s-content-area .title,
.icons-area h4{
    color: #fff;

}

.s-content-area p{
    color: #fff;
}

.s-content-area .readmore{
    color: #fff;
}

.s-content-area .readmore:hover{
    color: #38B6FF;
}

.services-btn-container{
    margin-top: 30px;
}

/* testimonial section */

.testimonial5{
    margin-top: 60px;
}

.testimonial-section {
  position: relative;
  padding: 80px 0;
}

.testimonial-slider {
  width: 100%;
}

.testimonial-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-box .images {
  margin-bottom: 20px;
}

.testimonial-box .images img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38B6FF;
  transition: transform 0.3s ease;
}

.testimonial-box:hover .images img {
  transform: scale(1.05);
}

.stars {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonial-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.content-man-area .text a {
  display: block;
  font-weight: 600;
  color: #0F2641;
  font-size: 18px;
  text-decoration: none;
}

.content-man-area .text p {
  color: #6d8094;
  font-size: 14px;
  margin-top: 5px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #38B6FF;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #0F2641;
}

.testimonial-section{
    margin-bottom: 50px;
}


/* projects section */

    .sticky-lg-top {
        top: 95px !important;
    }

/* footer */


.contact-link{
    color: #0F2641 !important;
}

.footer-widget ul li a:hover{
    color: #38B6FF !important;
}


/* sidebar */

.hamburger-infos .contact-info .contact-item .contact-link{
    color: #fff !important;
}


/* hero slider section */

.tj-slider-item .slider-content .slider-title img{
  background-color: white;
}


/* side bar */

.offcanvas-text p{
    color: #ffffff;
}


/* responsive home page */

@media (max-width: 1025px) {
  /* Infinite vertical scroll animation */
.cta-area .cta-img {
    width: 49.3%;
    height: 100%;
    min-height: 200px;

    background-size: contain;
    background-repeat: repeat-y; /* only repeat vertically */
    background-position: 0 0;

    position: absolute;
    right: 0;
    top: 0;

    animation: verticalScroll 12s linear infinite;
}

/* Smooth vertical loop */
@keyframes verticalScroll {
    0% {
        background-position-y: 0;
    }
    100% {
        background-position-y: -100%;
    }
}

}

@media (max-width: 768px) {

  .hamburger-area{
    z-index: 99999 !important;
  }
    .tj-slider-item .slider-content .slider-title{
      font-size: 55px !important;
    }

    h2{
      font-size: 35px;
    }

    .about-media-wrap {
      margin-top: 50px;
    }

    /* Wrapper adjusts spacing */
    .about-media-wrap {
        padding-right: 0;
        max-width: 85%;
    }

    /* Main image smaller */
    .about-media-card {
        border-radius: 16px;
        max-width: 85%;
        margin: 0 auto;
    }

    .about-media-card img {
        border-radius: 16px;
    }

    /* Small floating image scaled down more */
    .about-media-card.small-card {
        width: 45%;          /* smaller */
        right: -10px;
        bottom: -10px;
        border-radius: 14px;
    }

    .about-media-card.small-card img {
        border-radius: 14px;
    }

    /* Decorative circle smaller */
    .about-deco-circle {
        width: 45px;
        height: 45px;
        right: 20px;
        top: -10px;
    }

    .experience-wrap .year-count{
      font-size: 300px;
    }

    .row{
      row-gap: 20px;
    }

    .tj-marquee-section .tj-marquee-clean{
      height: 175px !important;
    }

    .marquee-item .marquee-text{
      font-size: 40px;
    }

    /* mobile side navbar menu */
    /* MENU LIST */
.hamburger_menu {
    margin-top: 16px;
    margin-bottom: 18px;
    flex: 1 1 auto;
    overflow-y: auto;
}

.mobile_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile_menu li {
    margin-bottom: 6px;
}

.mobile_menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #e3e9f5;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

/* little bullet / indicator on the right */
.mobile_menu a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* hover / active */
.mobile_menu a:hover {
    background: rgba(15, 211, 255, 0.12);
    border-color: rgba(15, 211, 255, 0.5);
    color: #ffffff;
}

.mobile_menu li.current-menu-item a {
    background: rgba(15, 211, 255, 0.18);
    border-color: #0fd3ff;
    color: #ffffff;
}

.mobile_menu li.current-menu-item a::after {
    background: #0fd3ff;
}
}

/* Default Marquee Height */
.tj-marquee-section-2,
.marquee-wrapper,
.marquee-slider,
.marquee-item {
    height: 175px;
    max-height: 175px;
    overflow: hidden;
}

@media (max-width: 426px) {
  .tj-slider-item .slider-content .slider-title{
    font-size: 45px !important;
  }

  h2 {
        font-size: 30px;
    }

  .experience-wrap .year-count {
        font-size: 250px;
    }
  
    .chose-box .chose-icon{
      display: flex;
      justify-content: center;
    }

    .marquee-item .marquee-text {
        font-size: 30px;
    }

    .testimonial-section{
      margin-bottom: 0;
    }

    .tj-cta-section{
      display: none;
    }
}

@media (max-width: 376px) {
  .tj-slider-item .slider-content .slider-title {
        font-size: 30px !important;
    }
  .tj-slider-item .slider-content .slider-desc{
        font-size: 16px !important;
  }

  .tj-primary-btn{
    font-size: 14px;
  }

    h2 {
        font-size: 25px;
    }
  
    .btn-text{
      font-size: 12px;
    }

      .experience-wrap .year-count {
        font-size: 200px;
    }

    .marquee-item .marquee-text {
        font-size: 25px;
    }

    .work-item.style-3 .work-content .title{
      font-size: 18px;
    }
}

@media (max-width: 320px) {

  .logo img{
    height: 80px;
  }
  .tj-slider-item .slider-content .slider-title {
        font-size: 25px !important;
    }

  .tj-slider-item .slider-content .slider-desc,
  .about-modern-content .desc,
   .chose-box .desc{
        font-size: 14px !important;
    }

    h2 {
        font-size: 20px;
    }

    .btn-text {
        font-size: 9px;
    }

    .experience-wrap .year-count {
        font-size: 150px;
    }

    .chose-box .title{
      font-size: 16px;
    }

    .chose-box .chose-icon {
        font-size: 30px;
    }

    h5{
      font-size: 18px;
    }

      .marquee-item .marquee-text {
        font-size: 20px;
    }

  .content-wrap .desc,
  .accordion-body p,
  .testimonial-box p,
  .footer-widget .footer-text p,
  .contact-link,
  .widget-nav-menu ul li a,
  .tj-copyright-area .copyright-text a,
  .tj-copyright-area .copyright-text p,
  .s-content-area p{
      font-size: 14px;
  }

      .tj-faq.style-3 .accordion-item .faq-title,
      .content-man-area .text a {
        font-size: 16px;
    }

    .work-item.style-3 .work-content .title,
    .footer-widget .title{
      font-size: 16px;
    }

}