@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Caveat:wght@400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&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&family=Yeseva+One&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #2238B6;
    --text-color: #fff;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Use these exact values for the "DirectHire" glow look */
#global-cursor-blob {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 700px;
    z-index: 10 0;
    background: radial-gradient(circle,
            rgb(0, 162, 255) 0%,
            rgba(0, 51, 102, 0.08) 35%,
            rgba(255, 255, 255, 0) 70%
        );
    border-radius:10%;
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    will-change: transform;
}

a {
    text-decoration: none;
}

.padding-space {
    padding: 3rem 0rem;
}

.title {
    color: var(--main-color);
    font-weight: 700;
    word-spacing: 1px;
    font-size: 2.3rem;
    letter-spacing: 1px;

}

/* 1. The Container for your Hero Section */
.hero-container {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 50px;
    overflow: hidden;
    background-color: #fff;
}

/* 2. The Hero Image */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    /* Hidden initially */
    animation: imageReveal 0.1s forwards 0.8s;
    /* Shows up halfway through */
}

/* 3. The Exact Blue Spinner Effect */
.hero-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: #003366;
    /* The dark blue from your video */
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    /* This animation handles the "pop" and the "exit" */
    animation: circlePop 2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* 4. The Animation Keyframes */
@keyframes circlePop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        border-radius: 50%;
    }

    50% {
        /* Expansion phase: grows to cover the whole hero area */
        transform: translate(-50%, -50%) scale(250);
        border-radius: 50%;
        opacity: 1;
    }

    80% {
        /* Stay solid blue for a tiny moment while image loads behind */
        opacity: 1;
    }

    100% {
        /* Disappear to reveal the image */
        transform: translate(-50%, -50%) scale(250);
        opacity: 0;
    }
}

@keyframes imageReveal {
    to {
        opacity: 1;
    }
}

.loading-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    /* Covers most of the screen width */
    pointer-events: none;
}

.word {
    display: inline-block;
    color: white;
    font-size: 100px;
    /* Massive font size to cover the screen */
    font-weight: 900;
    margin: 0 15px;
    opacity: 0;
    transform: translateY(30px);
    /* Animation for each word */
    animation: wordReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Keyframes for individual word entry */
@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* This fades the entire text group out when the blue circle disappears */
.fade-out-all {
    animation: finalFade 0.4s forwards 1.2s;
}

@keyframes finalFade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Simple Navbar Simulation */
nav {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 50px;
    font-weight: bold;
}

.span-title {
    color: #F95E04;
}

.nav-link {
    color: #000;
}

.active:hover {
    color: #F95E04;
}

.nav-link:hover {
    color: #F95E04;
    font-weight: 600;
    border-bottom: 2px solid #F95E04;
    transition: .2s;
}

.header-logo {
    height: 80px;
}

.findjob-btn,
.hiretalent-btn {
    background-color: var(--main-color);
    border: none;
    padding: 20px 35px;
    font-size: 20px;
    width: 200px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.findjob-btn:hover,
.hiretalent-btn:hover {
    background-color: var(--main-color);
    transform: translateY(-2px);
    transition: 0.3s;
}

/* 1. Main Section Styling */
.parallax-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Yeh magic property hai: background sirf isi div ke andar dikhega */
    clip-path: inset(0 0 0 0);
    padding: 80px 0;
}

/* 2. Fixed Background Layer inside the div */
.fixed-bg {
    position: fixed;
    /* Screen par fixed rahega */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 140%;
    transform: rotate(-12deg);
    opacity: 0.5;
}

.tile {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tile img {
    width: 100%;
    filter: grayscale(1);
}

/* 3. Content Card */
.info-card {
    background: #172FB6;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    padding: 50px;
    position: relative;
    z-index: 2;
}

/*contact page css*/

.contact-box {
    border: 2px solid #153c331a;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.contact-icon {
    background: #f95e0433;
    width: 50px;
    height: 50px;
    margin-right: auto;
    margin-left: auto;
    color: #F95E04;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.contact-box i {
    font-size: 1.5rem;
}

.contact-box strong {
    color: #0B376B;
    font-size: 1.3rem;
}


.form-control1 {
    height: 50px;
}

.form-btn {
    background: #F95E04;
    color: #fff;
}

.infinite-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    width: calc(200%);
    /* double width to loop smoothly */
    animation: scroll-left 20s linear infinite;
}

.slide {
    flex: 0 0 auto;
    width: 170px;
    margin: 0 15px;
}

.slide img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*footer css*/

.footer-area {
    background: #054295;
    padding: 70px 0 30px;
    font-size: 15px;
}

.footer-logo {
    max-width: 220px;
}

.footer-text {
    color: #d5deec;
    line-height: 1.8;
}

.footer_con {
    color: #d5deec;
}

.footer_con a {
    color: #d5deec;
}


.footer-title {
    color: #F95E04;
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
}

.footer-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #F95E04;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d5deec;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #F95E04;
    padding-left: 5px;
}

