@import url('https://fonts.cdnfonts.com/css/tt-norms');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     /* font-family: 'TT Norms', sans-serif !important; */
}

:root {
  --first-color: #011f38;
  --second-color: #f16d00;
}

/* Navbar */
.logo img {
    width: 100%;
}

.logo {
    width: 12%;
}
.naavbar ul {
    display: flex;
    gap: 10px;
}

#menuBtn {
    display: none;
}

.naavbar li a {
    font-size: 20px;
    padding-right: 20px;
}
h1{
     font-family: 'TT Norms', sans-serif !important;
}
h3{
  color: #f16d00;
     font-family: 'TT Norms', sans-serif !important;
}
h2{
  color: #011f38;
      font-family: 'TT Norms', sans-serif !important;
}
h4,h5{
    font-family: 'TT Norms', sans-serif !important;
}
p{
  color: #011f38;
    font-family: 'TT Norms', sans-serif !important;
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
     font-family: 'TT Norms', sans-serif !important;
}
li{
     font-family: 'TT Norms', sans-serif !important;
}
a{
    text-decoration: none;
    display: inline-block;
    /*font-family: "Montserrat", sans-serif !important;*/
       font-family: 'TT Norms', sans-serif !important;
}
.cluch-section {
    padding: 60px 0;
}
.our-partner-main {
    padding: 60px 0;
}
.header-button-sec1 button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
.header-button-sec1 .learn-more {
  width:100%;
  height: auto;
}
.header-button-sec1 .learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #f16d00;
  border-radius: 1.625rem;
}
.header-button-sec1 .learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.header-button-sec1 .learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.header-button-sec1 .learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.header-button-sec1 .learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #011f38;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.header-button-sec1 button:hover .circle {
  width: 100%;
}
.header-button-sec1 button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.header-button-sec1 button:hover .button-text {
  color: #fff;
}

.navbar {
    height: 80px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 1000;
}
.our-part-image img {
    width: 100%;
}

/* Hamburger Button */

.menu-btn {
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.menu-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    left: 0;
    transition: 0.3s ease;
}

.menu-btn span:first-child {
    top: 6px;
}

.menu-btn span:last-child {
    bottom: 6px;
}
.menu-btn.active span {
    background-color: #f16d00;
}

/* Hamburger → Close */

.menu-btn.active span:first-child {
    top: 50%;
    transform: rotate(45deg);
}

.menu-btn.active span:last-child {
    top: 50%;
    transform: rotate(-45deg);
}
.naavbar nav >ul >li {
    position: relative;
}

.naavbar nav >ul >li >ul {
    display: inline-block;
    position: absolute;
    top: 60px;
    left: 0;
    /* flex-direction: column; */
    padding: 20px 0px;
    background-color: #000;
    transform-origin: top;
    transform: scaleY(0);
    transition: all .5s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    min-width: 100px;
}

.naavbar nav >ul >li:hover>ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
ul.sub-menu li a {
    color: #fff;
    font-size: 15px;
}

/* Side Menu */

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-overlay.active {
    transform: translateX(0);
}


/* Menu Links */

.menu-links {
    list-style: none;
    text-align: center;
}

.menu-links li {
    padding: 20px 0;
}
ul.sub-menu li {
    padding: 7px 0;
}
.menu-links a {
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
    color: #011f38;
    transition: 0.3s;
    transition: all .3s;
}

.menu-links a:hover {
   color: #f16d00;
}

.menu-links .cta {
    font-weight: 700;
}


/* Mobile */

@media (max-width: 768px) {
    .menu-overlay {
        width: 100%;
    }
}

button:focus {
    outline: none;
}

.menu-btn:hover span {
    background: #BD5B23;
    /* jo color chaho */
}

.header-banner-heading h1 {
    font-size: 88px !important;
    font-family: math;
      font-weight: 400;
    color: #011f38;
}

.header-banner-heading p {
    font-size: 20px;
    font-family: monospace;
    color: #011f38;
}

@media (min-width: 1280px) {
    .main-banner-sec1 {
        padding-top: 100px;
        padding-left: 156px;
        padding-right: 156px;
    }
}

