@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'poppins', sans-serif;
}

:root{
    --main-color: linear-gradient(90deg,#0082cf, #004ba5);
    --black-color: #1268FB;
    --dark-black-color: #010F1C;
    --white-color: #fff;
    --gray-color: #737887;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --lighBlue-color: #d9f1ff;
    --paragrapg-color: #4D4D4D;
    --primary-blue: #3a86ff;
    --secondary-blue: #8338ec;
    --light-blue: #bde0fe;
    --dark-blue: #1a1a2e;
     --heading:"Bricolage Grotesque", sans-serif;
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
    background: var(--white-color);
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: var(--main-color);
}

.section-heading {
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ========= Subheading ========= */
.section-heading .subheading {
  position: relative;
  display: inline-block;
  color: #467bff;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  overflow: hidden;
  padding-bottom: 5px;
}

/* ======= New Line Animation ======= */
.section-heading .subheading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #467bff, #9b8bff, #467bff);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineSlide 2.2s ease-out infinite alternate;
  border-radius: 3px;
}

@keyframes lineSlide {
  0% {
    transform: scaleX(0);
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ========= Main Heading ========= */
.section-heading .main-heading {
  font-size: 4.5rem;
  color: #0b0b22;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-family: var(--heading);
}

/* ========= Description ========= */
.section-heading .desc {
  color: #7a7a8c;
  font-size: 1.7rem;
  max-width: 600px;
  margin: 0 auto;
}

/*Start header*/
.job-away-nav {
    padding: 6rem 3%;
    position: absolute;
}

.contact-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgb(88 75 195 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.icon-btn i{
    font-size: 24px;
}

.icon-btn:hover{
    color: var(--white-color);
    background: var(--main-color);
}

.section-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem; margin-bottom: 5rem;
}

.section-header__badge {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  background-color: #eaf3ff;
}

.section-header__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #111;
  margin: 0;
}

.section-header__btn {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #1e68f1, #001f75);
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-header2{
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section-header2 h2{
    color: var(--white-color);
}

.section-header2 .discover-badge{
    background: #010e37;
    color: var(--white-color);
    border-color: rgb(18 104 251);
}

.section-header2 p{
    font-size: 1.8rem;
    color: rgb(255 255 255 / 70%); margin: 0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

/*Start home section*/
/*cursor design*/
/* REVISED Cursor System - Now Visible */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    /* Removed mix-blend-mode for better visibility */
    box-shadow: 0 0 0 2px var(--white); /* White border ensures visibility */
    transition: 
        width 0.3s ease,
        height 0.3s ease,
        background 0.3s ease;
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white fill */
    transition: 
        transform 0.15s ease-out,
        width 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border 0.3s ease;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--secondary-blue);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: transform 0.25s linear;
    box-shadow: 0 0 0 1px var(--white); /* White border */
}

/* Cursor States */
.cursor.hover {
    width: 16px;
    height: 16px;
    background-color: var(--secondary-blue);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-width: 1px;
    border-color: rgba(131, 56, 236, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
}

.cursor.click {
    transform: translate(-50%, -50%) scale(0.9);
}

.cursor-ring.click {
    transform: translate(-50%, -50%) scale(0.8);
    border-color: var(--secondary-blue);
    background: rgba(131, 56, 236, 0.1);
}

/* Hide on touch devices */
@media (pointer: coarse) {
    .cursor, .cursor-ring, .cursor-dot {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/*Start home section*/
.home-section-outer{
    padding: 1rem;
    border-radius: 12rem;
}
.home-section{
    padding: 6rem 5%;
    padding-bottom: 0;
    width: 100%; border-radius: 18px;
    min-height: 100vh;
    background: url(../img/cgpey-ads-bg0.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex; align-items: center;
    position: relative;
}

.img-section img{
    width: 100%; height: auto;
}

.home-content{
    max-width: 700px;
    margin: auto; text-align: center;
    margin-top: 8rem;
}

.home-content img{
    width: 100%;
    max-width: 500px;
    margin-top: 1.4rem;
}

.home-content h1{
    font-size: 5rem;
    font-weight: 800;
    color: var(--dark-black-color);
    font-family: var(--heading);
    margin: 0; 
}

.home-content h5{
    font-size: 1.4rem;
    font-weight: 400;
    color: #121212;
    background: transparent;
    display: inline-flex;
    padding: 1rem 2rem;
    border: 1px solid #1663ef24;
    backdrop-filter: blur(14px);
    margin: 0 auto;
    border-radius: 33px;
    margin-bottom: 1rem;
}

.home-content h1 span{
    font-size: 5rem;
    font-weight: 800;
    color: #004ba5;
    font-family: var(--heading);
}

.home-content p{
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--gray-color);
    margin: 0; padding: 1rem 0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.home-btns{
    display: inline-flex;
    align-items: center;
    gap: 1rem; border-radius: 100px;
    height: 78px;
        background: #ffffff5c;
    padding: 0 1rem;
    width: 100%;
    backdrop-filter: blur(31px);
    max-width: 580px;
    border: 1px solid #fff;
}

.home-btns a{
    width: 100%;
    height: 60px;
    background: var(--white-color);
    border-radius: 33px; font-size: 1.8rem; font-weight: 500;
    color: #121212; padding: 0 2rem;
    display: inline-flex; align-items: center; justify-content: center;
    gap: .6rem; white-space: nowrap; font-family: var(--heading);
}

.home-btns a:nth-child(1){
    background: var(--main-color);
    color: var(--white-color);
}

.home-btns a img{
    height: 22px;
}

/*float ICONS HOME*/
.openPositions-avatar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatRandom 6s ease-in-out infinite alternate;
  z-index: 1;
}

.openPositions-avatar img {
  width: 8rem;
  height: 8rem;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.2);
  border: 3px solid #fff;
}

.openPositions-role {
  margin-top: 0.6rem;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  display: inline-block;
}

.role-green { background: #7ee787; color: #000; }
.role-yellow { background: #f2d974; color: #000; }
.role-blue { background: #3fd4ff; color: #000; }
.role-orange { background: #ff9850; color: #000; }
.role-purple { background: #c98eff; color: #000; }
.role-white { background: #fff; color: #000; }

.avatar-1 { top: 5%; left: 5%; }
.avatar-2 { top: 5%; right: 5%; }
.avatar-3 { top: 45%; left: 2%; }
.avatar-4 { top: 45%; right: 2%; }
.avatar-5 { bottom: 10%; left: 20%; }
.avatar-6 { bottom: 10%; right: 20%; }

@keyframes floatRandom {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px) scale(1.05); }
  100% { transform: translateY(0); }
}

@media (max-width: 768px) {
  .openPositions-avatar {
    display: none;
  }
  .openPositions-section {
    min-height: auto;
    display: block;
  }
}
/*End home section*/

/*Start success section*/
.success-section{
    padding: 2rem 1%;
    display: grid;
    grid-row-gap: 1.5rem;
    border-radius: 120px;
    transform: translateY(-30px);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    width: 95%; margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    background: rgba(255, 255, 255, 0.04);
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
    backdrop-filter: blur(8px);
}

.success-section .success-section-card{
    display: flex; align-items: center;
    gap: 1.5rem;
}

.success-section-card-img img{
    width: 100px;
    height: 100px;

}

.success-section-card-text h4{
    margin: 0;
    font-size: 2rem;
    color: var(--main-color);
    font-weight: 800;
    font-family: var(--heading);
}

.success-section-card-text p{
    margin: 0;
    font-size: 1.6rem;
    color: var(--gray-color);
}
/*End success section*/

/*Start how work section*/
.secure-pay-section{
    padding: 4rem 3%;
    background: #f4f7fc;
    background: url(../img/service-section-bg.jpg);
    width: 100%; background-size: cover;
    background-position: center; background-attachment: fixed;
}

.secure-pay-section .sps-row { row-gap: 2.4rem; }

.secure-pay-section .sps-card {
  position: relative;
  background: #ffffff;
  border-radius: 2.4rem;
  box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
  padding: 3.2rem 3rem 5.6rem;
  height: 100%;
/*  display: flex;*/
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.secure-pay-section .sps-card:hover .qr-code-icon{
    opacity: .3;
}

.sps-active .qr-code-icon{
    opacity: .1;
}

.qr-code-icon{
    position: absolute;
    top: 19px;
    left: 0;
    width: 65px;
}

/* Background animation layer */
.secure-pay-section .sps-card::before {
  content:"";
  position:absolute;
  inset:0;
  background: var(--main-color);
  z-index:0;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: top ;
  transition: transform 0.6s ease;
}

/* Text + icon above */
.secure-pay-section .sps-icon,
.secure-pay-section .sps-title,
.secure-pay-section .sps-desc,
.secure-pay-section .sps-cta {
  position: relative;
  z-index: 1;
}

.sps-card:hover .sps-icon img{
    transform: scale(.7);
}

.service-item .sps-card img{
    width: 180px;
    border-radius: 22px;
    margin: auto;
}

/* Card hover/active lift */
.secure-pay-section .sps-card:hover,
.secure-pay-section .sps-card.sps-active {
  box-shadow: 0 1.2rem 3.2rem rgba(15,23,42,0.15);
}
.secure-pay-section .sps-card:hover::before,
.secure-pay-section .sps-card.sps-active::before {
  transform: scaleX(1);
}

/* Icon badge */
.secure-pay-section .sps-icon {
  margin: auto;
  margin-bottom: 2rem;
  transition: background 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-icon i,
.secure-pay-section .sps-icon img {
  font-size: 2.6rem;
  color:#1e293b;
  transition: color 0.5s ease, transform 0.5s ease;
}

/* Icon hover/active */

.secure-pay-section .sps-card:hover .sps-icon i,
.secure-pay-section .sps-card.sps-active .sps-icon i {
  color:#fff;
  transform: scale(1.1);
}

/* Title + desc */
.secure-pay-section .sps-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--heading);
  transition: color 0.5s ease;
}
.secure-pay-section .sps-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #334155;
  transition: color 0.5s ease;
}

.secure-pay-section .sps-card:hover .sps-title,
.secure-pay-section .sps-card.sps-active .sps-title,
.secure-pay-section .sps-card:hover .sps-desc,
.secure-pay-section .sps-card.sps-active .sps-desc {
  color:#fff;
}

/* Bottom arrow button */
.secure-pay-section .sps-cta {
  position: absolute;
  bottom: 1.6rem; left:50%;
  transform: translateX(-50%);
  width: 4.6rem; height: 4.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #e9f0ff;
  color:#1d4ed8;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-cta i { font-size: 1.6rem; transition: transform 0.5s ease; }

.secure-pay-section .sps-card:hover .sps-cta,
.secure-pay-section .sps-card.sps-active .sps-cta {
  background: rgba(255,255,255,0.2);
  color:#fff;
  transform: translateX(-50%) translateY(-0.2rem);
}
.secure-pay-section .sps-card:hover .sps-cta i,
.secure-pay-section .sps-card.sps-active .sps-cta i {
  transform: translateX(0.2rem);
}

.client-logo-section{
    padding: 4rem 3%;
}

.client-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.client-slider-track {
  display: flex;
  width: calc(200px * 10); /* adjust based on logos */
  animation: scrollSlider 25s linear infinite;
}

.client-slider-item {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-slider-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.client-slider-item img:hover {
  transform: scale(1.1);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate track for seamless loop */
.client-slider-inner {
  display: flex;
}

/*End how work section*/

/*Start review section*/
.review-section {
    padding: 6rem 3%;
    background: url(../img/review-bg.png);
    background-size: cover; background-position: center;
    width: 100%;
}

.rating-stars { display:inline-flex; gap:0.4rem; align-items:center; margin-bottom:1.5rem }
.rating-stars i { font-size:1.2rem; color:#FFB703; /* golden */ }

.review-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.review-section-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    max-width: 65rem;
    font-family: "Bricolage Grotesque", sans-serif;
}

.review-section-navigation {
    display: flex;
    gap: 1rem;
}

.review-section-nav-btn {
    width: 4.5rem;
    height: 4.5rem;
    border: 1.5px solid #d0d0d0;
    background-color: white;
    border-radius:  12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    color: #000;
}

.review-section-nav-btn:hover {
    background-color: var(--main-color);
    border-color: #fff;
    color: #ffffff;
}

.review-section-carousel-wrapper {
    position: relative;
}

.review-section-carousel {
    overflow: visible !important;
}

.review-section-carousel .owl-item {
    display: flex;
}

.review-section-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 22px;
    margin: 0 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.review-section-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.8rem);
}

.review-section-quote-icon {
    font-size: 10rem;
    color: #007dcb;
    margin-bottom: 1.4rem;
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1;
    font-style: italic;
    position: absolute;
    right: 20px;
    bottom: 0;
    opacity: .1;
}

.review-section-text {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.review-section-author {
    display: flex;
    align-items: center;
    gap: 1.8rem; margin-bottom: 2rem;
}

.review-section-author-image {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-section-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-section-card:hover .review-section-author-image img {
    transform: scale(1.15);
}

.review-section-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.review-section-author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
}

.review-section-author-title {
    font-size: 1.5rem;
    color: #777777;
}

.owl-dots {
    text-align: center;
    margin-top: 4rem;
}

.owl-dot {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #d0d0d0;
    border-radius: 50%;
    margin: 0 0.6rem;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background-color: #000000;
    width: 0.8rem;
    height: 0.8rem;
}

.owl-stage-outer {
    overflow: visible !important;
}
/*End review section*/

/*Start estimator section*/
.estimator-section {
  padding: 6rem 3%; 
  background: #f5f4f2;
  position: relative;
  background: url(../img/main-service-section-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%;
}

/* Equal height fix */
.estimator-section .owl-stage {
  display: flex;
}
.estimator-section .owl-item {
  display: flex;
  height: auto;
}
.estimator-section .estimator-card {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2rem;
  height: 100%;
}

/*.estimator-section .estimator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
*/

.estimator-card:hover img{
  transform: scale(1.4);
}


.estimator-card:hover .estimator-btn{
  background: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
}

.estimator-section .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  background: var(--white-color);
  border: none;
}

.estimator-section .card-header h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #000;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
}

.estimator-section .card-header img {
  width: 55px;
}

.estimator-section .estimator-btn {
  display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    color: #0077c7;
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 1.6rem;
    border-radius: 33px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    transform-origin: top;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #0077c7;
    font-family: "Bricolage Grotesque", sans-serif;
}

.estimator-btn:hover svg{
  filter: brightness(100);
}

.estimator-section .estimator-btn:hover {
  background: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
  transform: scale(1.05);
}

.estimator-section .divider {
  margin: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.estimator-section .card-text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #555; font-weight: 500;
  flex-grow: 1;
}

.estimator-section .custom-nav {
  position: absolute;
  bottom: -55px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.estimator-section .custom-nav button {
  background: var(--white-color);
  color: #0077c7;
  border: 1px solid #0077c7!important;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  font-size: 1.6rem;
}

.estimator-section .custom-nav button:hover {
  background: #0077c7;
  transform: scale(1.1);
  color: var(--white-color);
  border: 1px solid white;
}

.estimator-section .owl-nav {
  display: none;
}

.estimator-section .owl-dots {
  display: none;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 1.6rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/*End estimator section*/

/* FAQ Section Styling */
.faq-section {
  padding: 6rem 3%;
  background: #fff;
  background: url(../img/circle-section-bg.png);
  background-size: cover; background-position: center;
  width: 100%;
}

.faq-section .faq-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: #222;
}

/* Marquee Section */
.marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 3rem 0;
}

/* Scrolling Text */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeMove 15s linear infinite;
}

.marquee-text {
  font-size: 9rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* Absolute Positioned Icons */
.marquee-icon {
  position: absolute;
  font-size: 3rem;
}

.marquee-icon.smile {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.marquee-icon.thumb {
  bottom: -10px;
  right: 20%;
}

@keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

/* Accordion Styling */
.faq-section .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 0.8rem;
  border: 1px solid #dadfe7;
}

.faq-section .accordion-button {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border-radius: 0.8rem !important;
  padding: 1.7rem 2rem;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000;
  background: #f9f9f9;
  box-shadow: none;
}

/* Accordion Body */
.faq-section .accordion-body {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
  padding: 1.5rem 2rem 2rem 2rem;
}

/* Custom Icon Styling */
.faq-section .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067"; /* Plus icon */
  background-image: none !important;
  font-size: 1.6rem;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068"; /* Minus icon */
}
/*end faq section*/

/*Start footer section*/
.footer-main-section {
  background-color: #0d2b4d;
  color: #fff;
  padding: 6rem 3%;
}

.footer-header{
    text-align: center;
}

.get-btn {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    height: 55px;
    border-radius: 14px;
    display: inline-flex;
    background: var(--main-color);
    color: var(--white-color);
    align-items: center;
    border: none;
    font-family: "Bricolage Grotesque", sans-serif;
    gap: 0.6rem;
    transition: all 0.3s ease;
    &:hover{color: var(--white-color);}
    position: relative; z-index: 1;
    margin: auto;
}

.get-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--main-color);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: left center; /* yaha se animation start hogi */
  transition: transform 0.7s ease;
  border-radius: inherit; border-radius: 14px!important;
}

/* Hover effect */
.get-btn:hover::before {
  border-radius: 14px;
  transform: scaleY(1);
}

.get-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    height: 40px;
    width: 40px;
    border-radius: 10px;
    color: var(--main-color);
    margin-left: 1.2rem;
}

.fixed-btn-dashboard{
    position: fixed;
    bottom: 2px;
    transform: translate(-50%, -50%);
    left: 50%;
    background: var(--main-color);
    display: none;
    z-index: 111;
}

.footer-main-section .footer-heading {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  font-family: var(--heading);
  margin-bottom: 1rem;
}

.footer-main-section .footer-subtext {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.8em;
  color: white;
  opacity: .7;
}

.footer-social{
    display: inline-flex;
    align-items: center;
    gap: 6px; flex-wrap: wrap;
}

.footer-main-section .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: #2cc55d;
  color: #fff;
  border: none;
  border-radius: 5rem;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  margin: 0 auto 6rem auto;
  transition: all 0.3s ease;
}

.footer-main-section .contact-btn:hover {
  background-color: var(--main-color);
  transform: translateY(-0.2rem);
}

.footer-main-section .footer-logo img {
  max-width: 150px;
  margin-bottom: 1.5rem;
}

.footer-main-section .footer-logo p {
  font-size: 1.7rem;
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-main-section .footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 1.7rem;
  margin-right: 0.8rem;
  transition: 0.3s;
  text-decoration: none;
}

.footer-main-section .footer-social a:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}

.footer-main-section .footer-col h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-main-section .footer-col a {
  display: block;
  font-size: 1.8rem;
  color: #cfcfcf;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer-main-section .footer-col a:hover {
  color: var(--main-color);
}

.footer-main-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding-top: 2rem;
  text-align: center;
  font-size: 1.3rem;
  color: #cfcfcf;
}

.footer-main-section .footer-bottom a {
  color: #fff;
  margin: 0 1rem;
  text-decoration: none;
  font-size: 1.3rem;
}

.footer-main-section .footer-bottom a:hover {
  color: var(--main-color);
}
/*End footer section*/

/* Fixed Contact Buttons Container */
.fixed-contact-buttons {
    position: fixed;
    right: 50px;
    bottom: 0%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Button Base Style */
.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

/* Phone Button */
.phone-btn {
    background: #5B51D8;
    display: none;
}

.phone-btn:hover {
    background: #4840B8;
}

/* Icon SVG Styles */
.contact-btn i {
    font-size: 2.5rem;
    color: var(--white-color);
}

/* Login Form */
.Artitians-login {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.Artitians-login-heading{
  display: none;
  align-items: center;
  justify-content: space-between;
}

.progress-circle-container {
    position: relative;
    width: 65px;
    flex-shrink: 0;
    height: 65px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.5s ease-in-out; 
}

.progress-circle-container::before {
    content: '';
    position: absolute;
    width: 78%;
    height: 78%;
    border-radius: 50%;
    background-color: #ffffff;
}

.progress-text {
    position: relative;
    z-index: 1;
    color: #6d6d6d;
    letter-spacing: .3px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Bricolage Grotesque", sans-serif;
}

.progress-half {
      background: conic-gradient(var(--main-color) 0% 50%, #f1f1f1 50% 100%)!important;
  }

  .progress-full {
      background: #E45B5B!important; /* Solid color for 100% progress */
  }

  .hidden-otp {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.show-otp {
  max-height: 300px; /* enough to show full content */
  opacity: 1;
}

/* OTP style */
.otp-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 0.5rem;
}
.otp-box {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  border: 2px solid #EDF2F7;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
}

.otp-box:focus {
  border-color: #ff5656;
  border: 1px solid #0077c7;
}
.Artitians-btn.small {
  margin-top: 2rem;
    padding: 1.6rem 0.9rem;
    font-size: 1.8rem;
    border-radius: 12px;
    background: white;
    color: #8b8cb6;
    border: 1px solid #cccccc;
    box-shadow: none;
}

.Artitians-welcome {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    animation: Artitians-textGlow 2s infinite alternate;
    z-index: 1; text-shadow: none!important;
    font-family: "Bricolage Grotesque", sans-serif;
}

@keyframes Artitians-textGlow {
    from { text-shadow: 0 0 5px rgba(108, 99, 255, 0.3); }
    to { text-shadow: 0 0 15px rgba(108, 99, 255, 0.6); }
}

.Artitians-welcome::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--main-color);
    border-radius: 2px;
    animation: Artitians-lineExtend 1s ease-out forwards;
}

@keyframes Artitians-lineExtend {
    from { width: 0; }
    to { width: 70px; }
}

.Artitians-subtitle {
    font-size: 1.6rem;
    color: var(--gray);
    margin-bottom: 4rem;
    animation: Artitians-fadeIn 1.5s ease-out;
    z-index: 1;
}

.Artitians-form-group {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill, 
textarea:-webkit-autofill:hover, 
textarea:-webkit-autofill:focus, 
select:-webkit-autofill, 
select:-webkit-autofill:hover, 
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important; /* white background */
  box-shadow: 0 0 0px 1000px #fff inset !important;          /* white background */
  -webkit-text-fill-color: #000 !important;                  /* text color */
  transition: background-color 5000s ease-in-out 0s;         /* remove flicker */
}

.Artitians-form-group label {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 500;
}

.Artitians-input {
    width: 100%;
    padding: 1.6rem 2rem 1.6rem 5.5rem;
    font-size: 1.6rem;
    border: 2px solid #EDF2F7;
    border-radius: 12px;
    transition: .3s all;
    background: #F7FAFC;
    position: relative;
    z-index: 1; font-family: "Bricolage Grotesque", sans-serif;
}

.Artitians-input:focus {
    border-color: #0077c7;
    outline: none;
    background: white;
}

.Artitians-input-icon {
    position: absolute;
    left: 3rem;
    top: 6.1rem;
    color: var(--gray);
    font-size: 1.8rem;
    transition: var(--transition);
    z-index: 2;
    transform: translate(-50%, -50%);
}

.Artitians-input:focus + .Artitians-input-icon {
    color: var(--primary);
    transform: scale(1.2);
}

.Artitians-forgot {
    display: block;
    text-align: right;
    font-size: 1.4rem;
    color: var(--primary);
    text-decoration: none;
    margin: -1rem 0 3rem;
    transition: var(--transition);
    animation: Artitians-fadeIn 1s ease-out 0.8s both;
    z-index: 1;
}

.Artitians-forgot:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.Artitians-btn {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 1.6rem;
    font-size: 1.7rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    width: 100%; border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    animation: Artitians-fadeIn 1s ease-out 0.7s both;
    z-index: 1; font-family: "Bricolage Grotesque", sans-serif;
    box-shadow: rgb(99 121 255 / 20%);
}

.Artitians-btn:hover {
    transform: translateY(-5px);
}

.Artitians-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.Artitians-btn:hover::before {
    left: 100%;
}

.Artitians-divider {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    color: var(--gray);
    font-size: 1.3rem;
    animation: Artitians-fadeIn 1s ease-out 0.9s both;
    z-index: 1;
}

.Artitians-divider::before,
.Artitians-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #EDF2F7;
}

.Artitians-divider::before {
    margin-right: 2rem;
}

.Artitians-divider::after {
    margin-left: 2rem;
}

.Artitians-register {
    text-align: center;
    font-size: 1.5rem;
    color: var(--gray);
    animation: Artitians-fadeIn 1s ease-out 1s both;
    z-index: 1;
}

.Artitians-register-link {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.Artitians-register-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.Artitians-register-link:hover {
    color: var(--secondary);
}

.Artitians-register-link:hover::after {
    width: 100%;
}

.Artitians-register a{
  color: var(--main-color);
}

.whatsapp-updates-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(45deg, #fff, #EAFFEC);
  border: 1px solid #d2f6d5;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

/* Custom Checkbox */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-container input[type="checkbox"] {
  appearance: none;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid #25d366;
  border-radius: 0.4rem;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: #25d366;
  border-color: #d2f6d5;
}

.checkbox-container input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.6rem;
  width: 0.5rem;
  height: 1rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}

.checkbox-label {
  font-size: 1.6rem;
  color: #111;
  font-family: "Bricolage Grotesque", sans-serif;
  cursor: pointer;
}

/* WhatsApp icon right */
.whatsapp-icon {
  width: 3.2rem;
  height: 3.2rem;
}


/* Backdrop Blur Effect */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.6);
}

/* Smooth Modal Animation */
.modal.fade .modal-dialog {
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Modal Dialog Positioning */
#freeCgpeQuoteModal .modal-dialog {
    position: relative;
}

/* Custom Modal Styling */
#freeCgpeQuoteModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: visible;
    position: relative;
}