.footer-area i {
    color: #F95E04;
    margin-right: 8px;
    font-size: 1.1rem;
}

.disclaimer {
    font-size: 14px;
    color: #444;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    line-height: 1.7;
}

.disclaimer span {
    color: #ff8a00;
    font-weight: 600;
}

.img-zoom {
    overflow: hidden;
    border-radius: 10px;
    /* optional */
}

.img-zoom img {
    width: 100%;
    transition: transform 0.6s ease;
}

.img-zoom:hover img {
    transform: scale(1.1);
}

.hero {
    background: #093364ab;
    padding: 5rem 0rem;
}

.hero-section strong {
    font-size: 2.5rem;
}

.hero-section p,
a {
    font-size: 1.1rem;
    color: #fff;
}


/*blog page css*/

.blog-box {
    border: 2px solid #f95e0445;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-toggle {
    cursor: pointer;
}

.blog-toggle h2 {
    font-size: 30px;
    margin-bottom: 5px;
    color: #0B376B;
}

.blog-toggle span {
    font-size: 18px;
    color: #777;
}

/* Smooth slide effect */
.blog-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    opacity: 0;

}

.blog-description.active {
    max-height: 500px;
    /* content ke hisaab se badha sakte ho */
    opacity: 1;
    margin-top: 15px;
}


/*Find job css*/

.job-form-section {
    padding: 60px 0;
}

.job-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.job-form-box h2 {
    font-weight: 700;
}

.job-form-box h2 span {
    color: #F95E04;
}

label {
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    padding: 12px;
    border-radius: 8px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
    background: #003a8a;
    color: #fff;
}

.submit-btn:hover {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
    background: #F95E04;
    color: #fff;
}

.form-hire {
    background: #e9e9ee6e;
}

.job-form-box1 {
    background: #fff;
    padding: 40px 10px;
    border-radius: 12px;

}

.job-form-box1 h2 {
    font-weight: 700;
}

.job-form-box1 h2 span {
    color: #F95E04;
}

.hire-talent {
    border: 2px solid #e9e9ee6e;
    padding: 1.3rem;
    border-radius: 10px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgb(233 222 218);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #ffffff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffffff;
    color: #0b3c78;
}

/*about page css*/

.about-box h1 {
    color: #0B376B;
    font-size: 2rem;
    font-weight: 600;
}

.about-box span {
    color: #F95E04;
}