@media (min-width: 768px) {
    .main-banner-sec1 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.header-button-sec1 a {
    padding: 14px;
    background: #f16d00;
    border-radius: 50px;
    margin-top: 38px;
    /* margin: 29px; */
    color: white;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .main-banner-sec1 {
        padding-bottom: 120px;
        padding-left: 80px;
        padding-right: 80px;
        overflow: hidden;
    }
}

.header-button-sec1.mt-4 {
    margin-top: 60px !important;
}

video {
    border-radius: 28px;
    /* height: 1100px; */
    /* width: 1745px; */
}

.cursor-section {
    /* height: 400px;
    background: #f2f2f2; */
    position: relative;
    overflow: hidden;
    padding: 32px;
        overflow: hidden;
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

textPath {
    font-size: 14px;
    /* font-weight: 600; */
    gap: 29px;
    font-size: 30px;
    word-spacing: 13px;
}

.reword-text-pk.mt-md-4 h3 {
    font-family: math;
    font-size: 17px;
    font-weight: 600;
    text-transform: none;
    line-height: 1.6;
}

.reward-sec-review h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.reward-sec-review p {
    font-size: 11px;
    font-weight: 500;
}

.new-reword-first {
    /* padding-left: 17px; */
    border-left: 1px solid gray;
}

.inner-img-sec1 {
    border-left: 4px solid;
    height: 40px;
}

.reward-sec-review h2 i {
    font-size: 14px;
    color: red;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1250px;
    }
}

.trust-section {
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.client-logo {
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


/* Cursor */



.testimonail {
  padding: 60px 0;
      overflow: hidden;
}


.testimonail-card {

  border-radius: 12px;
  /* overflow: hidden; */
}

.testimonail-card .media {
  position: relative;
  width: 85%;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
}
.testimonail-card .media video {
    border-radius: 15px;
}

.testimonail-card .media img,
.testimonail-card .media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s ease;
}

.testimonail-card .media video {
  opacity: 0;
}

.testimonail-card:hover .media img {
  opacity: 0;
}

.testimonail-card:hover .media video {
  opacity: 1;
}

.testimonail-card .content {
  margin: 35px 0;
  color: rgb(19 22 35);
  padding-right: 150px;
}

.testimonail-card .content h3 {
      font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 35px;
}

.testimonail-card .content p {
  font-size: 14px;
  opacity: 0.8;
}


.svg-review svg {
    color: #f16d00;
    width: 20px;
}
.review-content h4 {
  color: #011f38;
}

.review-main {
    display: flex;
    align-items: start;
    gap: 15px;
}

.svg-review {
    position: relative;
}

.review-content {
    position: relative;
}

.review-content::before {
    position: absolute;
    content: '';
    background-color: rgb(210 213 225);
    width: 1px;
    height: 75%;
    top: 40px;
    left: -25px;
}

.review-content p {
    color: #011f38;
    font-size: 19px;
    padding-right: 150px;
    font-weight: 400;
}

.review-content h4 {
    font-size: 16px;
    font-weight: 700;
}

.review-content h5 {
    color: #011f38;
    font-size: 17px;
}
.media.two {
    margin-top: -60px;
}
.our-partner {
    /* padding: 60px 0; */
    overflow: hidden;
}
.our-partner h2 {
    color: #011f38;
    font-size: 40px;
    font-weight: 600;
}
.our-partner p {
    color: #011f38;
    font-size: 20px;
    padding: 0 180px;
    line-height: 35px;
        margin: 40px 0 60px 0;
}
.our-client-logo {
    margin-bottom: 50px;
}
.our-client-logo img {
    width: 70%;
    display: block;
    object-fit: cover;
}










.client-tooltip {
  position: fixed;
  width: 260px;
  background: #fff;
  color: #111;
  padding: 15px;
  border-radius: 12px;

  /* white shadow glow */
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.25);

  pointer-events: none;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: 0.15s ease;
  z-index: 9999;
}

.client-tooltip h3 {
  margin: 0;
  font-size: 18px;
}

.client-tooltip h5 {
  margin: 5px 0;
  font-size: 13px;
  color: #011f38;
}

.client-tooltip p {
  font-size: 12px;
  opacity: 0.85;
  color: #011f38;
}

.our-client-logo.two {
  cursor: pointer;
  transition: 0.3s;
}

.our-client-logo.two:hover {
  transform: translateY(-3px);
}


.cursor-text {
  position: fixed;   /* 🔥 ye change zaroori hai */
  top: 0;
  left: 0;
    animation: rotate 6s linear infinite;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: none;
  z-index: 9999;
}




.we-offer-title h2 {
    font-weight: 600;
    font-size: 35px;
}

.we-service-main svg {
    width: 25px;
    /* display: inline-block; */
  transition: transform 0.6s ease;
  transform-style: preserve-3d; 
}

.we-service-main {
    margin: 70px 0 0 0;
        height: 300px;
         cursor: pointer;

}

.we-service-main h4 {
    font-size: 18px;
    color: #011f38;
    margin: 15px 0 10px 0;
}

.we-service-main p {
    color: #011f38;
    font-size: 18px;
}

.we-service-main:hover svg {
      transform:translateX(-7px) translateY(7px) rotateY(180deg) !important;
}
.we-offer-service {
    padding: 0px 0;
    border-bottom: 1px solid #e7e7e7;
        margin-bottom: 40px;
        position: relative;
            overflow: hidden;
}
.we-offer-title {
    overflow: hidden;
}















.service-row {
  position: relative;
}


.service-indicator {
  position: absolute;
  bottom: 0;
  left: 0;

  height: 2px;
  width: 0;
  background: #f16d00;

  transition: all 0.5s ease;
}










.tabs {
  display: flex;
  list-style-type: none;
      margin: 50px 0 40px 0;
  padding: 0;
  gap: 10px;
   position: sticky;
  top: 100px; /* header height ke hisaab se adjust karo */
  z-index: 1000;
   
}

ul.tabs p {
    margin-bottom: 0;
}

/* .tabs p{
  display: none;
  margin: 0 0 10px 0;
} */

/* jab sticky active ho */
/* .tabs.sticky-active + .tabs p{
  display: block;
} */

.tab {
      cursor: pointer;
    padding: 5px 13px;
    color: #fff;
    font-size: 14px;
    border-radius: 10px;
    font-weight: 500;
    transition: all .3s;
    border: 1px solid #011f38;
    background-color: #011f38;
    
}

.tab.active {
    border: 1px solid #f16d00;
    background-color: #fff;
    color: #f16d00;
}

.tab:hover {
   border: 1px solid #f16d00;
    background-color: #011f38;
}

.tab-content {
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
}
[data-tab-content] {
  display: none;
  transform: translateX(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

[data-tab-content].active {
  display: block;
  transform: translateX(0);
  opacity: 1;
}

.tab-main-card img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.tab-main-card a {
    display: inline-block;
}

.tab-main-card img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    transform: translate(0px, 0px);
    transition: all .3s;
}

.tab-main-card h4 a span {
    color: #011f38;
}

.tab-main-card h4 a {
    color: #f16d00;
    font-size: 18px;
    margin: 15px 0;
    text-decoration: none;
    transition: all 3.s;
}
.tab-main-card:hover h4 a {
  color: #f16d00;
}

ul.catagry {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

ul.catagry li a 
{color: #011f38;
 font-size: 14px;
 font-weight: bolder;
}

.tab-main-card img:hover {
    transform: translate(0px, -5px);
}
.tab-main-card {
    margin-bottom: 60px;
}
.tabs-section {
    padding: 60px 0;
       
}










/* Section */
.roadmap-section {
  position: relative;
  padding: 20px 0;
}

/* Sticky Heading */
.sticky-header {
  position: sticky;
  top: 80px;
  text-align: center;
  padding: 20px 20px;
  background: #fff;
    z-index: 10;
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
    overflow: hidden;
}
section.roadmap-section strong {
    color: #f16d00;
}
.heart-image {
    position: absolute;
    bottom: 0;
        left: 50%;
    margin-left: -25px;
}
.heart-image img {
    width: 20%;
}

.sticky-header h2 {
  font-size: 28px;
  margin: 0;
}

/* Container */
.roadmap-container {
  position: relative;
  width: 900px;
  margin: auto;
  overflow: hidden;
}

/* Center Line Image */
.line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}


/* center line */
.line img {
width: 100%;
  display: block;

  /* start hidden */
  mask-image: linear-gradient(to bottom, black 0%, transparent 0%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 0%);
}

/* Items */
.item {
  position: relative;
  width: 50%;
  padding: 40px 30px;
}

.item.left {
  left: 0;
  text-align: right;
}

.item.right {
  left: 50%;
}

/* Cards */
.card {
  display: inline-block;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  /*max-width: 280px;*/
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Spacing for vertical flow */
.item:nth-child(2) { margin-top: 80px; }
.item:nth-child(3) { margin-top: 20px; }
.item:nth-child(4) { margin-top: 0px; }

/* Responsive */
@media (max-width: 768px) {

  .roadmap-container {
    width: 100%;
    padding: 0 20px;
  }

  .line {
    left: 20px;
    transform: none;
  }

  .item {
    width: 100%;
    padding-left: 60px;
  }

  .item.left,
  .item.right {
    left: 0;
    text-align: left;
  }
}

.curser-main-section{
  overflow: hidden;
}






.peckege-pricing {
  padding: 60px;
  text-align: center;
      overflow: hidden;
}

/* .peckege-pricing .pricing h2 {
  margin-bottom: 40px;
} */

.peckege-pricing .cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.peckege-pricing .card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 260px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.peckege-pricing .card h5 {
  font-size: 12px;
  color: #011f38;
  margin-bottom: 10px;
}

.peckege-pricing .card h3 {
  margin: 10px 0;
  font-size: 25px;
}

.peckege-pricing .card .time {
  color: #011f38;
  margin-bottom: 15px;
}

.peckege-pricing .card button {
  width: 100%;
  padding: 10px;
  border: 1px solid #011f38;
  background: #011f38;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 15px;
  color: #fff;
  transition: all .3s;
}
.peckege-pricing .card:hover button {
    background-color: #f16d00;
}
.peckege-pricing .card ul {
  padding-left: 18px;
}

.peckege-pricing .card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #011f38;
}

/* Dark Card */
.peckege-pricing .card.dark {
  background: #011f38;
  color: #fff;
}
.peckege-pricing .card.dark h5, .peckege-pricing .card.dark .from {
  color: #fff;
}

.peckege-pricing .card.dark button {
  border-color: #555;
  color: #fff;
}

.peckege-pricing .card.dark .desc {
  font-size: 14px;
  margin-top: 15px;
  color: #ccc;
}
section.peckege-pricing .we-offer-title {
    margin-bottom: 50px;
}


.links a:hover::before {
    width: 100%;
}
.links a::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0%;
    background-color: #f16d00;
    height: 1px;
    transition: all .4s;
}
.links a {
    position: relative;
        color: #fff;
        text-decoration:none;
}



/* footer-css */


/* FOOTER WRAPPER */
.footer {
  background: #011f38;
  color: #fff;
  padding-bottom: 20px;
   position: sticky !important;
    bottom: 0 !important;
    z-index: 1 !important;
}

/* MAIN GRID */
.footer-section {
    padding-right: 50px;
}
/* LEFT + RIGHT */

/* SECTION */
.footer-section h4 {
      font-size: 25px;
    color: #f16d00;
    font-weight: 500;
    padding-top: 0px;
    padding-bottom: 30px;
}

/* LINKS GRID */
.footer  .links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.footer  .links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.footer  .links a:hover {
  color: #f16d00;
}

/* SMALL TEXT */
.footer  .sub-title {
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

.footer  .copyright {
  margin-top: 30px;
  font-size: 13px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left,
  .footer-right {
    flex-direction: column;
  }

 .footer  .links {
    max-width: 100%;
  }
}








.chat-wrapper {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
}

/* Main Button (centered properly) */
.main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #011f38;
  color: white;
  border: none;
  font-size: 22px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  cursor: pointer;
  transition: all .3s;
}
.main-btn:hover {
    background-color: #e15f01;
}
#chatWrapper.active .main-btn {
    background-color: #f16d00;
}