/* Close Button Design - Fixed Position */
.get-free-cgpe-quote.btn-close-custom {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: var(--main-color);
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1056;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.get-free-cgpe-quote.btn-close-custom:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.get-free-cgpe-quote.btn-close-custom svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 3;
}

/* Modal Header */
.get-free-cgpe-quote.modal-header-custom {
    background: var(--main-color);
    color: white;
    padding: 15px 30px;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

.get-free-cgpe-quote.modal-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--heading);
}

/* Modal Body */
.get-free-cgpe-quote.modal-body-custom {
    padding: 20px;
    background: #fff;
    min-height: 200px;
    border-radius: 0 0 20px 20px;
}
/*.............*/

/*HEADER*/
/*Start header*/
.job-away-nav {
    padding: 6rem 3%;
    position: absolute;
}

.contact-icons {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgb(88 75 195 / 10%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
}

.icon-btn i{
    font-size: 24px;
}

.icon-btn:hover{
    color: var(--white-color);
    background: var(--main-color);
}

/* Navigation Container */
.job-away-nav__container {
    position: fixed;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 700px;
    background-color: white;
    border-radius: 120px;
    box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scrolled State */
.job-away-nav__container.scrolled {
    width: 100%;
    top: 0; max-width: 100%;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

/* Logo */
.job-away-nav__logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.header-logo img{
    height: 3rem;
}

.job-away-nav__logo:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.job-away-nav__links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.job-away-nav__link {
    position: relative;
    font-size: 1.7rem;
    font-family: var(--heading);
    color: var(--paragrapg-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.job-away-nav__link:hover {
    color: #007cca;
    font-family: var(--heading);
}

.job-away-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: #007cca;
    font-family: var(--heading);
    transition: width 0.3s ease;
}

.job-away-nav__link:hover::after {
    width: 100%;
}

/* Dropdown Indicator */
.job-away-nav__dropdown-indicator {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dropdown Menu */
.job-away-nav__dropdown {
    position: relative;
}

.job-away-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 0.8rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 22rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.5rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0.5rem);
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-indicator {
    transform: rotate(180deg);
    color: #4e6bff;
}

.job-away-nav__dropdown-item {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-away-nav__dropdown-item:hover {
    background-color: #f8f9ff;
    color: #4e6bff;
    padding-left: 2.5rem;
}

/* Search and Login */
.job-away-nav__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.job-away-nav__search {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
    position: relative;
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search:hover {
    color: #4e6bff;
    transform: scale(1.1);
}

.job-away-nav__login {
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-away-nav__login:hover {
    color: #4e6bff;
    transform: translateY(-0.1rem);
}

.job-away-nav__button {
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 33px;
    padding: 1.3rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: var(--heading);
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0.4rem 1rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__button:hover {
    background-color: #3a56e8;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.5rem rgba(78, 107, 255, 0.3);
}

/* Search Bar */
.job-away-nav__search-container {
    position: fixed;
    top: -10rem;
    left: 0; 
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    opacity: 0;
}

.job-away-nav__search-container.active {
    top: 0;
    opacity: 1;
}

.job-away-nav__search-input {
    width: 60%;
    padding: 1.5rem 2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.job-away-nav__search-input:focus {
    border-color: #4e6bff;
    box-shadow: 0 0 0 0.3rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__search-close {
    margin-left: 1.5rem;
    font-size: 2.2rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search-close:hover {
    color: #ff4e4e;
    transform: rotate(90deg) scale(1.1);
}

/* Mobile Menu Toggle - Modern Styling */
.job-away-nav__menu-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    width: 3.2rem;
    height: 2.4rem;
    z-index: 1100;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.job-away-nav__menu-toggle .bar {
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background-color: #333;
    border-radius: 0.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
}

.job-away-nav__menu-toggle .bar:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle.active .bar:nth-child(1) {
    transform: translateX(0.5rem) rotate(45deg) scaleX(0.8);
    background-color: #4e6bff;
}

.job-away-nav__menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.job-away-nav__menu-toggle.active .bar:nth-child(3) {
    transform: translateX(0.5rem) rotate(-45deg) scaleX(0.8);
    background-color: #4e6bff;
}

/* Mobile Menu */
.job-away-nav__mobile-actions {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}
/*End header*/
/*END HEADER*/




/*Media quaries*/
@media screen and (max-width: 992px){
html{
    font-size: 55%;
}

    .discover-badge {
        justify-content: center;
    }

    .job-away-nav__links {
        gap: 2rem;
    }

    .job-away-nav__links {
        gap: 2rem;
    }

    .job-away-nav__container.scrolled {
        width: 100%; 
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    }

    .fixed-contact-buttons {
        position: fixed;
        right: 25px;
        bottom: 0%;
    }

    .contact-btn {
        width: 55px;
        height: 55px;
    }
}

@media screen and (max-width: 992px){ 
    .job-away-nav__container {
        padding: 1.5rem 2rem;
    }

    .job-away-nav__menu-toggle {
        display: block;
    }

    .job-away-nav__links {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-2rem);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .job-away-nav__links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .job-away-nav__dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        margin-left: 1.5rem;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-width: auto;
        transform: none;
        background-color: #f9f9f9;
        border-radius: 0.8rem;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-menu {
        opacity: 1;
        height: auto;
        visibility: visible;
        transform: none;
        padding: 1rem 0;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-indicator {
        transform: rotate(180deg);
        color: #4e6bff;
    }

    .job-away-nav__container.scrolled {
        top: 0;
    }

    .job-away-nav__container.scrolled + .job-away-nav__links {
        top: 7rem;
    }

    .job-away-nav__actions {
        display: none;
    }

    .job-away-nav__mobile-actions {
        display: flex;
    }

    .job-away-nav__search {
        font-size: 2rem;
    }

    .job-away-nav__link {
        width: 100%;
        padding: 1rem 0;
    }

    .job-away-nav__link::after {
        display: none;
    }

    .fixed-btn-dashboard{
        display: flex;
    }

    .footer-main-section .footer-bottom {
        margin-bottom: 5rem;
    }

    .solution-section-heading {
        font-size: 2.6rem;
    }

    .solution-section-subtitle {
        font-size: 1.4rem;
        padding-left: 0;
    }

    .solution-section-cards {
        flex-wrap: wrap;
    }

    .solution-section-card {
        flex: 1 1 calc(50% - 1rem);
        min-height: 35rem;
    }

    .solution-section-card.solution-section-active {
        flex: 1 1 100%;
    }

    .home-content{
        max-width: 100%;
    }

    .success-section{
        border-radius: 19px;
    }
}

@media screen and (max-width: 992px){   
   

    .fixed-btn-dashboard{
        display: flex;
    }

    .footer-main-section .footer-bottom {
        margin-bottom: 5rem;
    }
}

@media screen and (max-width: 650px){ 
    .home-text h2{
        font-size: 5remn;
    }

    .job-away-nav__mobile-actions {
        gap: 1.5rem;
    }

    .job-away-nav__search-input {
        width: 80%;
    }

    .header-logo img {
        height: 4rem;
    }

    .home-btns{
        max-width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .home-btns{
        height: auto;
        background: transparent;
        border-radius: 0;
        border: none;
    }

    .home-content h1{
        font-size: 4rem;
    }

    .home-content h1 span{
        font-size: 4rem;
    }

    .success-section .success-section-card{
        border-bottom: 1px solid #eceaff;
    }

    .section-heading .main-heading {
        font-size: 3.6rem;
    }
}

/* Overlay for closing menu */
.job-away-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(0.3rem);
}

.job-away-nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

.solution-section-icon {
    font-size: 2.5rem;
}

.solution-section-heading {
    font-size: 2.2rem;
}

.solution-section-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.solution-section-card {
    min-height: 30rem;
}

.solution-section-card-content {
    padding: 2rem;
}
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}

@media screen and (max-width: 1200px){
    .solution-section-heading {
        font-size: 3rem;
    }

    .solution-section-card {
        min-height: 40rem;
    }

    .solution-section-card-heading {
        font-size: 2.2rem;
    }

    .solution-section-card-text {
        font-size: 1.4rem;
    }

    .success-section{
        transform: translateY(0);
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px){
    .solution-section-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .solution-section-heading {
        font-size: 2.4rem;
    }

    .solution-section-cards {
        gap: 1.5rem;
    }

    .solution-section-card {
        flex: 1 1 100%;
        min-height: 32rem;
    }

    .solution-section-card-content {
        padding: 2.5rem;
    }

    .solution-section-card-heading {
        font-size: 2rem;
    }

    .home-section{
        min-height: auto;
    }

    .get-free-cgpe-quote.btn-close-custom {
        position: absolute;
        top: 9px;
        right: 10px;
        width: 45px;
        height: 45px;
        background: var(--main-color);
        border-radius: 50%;
        border: 3px solid #fff;
        display: flex
    ;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s 
    ease;
        z-index: 1056;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