.stats-section .overlay {
    background: linear-gradient(90deg, #1930af 13%, #2e44bf 46%, rgb(23 47 182) 73%);
    padding: 40px 0;
}

.stats-section h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.stats-section p {
    color: #ddd;
    font-size: 16px;
    margin-top: 10px;
}

.cv-section {
    padding: 90px 0;
    background: #fff;
}

.cv-section h1 {
    font-size: 42px;
    font-weight: 700;
}

.cv-section h1 span {
    color: #F95E04;
}

.subtitle {
    color: #6c757d;
    margin-top: 10px;
    font-size: 16px;
}

.step-box {
    position: relative;
    margin-top: 40px;
}

.step-number {
    width: 34px;
    height: 34px;
    background: #0B376B;
    color: #fff;
    border-radius: 50%;
    line-height: 34px;
    font-weight: 600;
    margin: 0 auto 15px;
}

.icon-box {
    width: 90px;
    height: 90px;
    border: 2px dashed #0B376B;
    border-radius: 12px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ff5722;
    background: #f8f9fa;
}

.step-box p {
    max-width: 220px;
    margin: auto;
    font-size: 15px;
    color: #333;
}

.lets-go-btn {
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    background: #003a8a;
    box-shadow: 0 6px 20px rgba(30, 107, 255, 0.3);
    color: #fff;
}

.head_scroll {
    background: #E75907;
    background: linear-gradient(90deg, #003a8a 13%, #054295 46%, #1160cc 73%);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}

.scroll-wrapper {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.scroll-wrapper p {
    color: #fff;
    font-weight: 600;

    margin: 0;
    padding-right: 100px;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testmonial {

    background-image: url(../images/Map.png);
    background-size: cover;
    padding: 3rem 0rem;
}

.google_review {
    background-color: #fff;
    padding: 2rem 1rem;

}

.google_review h5 {
    font-family: "Afacad", sans-serif;
    color: #000;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
}

.google_review i {
    color: #FF9800;
    font-size: 0.8rem;
}

.review-img img {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-img {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;

}

.industry {
    padding: 3rem 0rem;
}

.industry-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f4f6ff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.industry-box img {
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 1rem;
}

/* SVG circle */
.circle-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

/* Circle stroke */
.circle-svg circle {
    fill: none;
    stroke: #E75907;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease;
}

/* Hover animation */
.industry-box:hover .circle-svg circle {
    stroke-dashoffset: 0;
}


.job-link1 {
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: #E75907;
    font-weight: 500;

}

.job-link2 {
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    background: #F4F6FF;
    margin-left: 0.5rem;
}

.job-link2:hover {

    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: #E75907;
}

@media screen and (max-width: 600px) {
    .header-logo {
        height: 100px;
    }
}
#loader{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg, #063984, #0a58ca);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.loader-box{
  text-align:center;
}

.glow-text{
  color:#fff;
  font-size:36px;
  font-weight:800;
  letter-spacing:1px;
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow{
  from{
    text-shadow:0 0 10px #fff,0 0 20px #6ea8fe;
  }
  to{
    text-shadow:0 0 20px #fff,0 0 40px #6ea8fe;
  }
}

/* Loading Bar */
.bar{
  width:300px;
  height:6px;
  background:rgba(255,255,255,0.3);
  margin:20px auto 0;
  overflow:hidden;
  border-radius:10px;
  position:relative;
}

.bar::before{
  content:"";
  position:absolute;
  width:100px;
  height:100%;
  background:#fff;
  animation: move 1.5s linear infinite;
}

@keyframes move{
  from{ left:-100px; }
  to{ left:300px; }
}

/* Fade Out */
#loader.hide{
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut{
  to{
    opacity:0;
    visibility:hidden;
  }
}
.desktop-img { display: block; }
.mobile-img { display: none; }

@media (max-width: 767px) {
  .desktop-img { display: none; }
  .mobile-img { display: block; }
}
.team-section {
  background: #f4f8ff;
  border-radius: 12px;
}

.team-title-box {
  background: #fff;
  padding: 40px;
  border-left: 5px solid #0d6efd;
  border-radius: 12px;
}

.team-title-box h2 {
  font-weight: 700;
  color: #111;
}

.team-title-box span {
  color: #0d6efd;
}

.team-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e9f0ff;
  margin-bottom: 12px;
}

.swiper-slide h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.swiper-slide p {
  font-size: 14px;
  color: #777;
}
.whatsapp_main { position: fixed; bottom: 40px; left: 20px; text-align: center; z-index: 10; }