/* Smaller Circle */
.circle-text {
     width: 140px;
    height: 140px;
    position: absolute;
    bottom: -25px;
    right: -25px;
    animation: rotateSlow 25s linear infinite;
}

.circle-text svg {
  width: 100%;
  height: 100%;
}

/* Smaller font */
.circle-text text {
  fill: #f16d00;
  font-size: 10px;
  letter-spacing: -1px;
}
.chat-wrapper textPath {
    font-size: 14px;
    /* font-weight: 600; */
    gap: 30px;
    font-size: 23px;
    word-spacing: 10px;
}

/* Options */
.chat-options {
  position: absolute;
  bottom: 120px;
  right: 20px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  align-items: flex-end; /* IMPORTANT */
      opacity: 0;
    transition: all .5s;
}

.chat-wrapper.active .chat-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Option buttons */
/* chat button */
.chat-btn {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background: #011f38;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
  text-decoration: none;

  flex-shrink: 0; /* IMPORTANT */
}
.chat-btn {
  transition: width 0.4s ease;
  z-index: 1;
}


/* icon */
.chat-btn .icon {
  position: absolute;
  transition: 0.4s ease;
  font-size: 18px;
      color: #fff;
}

/* text (hidden initially) */
.chat-btn .text {
  position: absolute;
  left: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  transition: 0.4s ease;
  font-size: 14px;
  color: #fff;
}

/* hover effect */
.chat-btn:hover {
  width: 210px;
  justify-content: flex-start;
  padding-left: 18px;
  z-index: 10;
  background-color: #f16d00;
}

/* icon slide left */
.chat-btn:hover .icon {
      transform: translateX(-8px);
    opacity: 1;
}

/* text slide in */
.chat-btn:hover .text {
  opacity: 1;
  transform: translateX(0);
}

/* Rotation */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.concept-about {
    padding: 60px 0;
    overflow: hidden;
}
.move-image img {
      width: 28%;
  display: block;

  animation: floatUpDown 3s ease-in-out infinite;
}

/* animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px); /* upar move */
  }
  100% {
    transform: translateY(0px);
  }
}

.move-image {
    position: absolute;
    top: 3%;
    left: 30%;
}
.move-main-image {
    position: relative;
}


.list-concept ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-concept ul li {
    display: flex;
    gap: 10px;
    font-size: 20px;
    color: #011f38;
      margin-bottom: 30px;
}




.list-concept svg {
    width: 23px;
}
/* base state (IMPORTANT) */
.list-concept ul li .icon {
  transition: transform 0.6s ease;
  transform: rotateY(0deg);
}

/* hover state */
.list-concept ul li:hover .icon {
  transform: rotateY(180deg);
}

/* 3D feel */
.list-concept ul li {
  perspective: 1000px;
}
.move-main-image .our-partner {
    padding-top: 0;
}



/*.getport-btn {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    align-items: center;*/
/*}*/

.gee-port-main-btn {
    width: 65%;
}
.getport-btn  .header-button-sec1 .learn-more {
    width: 90%;
    height: auto;
}
.foter-top .our-partner p {
    color: #fff;
    padding: 0 0;
    margin-bottom: 35px;
}

.links.two {
    margin-top: 40px;
}

/* .adress-detail {
    display: flex;
    gap: 25px;
} */

.adress-detail h4 {
    font-size: 15px;
}

.adress-detail p {
    font-size: 15px;
    color: #fff;
}

