@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;
}

.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;
}



/* 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: 14px;
  color: #f16d00;
  margin-bottom: 15px;
  font-weight: 500;
      padding-top: 40px;
}

/* 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: 50%;
}
.getport-btn  .header-button-sec1 .learn-more {
    width: 90%;
    height: auto;
}

.links.two {
    margin-top: 60px;
}

.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;*/
}

.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;
}
.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:50px;
    color:#011f38;
}

.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;
}