.cluth-images {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cluth-images img {
    width: 15%;
}
.cluth-reviews a ul {
    display: flex;
    gap: 10px;
}

.cluth-reviews p {
    font-size: 11px;
    color: #fff;
    margin-bottom: 0;
}

.cluth-reviews h6 {
    color: #fff;
    font-size: 14px;
}

.foter-top {
    background-color: #011f38;
    color: #fff;
    padding: 50px 0;
        position: relative !important;
         z-index: 2 !important;
    /*height: 80vh !important;*/
}
.footer-section .links li a {
    font-size: 18px;
    margin-bottom: 18px;
}

.cluth-reviews a {
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 37px;
    text-decoration: none;
    margin-top: 40px;
}
.foter-top .our-partner h2 {
    color: #fff;
    margin-bottom: 40px;
}
.getport-btn .header-button-sec1 .learn-more .button-text {
    color: #fff;
}
.links.two a {
    margin-right: 10px;
    font-size: 20px;
}
.foter-top .our-partner {
    padding-top: 0;
}
.page-wrapper{
    position: relative !important;
    
}

/*pages css*/

.main-banner-sec1 h4 {
    color: #e05b01;
    font-size: 20px;
    margin-bottom: 20px;
}



/*contact-us-page-css*/
  .hk-contact-wrap {
  width: 100%;
}

.hk-contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.hk-contact-head {
  text-align: center;
  margin-bottom: 30px;
}

.hk-contact-head h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.hk-contact-head p {
  font-size: 14px;
  color: #666;
}

.hk-contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hk-input-group {
  position: relative;
}

.hk-input-group input,
.hk-input-group textarea {
  width: 100%;
  padding: 14px 12px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
  background: transparent;
}

.hk-input-group label {
  position: absolute;
  top: 50%;
  left: 12px;
  color: #888;
  font-size: 13px;
  pointer-events: none;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 6px;
  transition: 0.3s;
}

.hk-input-group textarea + label {
  top: 18px;
  transform: none;
}

.hk-input-group input:focus,
.hk-input-group textarea:focus {
  border-color: #e56302;
}

.hk-input-group input:focus + label,
.hk-input-group textarea:focus + label,
.hk-input-group input:valid + label,
.hk-input-group textarea:valid + label {
  top: -7px;
  font-size: 11px;
  color: #011f38;
}

.hk-submit-btn {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #2c5364, #203a43);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.hk-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(44, 83, 100, 0.4);
}

@media (max-width: 480px) {
  .hk-contact-card {
    padding: 28px 22px;
  }

  .hk-contact-head h1 {
    font-size: 24px;
  }
}

.contact-detail {
    position: absolute;
    background-color: #fff;
    left: 0%;
    bottom: 0;
    border-radius: 10px;
    margin: 80px 32px;
}
.Contact-form img {
    width: 100%;
}
.detail-content a {
    display: flex;
    margin-bottom: 20px;
    color: #011f38;
        text-decoration: none;
    transition: all .3s;
}
.detail-content a:hover {
    color: #f16d00;
}
.detail-content a h5 {
       font-size: 16px;
    margin-bottom: 0 !important;
}
/*Form-css-end*/



/* swiper-slider */
.testimoial-section .wrapper {
  width: 400px;
  height: 200px;
  display: table;
  border: 5px solid #111;
  margin: 50px auto;
  padding: 20px;
  position: relative;
}
.testimoial-section .wrapper:after, .wrapper:before {
  content: "";
  position: absolute;
  font-family: fontAwesome;
  font-size: 50px;
  color: #111;
  background: #fff;
}
.testimoial-section .wrapper:after {
  content: "";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  box-shadow: 10px 10px 0 #fff;
}
.testimoial-section .wrapper:before {
  content: "";
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  box-shadow: -10px -10px 0 #fff;
}

.testimoial-section .title, .description {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

.testimoial-section .description {
  font-size: 14px;
}

.testimoial-section .title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  padding: 0 20px 0 0;
}
.testimoial-section .title small {
  display: block;
  font-size: 25px;
  text-align: right;
}

.testimoial-section .border-radius {
  border-radius: 30px;
}

.testimoial-section .text-right {
  text-align: right;
}




/* top-to-bottom-btn */
.back-top {
  position: fixed;
  bottom: 0px;
  left: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: block;
  background: rgb(0 0 0 / 60%);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
  z-index: 9999999;
  opacity: 0;
  visibility: hidden;
}
.back-top.back-top-show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.back-top:hover {
  background: rgb(0 0 0 / 80%);
}
.back-top .up-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}






.reviewsections{
    padding:80px 0;
}

.review-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:30px;
    color:#011f38;
}
.reviewsections .our-partner p {
    margin-top: 0;
}
.reviewsections .review-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
    margin:15px 0;
    height: 270px;
}

.reviewsections  .review-card:hover{
    transform:translateY(-10px);
}

.reviewsections  .review-card-img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:0 auto 20px;
    background:url('https://randomuser.me/api/portraits/men/32.jpg');
    background-size:cover;
    background-position:center;
}

.reviewsections  .review-author{
    margin-bottom:15px;
}

.reviewsections  .ra-author{
    display:block;
    font-size:22px;
    font-weight:600;
    color:#011f38;
    margin-bottom:10px;
}

.reviewsections  .ra-rating-star{
    padding:0;
    margin:0;
    list-style:none;
}

.reviewsections  .ra-rating-star li{
    display:inline-block;
    color:#f16d00;
    font-size:22px;
}

.reviewsections .review-content p{
    font-size:15px;
    line-height:28px;
    color:#011f38;
        padding-right:0px;
    margin:0;
}

.reviewsections .carousel-control-prev,
.reviewsections .carousel-control-next{
    width:50px;
    height:50px;
    background:#000;
    border-radius:50%;
    top:50%;
    transform:translateY(-50%);
    opacity:1;
}

.reviewsections .carousel-control-prev{
    left:-25px;
}

.reviewsections .carousel-control-next{
    right:-25px;
}

.reviewsections .carousel-control-prev-icon,
.reviewsections .carousel-control-next-icon{
    filter:invert(1);
}

@media(max-width:991px){

    .reviewsections .carousel-control-prev{
        left:0;
    }

    .reviewsections .carousel-control-next{
        right:0;
    }

}

@media(max-width:767px){

    .reviewsections .review-title{
        font-size:32px;
    }

    .reviewsections .review-card{
        margin-bottom:30px;
    }

}

/*pop-up-css*/

.popup-form{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

.popup-form input{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    outline:none;
    box-sizing:border-box;
}

.popup-form input:focus{
    border-color:#000;
}

.popup-btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#000;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.popup-btn:hover{
    transform:translateY(-2px);
}
    .popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.popup-overlay.active{
    opacity:1;
    visibility:visible;
}

.popup-box{
    width:90%;
    max-width:450px;
    background:#fff;
    padding:35px;
    border-radius:16px;
    text-align:center;
    position:relative;
    animation:popupScale .4s ease;
}

@keyframes popupScale{
    from{
        transform:scale(.7);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}

.popup-box h2{
    margin-bottom:10px;
}

.popup-box p{
    color:#666;
    margin-bottom:20px;
}

.popup-btn{
    display:inline-block;
    padding:12px 25px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}
























/* service-second-css */


.services-our{
    padding:120px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

/* Background Blur */

.services-our::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-250px;
    left:-250px;
    background:#ff7a0030;
    border-radius:50%;
    filter:blur(120px);
}

.services-our::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-250px;
    bottom:-250px;
    background:#4f7cff25;
    border-radius:50%;
    filter:blur(120px);
}

.services-our .services-content{
    position:relative;
    z-index:2;
}

.services-our .section-tag{
    color:#ff6b00;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.services-content h2{
    font-size:46px;
    font-weight:700;
    margin:20px 0;
    color:#011f38;
}
.back-image.twoss img {
    width: 75%;
}
.services-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:30px;
}

.services-btn{
    text-decoration:none;
    color:#0f172a;
    font-weight:600;
}

/* Cards */

.service-card{
    background:#fff;
    border-radius:30px;
    padding:35px;
    /* height:100%; */
    position:relative;
    z-index:2;
    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.large-card{
    min-height:420px;
    margin-bottom: 30px;
}

.large-card img{
    position:absolute;
    right:20px;
    bottom:20px;
    width:220px;
}

.wide-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height: 350px;
}

.wide-card img{
    width:260px;
}

/* Icons */

.icon-box{
    width:75px;
    height:75px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.icon-box i{
    font-size:30px;
}

.orange{
    background:#fff2e8;
    color:#ff6b00;
}

.purple{
    background:#f3ecff;
    color:#7c3aed;
}

.blue{
    background:#eaf2ff;
    color:#2563eb;
}

.green{
    background:#e8fff2;
    color:#16a34a;
}

.service-card h3{
    font-size:21px;
    margin-bottom:15px;
    font-weight:700;
    z-index: 44;
    position: relative;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
    position: relative;
    z-index: 2;
}

.service-card a{
    color:#ff6b00;
    text-decoration:none;
    font-weight:600;
}
.back-image.three {
    position: absolute;
    right: 0;
   bottom: 0;
    width: 50%;
    z-index: 1;
}

/* Dots */

.dots{
    position:absolute;
    width:150px;
    height:150px;
    z-index:1;
}

.dots-left{
    left:20px;
    bottom:100px;

    background-image:
    radial-gradient(#ffb178 2px,transparent 2px);

    background-size:18px 18px;
}

.dots-right{
    right:20px;
    top:180px;

    background-image:
    radial-gradient(#8aa7ff 2px,transparent 2px);

    background-size:18px 18px;
}
.back-image.four {
    position: absolute;
    width: 62%;
    right: 0;
    bottom: 0;
    z-index: 1;
}
/* Responsive */

@media(max-width:991px){

    .services-content{
        text-align:center;
        margin-bottom:20px;
    }

    .services-content h2{
        font-size:42px;
    }

    .wide-card{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

    .large-card img,
    .wide-card img{
        position:static;
        width:180px;
        margin-top:20px;
    }
}

@media(max-width:576px){

    .services-our{
        padding:80px 0;
    }

    .services-content h2{
        font-size:34px;
    }

    .service-card{
        padding:25px;
        border-radius:24px;
    }
}

.back-image img {
    width: 100%;
}

/* service-second-css */

















/* our-pricing-two-css */
  .our-pricing-two .pricing-container {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      perspective: 1000px;
    }

   .our-pricing-two   .pricing-card {
      width: 380px;
      padding: 2.5rem;
      border-radius: 24px;
      background: linear-gradient(145deg, 
        rgba(28, 35, 65, 0.7) 0%,
        rgba(24, 27, 44, 0.7) 100%);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(103, 132, 255, 0.1);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      transform-style: preserve-3d;
    }

    .our-pricing-two  .pricing-card:hover {
      transform: translateY(-10px);
      border: 1px solid rgba(103, 132, 255, 0.3);
      box-shadow: 
        0 0 20px rgba(103, 132, 255, 0.1),
        0 0 40px rgba(103, 132, 255, 0.1);
    }

    .our-pricing-two  .inner-glow {
      position: absolute;
      inset: 0;
      border-radius: 24px;
      background: radial-gradient(
        circle at 50% 50%,
        rgba(103, 132, 255, 0.15) 0%,
        transparent 70%
      );
      pointer-events: none;
    }

   .our-pricing-two   .plan-icon {
      background: linear-gradient(135deg, rgba(103, 132, 255, 0.2), rgba(103, 132, 255, 0.1));
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .our-pricing-two  .plan-icon::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      animation: shine 2s infinite;
    }

    @keyframes shine {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .our-pricing-two  .plan-name {
      color: #fff;
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      background: linear-gradient(90deg, #fff, #6784ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

   .our-pricing-two .price {
      font-size: 3rem;
      font-weight: 700;
      margin: 1.5rem 0;
      color: #fff;
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
    }

    .our-pricing-two  .price span {
      font-size: 1rem;
      opacity: 0.8;
      font-weight: 400;
    }

    .our-pricing-two  .features {
      list-style: none;
      margin: 2rem 0;
    }

    .our-pricing-two  .features li {
      margin: 1rem 0;
      opacity: 0.9;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.1rem;
      color: #fff;
    }

    .our-pricing-two  .features li::before {
      content: "⚡";
      color: #6784ff;
      font-size: 0.9rem;
    }

    .our-pricing-two .cta-button {
      width: 100%;
      padding: 1.25rem;
      border: none;
      border-radius: 16px;
      background: linear-gradient(135deg, #6784ff, #4462ff);
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .our-pricing-two  .cta-button::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .our-pricing-two .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(103, 132, 255, 0.3);
    }

    .our-pricing-two .cta-button:hover::after {
      transform: translateX(100%);
    }

     .our-pricing-two  .comparison {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.975rem;
      margin-top: 1rem;
      text-align: center;
    }

    .our-pricing-two  .highlight {
      position: absolute;
      top: 1rem;
      right: -4rem;
      background: linear-gradient(135deg, #6784ff, #4462ff);
      color: white;
      padding: 0.5rem 4rem;
      transform: rotate(45deg);
      font-size: 0.875rem;
      font-weight: 500;
      box-shadow: 0 2px 10px rgba(103, 132, 255, 0.3);
    }

    .our-pricing-two  .card-blur {
      position: absolute;
      inset: 0;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: -1;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
      100% { transform: translateY(0px); }
    }

    .our-pricing-two  .popular {
      animation: float 4s ease-in-out infinite;
    }

    @media (max-width: 768px) {
      .pricing-container {
        padding: 1rem;
      }
      
      .pricing-card {
        width: 100%;
        max-width: 380px;
      }
    }



/* our-pricing-two-css */





















/* page-thumb-css */

/* ===== Hero ===== */
.hero {
  position: relative;
    z-index: 1;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    background-color: #000;
}

/* .hero-content {
  max-width: 800px;
} */

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 12px #ff00aa66;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.hero-desc {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator span {
     display: block;
    width: 24px;
    height: 40px;
    border: 2px solid #e66701;
    border-radius: 50px;
    position: relative;
    box-shadow: 0 0 10px #e66701;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: #e66701;
  border-radius: 4px;
  box-shadow: 0 0 8px #e66701;
  animation: scrollBounce 2s infinite;
}

#particles-canvas {
 position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}
/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {


  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }



  .btn {
    padding: 12px 28px;
    font-size: 0.85rem;
  }
}











/* breadcumb-css */


:root {
  --step: 40px;
  --step-bg: #fff;
  --step-color: black;
  --step-border: #cccccc;
  --step-active: #2fbe6e;
  --step-hover: #fff;
}
.bread-cum-main {
    display: flex;
    justify-content: center;
}
.breadcrumb-step {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  margin: 0;
     width: 40%;
}
.breadcrumb-step li span a {
    color: #011f38;
    text-decoration: none;
}

.breadcrumb-step li {
  flex: 1;
  /* max-width: 100%; */
  padding: 0 20px;
  position: relative;
}

.breadcrumb-step li div {
  position: relative;
  padding: 1px 0;
  background: var(--step-border);
  box-sizing: border-box;
  transform: scale(0.999999);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
    margin-bottom: 50px;
}

.breadcrumb-step li div span {
  display: block;
  transition: all 0.3s ease;
}

/* Right arrow */
.breadcrumb-step li div span:nth-child(1) {
  position: absolute;
  left: 100%;
  top: 0;
  border-top: calc(var(--step) / 2) solid transparent;
  border-bottom: calc(var(--step) / 2) solid transparent;
  border-left: calc(var(--step) / 2) solid var(--step-border);
}

/* Left top */
.breadcrumb-step li div span:nth-child(2) {
  position: absolute;
  right: 100%;
  top: 0;
  border-bottom: calc(var(--step) / 2) solid transparent;
  border-right: calc(var(--step) / 2) solid var(--step-border);
}

/* Left bottom */
.breadcrumb-step li div span:nth-child(3) {
  position: absolute;
  right: 100%;
  bottom: 0;
  border-top: calc(var(--step) / 2) solid transparent;
  border-right: calc(var(--step) / 2) solid var(--step-border);
}

/* Circle */
.breadcrumb-step li div span:nth-child(4) {
  position: absolute;
  right: 10px;
  top: 50%;
  height: 12px;
  width: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: transparent;
  z-index: 2;
  border: 1px solid var(--step-border);
}

/* Inner arrow */
.breadcrumb-step li div span:nth-child(5) {
  position: absolute;
  left: 100%;
  top: 1px;
  border-top: calc((var(--step) - 2px) / 2) solid transparent;
  border-bottom: calc((var(--step) - 2px) / 2) solid transparent;
  border-left: calc((var(--step) - 2px) / 2) solid var(--step-bg);
}

.breadcrumb-step li div span:nth-child(6) {
  position: absolute;
  right: 100%;
  top: 1px;
  border-bottom: calc((var(--step)-2px) / 2) solid transparent;
  border-right: calc((var(--step)-2px) / 2) solid var(--step-bg);
  margin-right: -1px;
}

.breadcrumb-step li div span:nth-child(7) {
  position: absolute;
  right: 100%;
  bottom: 1px;
  border-top: calc((var(--step)-2px) / 2) solid transparent;
  border-right: calc((var(--step)-2px) / 2) solid var(--step-bg);
  margin-right: -1px;
}

.breadcrumb-step li div span:nth-child(8) {
  display: block;
  padding: 0 40px;
  height: calc(var(--step) - 2px);
  line-height: calc(var(--step) - 2px);
  background: var(--step-bg);
  color: var(--step-color);
}

/* Hover */
.breadcrumb-step li:hover div {
  background: var(--step-hover);
}

.breadcrumb-step li:hover span:nth-child(1) {
  border-left-color: var(--step-hover);
}

.breadcrumb-step li:hover span:nth-child(2),
.breadcrumb-step li:hover span:nth-child(3),
.breadcrumb-step li:hover span:nth-child(6),
.breadcrumb-step li:hover span:nth-child(7) {
  border-right-color: var(--step-hover);
}

.breadcrumb-step li:hover span:nth-child(8) {
  background: var(--step-hover);
}


/* Active */
.breadcrumb-step li.active div {
  background: #e66701;
}

.breadcrumb-step li.active span:nth-child(1),
.breadcrumb-step li.active span:nth-child(5) {
  border-left-color: #e66701;
}

.breadcrumb-step li.active span:nth-child(2),
.breadcrumb-step li.active span:nth-child(3),
.breadcrumb-step li.active span:nth-child(6),
.breadcrumb-step li.active span:nth-child(7) {
  border-right-color: #e66701;
}

.breadcrumb-step li.active span:nth-child(4) {
  background: white;
  border-color: #e66701;
}

.breadcrumb-step li.active span:nth-child(8) {
  background: #e66701;
  color: white;
}


/* First step */
.breadcrumb-step li:first-child {
  padding-left: 0;
}

.breadcrumb-step li:first-child span:nth-child(2),
.breadcrumb-step li:first-child span:nth-child(3),
.breadcrumb-step li:first-child span:nth-child(6),
.breadcrumb-step li:first-child span:nth-child(7) {
  display: none;
}


/* Last step */
.breadcrumb-step li:last-child {
  padding-right: 0;
}

.breadcrumb-step li:last-child span:nth-child(1),
.breadcrumb-step li:last-child span:nth-child(5) {
  display: none;
}


/* Maximum 3 steps support */
.breadcrumb-step li:nth-child(n+4) {
  display: none;
}










/*about-us-four-css*/




.about-us-section-four .aboutus-section {
    padding: 90px 0;
}
.about-us-section-four .aboutus-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    margin: 0 0 39px;
    padding: 0 0 11px;
    position: relative;
    text-transform: uppercase;
    color: #011e39;
}
.about-us-section-four .aboutus-title::after {
    background: #f26d01 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 54px;
}
.about-us-section-four .aboutus-text {
    color: #011e39;
    font-size: 15px;
    /* line-height: 21px; */
    margin: 0 0 22px;
}


.about-us-section-four .aboutus-more {
    border: 1px solid #f26d01;
    border-radius: 25px;
    color: #f26d01;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 7px 20px;
    text-transform: uppercase;
}
.about-us-section-four .feature .feature-box .iconset {
        background: #fff none repeat scroll 0 0;
    float: left;
    position: relative;
    width: 18%;
    display: flex;
}
.about-us-section-four .feature .feature-box .iconset::after {
    background: #f26d01 none repeat scroll 0 0;
    content: "";
    height: 150%;
    left: 43%;
    position: absolute;
    top: 100%;
    width: 1px;
}

.about-us-section-four .feature .feature-box .feature-content h4 {
    color: #0f0f0f;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
    margin: 0 0 5px;
}


.about-us-section-four .feature .feature-box .feature-content {
    float: left;
    padding-left: 28px;
    width: 78%;
}
.about-us-section-four .feature .feature-box .feature-content h4 {
    color: #011e39;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 35px;
    margin: 0 0 5px;
}
.about-us-section-four .feature .feature-box .feature-content p {
    color: #011e39s;
    font-size: 15px;
    line-height: 22px;
}
.about-us-section-four .icon {
    color : #f26d01;
    padding:0px;
    font-size:40px;
    border: 1px solid #f26d01;
    border-radius: 100px;
    color: #f26d01;
    font-size: 28px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    width: 70px;
}




/*about-us-four-css*/




/*about-us-example-two-css*/







.about-two-main-title h5 {
    color: #011e39;
    font-size: 20px;
    font-weight: 600;
}

.about-two-main-title h2 {
    font-size: 50px;
    font-weight: 600;
    margin: 30px 0 25px 0;
}

.about-two-main-title h4 {
    font-size: 23px;
    font-weight: 600;
    color: #011e39;
    margin: 40px 0 30px 0;
}

.about-two-main-title li a {
    color: #011e39;
    font-size: 18px;
    padding-left: 7px;
    transition: all .3s;
    text-decoration: none;
}

.about-two-main-title li {
    margin-bottom: 15px;
}

.about-two-main-title li a:hover {
    color: #e05b01;
}

.about-two-main-title li i {
    color: #e05b01;
}

.about-us-section-two {
    padding: 60px 0;
}




/*about-us-example-two-css*/







/*hero-section-example-one-css*/


/* hero-banner-css */
.hero-banner.example-one .scaleanimation svg {
    width: 100%;
    height: 700px;
}
.hero-banner.example-one .background-colr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: #000;*/
    z-index: 1;
}

.hero-banner.example-one {
    position: relative;
    overflow: hidden;
}

.hero-banner.example-one .scaleanimation {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-banner.example-one .scaleanimation .particle{
    transform-origin: center;

    /* smoother animation */
    animation: scaleUp 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    
    will-change: opacity;
}

/* ✨ Smooth Opacity Animation */
@keyframes scaleUp{

    0%{
        opacity: 0.1;
    }


    100%{
       opacity: 0.3;
    }
}
.hero-banner.example-one .rocket-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.hero-banner.example-one .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-banner.example-one .main-content-hero h2 {
    color: #011e39;
    font-size: 55px;
    font-weight: 700;
    text-align: center;
    padding-top: 100px;
}



.hero-banner.example-one .main-content-hero p {
    color: #011e39;
    text-align: center;
    padding: 0 200px;
    padding-top: 30px;
}
.hero-banner.example-one .main-content-hero h2 span {
    color: #e76700;
}

.hero-banner.example-one .satisfied-banner {
    background: linear-gradient(
        135deg,
        #3b353c 0%,
        #1f1d24 35%,
        #121116 70%,
        #0b0b0d 100%
    );
    border-radius: 20px;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.08),
        0 10px 40px rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    display: flex;
    padding: 30px 20px;
    gap: 15px;
        margin-top: 70px;
}

.hero-banner.example-one .custumer-client h2 {
    color: #e76700;
    font-size: 50px;
    font-weight: 700;
}

.hero-banner.example-one .custumer-client p {
    color: #fff;
}
.hero-banner.example-one .particle img{
    width: 100%;
    
    animation: rotateParticle 40s linear infinite;
    
    transform-origin: center;
}

/* 🔄 Smooth Rotating Animation */
@keyframes rotateParticle{

    from{
        transform: rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}
.hero-banner.example-one .particle {
    margin-top: 60px;
}


.hero-banner.example-one .btn-holder{
    text-align: center;
    margin-top: 35px;
}


/* COMMON BUTTON */
.hero-banner.example-one .main-btn{
    position: relative;
    overflow: hidden;
}

.hero-banner.example-one .main-btn span{
    position: relative;
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .3s ease;
    z-index: 2;
}




/* =========================
   BTN TWO
========================= */

.hero-banner.example-one .btn-two::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fea702;
    transition: .4s ease;
    border-radius: 10px;
}

.hero-banner.example-one .btn-two span{
    color: #fea702;
    border: 1px solid #fea702;
    border-radius: 10px;
}

.hero-banner.example-one .btn-two:hover::before{
    width: 100%;
}

.hero-banner.example-one .btn-two:hover span{
    color: #fff;
}



/*hero-section-example-one-css*/














/*hero-section-example-two-css*/
:root {
  /* Color Palette */
  --bg-page: #fdfdfd;
  --text-dark: #1b1b1b;
  --text-muted: #828282;
  --clay-white: #ffffff;
  --clay-dark: #222222;
  --clay-primary: #d5e582;
  /* Yellow-green */
  --clay-secondary: #cde0c5;
  /* Pale green */
  --clay-dark-green: #113f28;
  /* 3D Clay Shadows */
  --clay-outset-white: 12px 12px 24px rgba(0, 0, 0, 0.05),
    -10px -10px 20px rgba(255, 255, 255, 1);
  --clay-inset-white: inset 3px 3px 8px rgba(255, 255, 255, 1),
    inset -3px -3px 8px rgba(0, 0, 0, 0.03);
  --clay-outset-dark: 10px 10px 20px rgba(0, 0, 0, 0.15),
    -5px -5px 15px rgba(255, 255, 255, 0.3);
  --clay-inset-dark: inset 2px 2px 6px rgba(255, 255, 255, 0.15),
    inset -3px -3px 8px rgba(0, 0, 0, 0.6);
  --clay-outset-primary: 10px 10px 24px rgba(180, 196, 92, 0.3),
    -6px -6px 16px rgba(255, 255, 255, 0.8);
  --clay-inset-primary: inset 2px 2px 6px rgba(255, 255, 255, 0.6),
    inset -2px -2px 8px rgba(150, 165, 70, 0.4);
  --clay-outset-secondary: 10px 10px 24px rgba(170, 190, 160, 0.25),
    -6px -6px 16px rgba(255, 255, 255, 0.8);
  --clay-inset-secondary: inset 2px 2px 6px rgba(255, 255, 255, 0.6),
    inset -2px -2px 8px rgba(140, 160, 130, 0.3);
}

.hero-section-exam-two .herotwo {
  text-align: center;
  position: relative;
  padding-bottom: 100px;
  z-index: 10;
  padding-top: 150px ;
}

.hero-section-exam-two .herotwo h1 {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: #011e39;
}

.hero-section-exam-two  .herotwo p {
  font-size: 18px;
  color: #011e39;
  line-height: 1.5;
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 400;
}

.hero-section-exam-two  .cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  align-items: center;
}

.hero-section-exam-two .btn-primary {
  background: #e66500;
  color: #011e39;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  box-shadow: var(--clay-outset-primary), var(--clay-inset-primary);
  transition: transform 0.2s;
  width: 220px;
}

.hero-section-exam-two .btn-light {
  background: var(--clay-white);
  color: var(--text-dark);
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  box-shadow: var(--clay-outset-white), var(--clay-inset-white);
  transition: transform 0.2s;
  width: 220px;
}

.hero-section-exam-two .btn-primary:active,
.hero-section-exam-two .btn-light:active {
  transform: scale(0.96);
}

/* --- Floating Clay Icons --- */
.hero-section-exam-two  .float-icon {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform-style: preserve-3d;
}

.hero-section-exam-two .icon-plus {
  top: 20%;
  left: 5%;
  width: 50px;
  height: 50px;
  background: #e66500;
  box-shadow: var(--clay-outset-primary), var(--clay-inset-primary);
  font-size: 24px;
  font-weight: bold;
}

.hero-section-exam-two .icon-arrow {
  top: 45%;
  left: 10%;
  width: 40px;
  height: 40px;
  background: #011e39;
  box-shadow: var(--clay-outset-white), var(--clay-inset-white);
}

.hero-section-exam-two .icon-mail {
  top: 35%;
  right: 20%;
  width: 45px;
  height: 45px;
  background: #011e39;
  box-shadow: var(--clay-outset-primary), var(--clay-inset-primary);
}

.hero-section-exam-two .icon-chart-dark {
  top: 32%;
  right: 12%;
  width: 55px;
  height: 55px;
  background: #e66500;
  box-shadow: var(--clay-outset-dark), var(--clay-inset-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.icon-grid {
  top: 25%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: var(--clay-dark);
  box-shadow: var(--clay-outset-dark), var(--clay-inset-dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-section-exam-two .icon-bar {
  top: 48%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: #e66500;
  box-shadow: var(--clay-outset-primary), var(--clay-inset-primary);
}

/* SVG styles inside icons */
.hero-section-exam-two .float-icon svg {
  width: 45%;
  height: 45%;
}

.hero-section-exam-two .icon-chart-dark svg {
  stroke: var(--clay-primary);
}

.hero-section-exam-two .icon-grid svg {
  fill: white;
}

.hero-section-exam-two .icon-arrow svg {
  stroke: #fff;
  transform: rotate(45deg);
}




/*hero-section-example-two-css*/












/*hero-section-example-three-css*/
  /* 3D Claymorphism Shadows */
  :root {
  --clay-shadow-lightss: 15px 20px 35px rgba(0, 0, 0, 0.08),
    -10px -10px 20px rgba(255, 255, 255, 0.8),
    inset 2px 4px 8px rgba(255, 255, 255, 0.9),
    inset -2px -4px 8px rgba(0, 0, 0, 0.05);

  --clay-shadow-darkss: 15px 20px 35px rgba(0, 0, 0, 0.2),
    inset 2px 4px 8px rgba(255, 255, 255, 0.2),
    inset -2px -4px 8px rgba(0, 0, 0, 0.6);

  --clay-shadow-colorss: 15px 20px 35px rgba(0, 0, 0, 0.15),
    inset 2px 4px 8px rgba(255, 255, 255, 0.4),
    inset -2px -4px 8px rgba(0, 0, 0, 0.2);
  }
.hero-section-exam-three {
    position: relative;
      background-color: #f5f6f8;
  /* Dotted Grid Background */
  background-image: radial-gradient(#d1d5db 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  color: var(--text-main);
  overflow-x: hidden;
  height: 100%; /* Allows for scroll-driven animations */
  position: relative;
}
.hero-section-exam-three .herothree {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-section-exam-three .herothree h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero-section-exam-three .herothree p {
  font-size: 15px;
  color: #011e39;
  line-height: 1.6;
  font-weight: 500;
  max-width: 400px;
  margin-bottom: 32px;
}

.hero-section-exam-three .btn-follow {
  background-color: #000;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: var(--clay-shadow-darkss);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-section-exam-three .btn-follow:hover {
  transform: scale(1.05);
}

.hero-section-exam-three .btn-follow:active {
  transform: scale(0.95);
  box-shadow: inset 4px 8px 12px rgba(0, 0, 0, 0.8);
}

/* --- 3D Clay Floating Elements --- */
.hero-section-exam-three .scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-section-exam-three .clay-block {
  position: absolute;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  transition: filter 0.3s ease;
  transform-style: preserve-3d;
  background-size: cover;
  background-position: center;
}

.hero-section-exam-three .clay-block:hover {
  filter: brightness(1.1);
}

/* Specific blocks matching the image */
.hero-section-exam-three .cb-1 {
  width: 80px;
  height: 80px;
  background-color: #111;
  top: 20%;
  left: 28%;
  box-shadow: var(--clay-shadow-darkss);
  border-radius: 22px;
  padding: 15px;
}

.hero-section-exam-three .cb-2 {
  width: 130px;
  height: 130px;
  background-color: #111;
  top: 40%;
  left: 12%;
  box-shadow: var(--clay-shadow-darkss);
  padding: 20px;
}

.hero-section-exam-three .cb-3 {
  width: 180px;
  height: 180px;
  background-color: #e5e5e5;
  bottom: 15%;
  left: 24%;
  box-shadow: var(--clay-shadow-lightss);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 36px;
}

.hero-section-exam-three .cb-4 {
  width: 120px;
  height: 120px;
  background-color: #8c7ae6;
  top: 28%;
  right: 15%;
  box-shadow: var(--clay-shadow-colorss);
}

.hero-section-exam-three .cb-5 {
  width: 220px;
  height: 220px;
  background-color: #d1ea40; /* Lime green/yellow */
  bottom: 12%;
  right: 18%;
  box-shadow: var(--clay-shadow-colorss);
  border-radius: 40px;
  overflow: hidden;
}

/* Placeholder Content for the Clay Blocks to match aesthetic */
.hero-section-exam-three .clay-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.hero-section-exam-three .cb-3 img,
.hero-section-exam-three .cb-5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  border-radius: inherit;
}

/* Interactive Scroll Hint */
.hero-section-exam-three .scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: #011e39;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero-section-exam-three .scroll-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-muted);
  border-radius: 50%;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 900px) {
 /* Simplified for mobile view */
 .hero-section-exam-three .cb-1 {
    left: 10%;
    top: 15%;
    width: 60px;
    height: 60px;
  }
 .hero-section-exam-three .cb-2 {
    left: 5%;
    top: 35%;
    width: 90px;
    height: 90px;
  }
 .hero-section-exam-three .cb-3 {
    left: 10%;
    bottom: 20%;
    width: 120px;
    height: 120px;
  }
 .hero-section-exam-three .cb-4 {
    right: 5%;
    top: 20%;
    width: 80px;
    height: 80px;
  }
 .hero-section-exam-three .cb-5 {
    right: 5%;
    bottom: 15%;
    width: 140px;
    height: 140px;
  }
}

/*hero-section-example-three-css*/


