body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 15px;
}
* {
    box-sizing: border-box;
}
.gradient_bdr_btm {
    position: relative;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #1a4ffc, #f61263, #ff7d48);
    border-radius: 0 0 12px 12px;
}
.btn-gradient:hover {
    background: linear-gradient(45deg, #ff7d48, #1a4ffc);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}
.read_more {
    background:
        linear-gradient(45deg, #1a4ffc, #ff7d48);
    color: #fff;
    padding:
        10px 12px;
    border-radius:
        50px;
    font-weight: 600;
    transition:
        0.3s ease-in-out;
    text-decoration:
        none;
}
/*css strats for job by industry */
.job-tab-wrapper .nav-tabs .nav-link {
    font-weight: 600;
    color: #555;
    border: none;
    border-radius: 0;
    transition: background 0.3s ease;
}
.job-tab-wrapper .nav-tabs .nav-link.active {
    background: linear-gradient(45deg, #1a4ffc, #f61263);
    color: #fff;
}
.job-tab-wrapper .tab-content {
    margin-top: 20px;
}
.industry-box, .location-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry-box:hover, .location-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.industry-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.location-box {
    background-size: cover;
    background-position: center;
    color: #333;
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.location-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*    background: rgba(0, 0, 0, 0.4);*/
    z-index: 1;
}
.location-name {
    position: relative;
    z-index: 2;
    font-weight: bold;
    font-size: 18px;
}
/*css ends for job by industry */
.our_associates {
    text-transform: uppercase;
}
.our_associates h2 {
    font-size: 16px;
    font-weight: bold;
}
.client-frame {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    /*    padding: 15px;*/
    margin: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.client-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
.client-frame img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
/*Client Carousel css starts*/
.client-carousel img {
    width: 100%;
    padding: 10px;
    transition: transform 0.3s ease;
}
.client-carousel img:hover {
    transform: scale(1.05);
    cursor: pointer;
}
/*Client Carousel css ends*/
.view_all_btn {
    margin-top: 10px;
    background: linear-gradient(to right, #1a4ffc, #f61263);
    border: none;
    padding: 10px 25px;
    color: white;
    font-size: 16px;
    border-radius: 30px;
    width: 100%;
}
.view_all_btn:hover {
    color: #fff;
    text-decoration: none;
    background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
}
/*Animated Heading Text Css Start*/
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated-heading {
    animation: fadeSlide 1.2s ease-out forwards;
    font-size: 3.70rem;
    letter-spacing: -3px;
    line-height: 4.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a4ffc;
}
/*.gradient-text {
    background: linear-gradient(45deg, #f61263, #1a4ffc, #ff7d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s linear infinite;
}*/
@keyframes gradientMove {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}
.typewriter-text {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #fff;
    animation: typing 4s steps(40, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }
    50% {
        border-color: #fff
    }
}
.animated-heading:hover {
    transform: scale(1.02);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}
/*looping type writer animation*/
@keyframes typing {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}
@keyframes deleting {
    from {
        width: 100%
    }
    to {
        width: 0
    }
}
.loop-typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #fff;
    font-weight: bold;
    animation: typing 4s steps(40, end) 0s 1 normal forwards, deleting 4s steps(40, end) 4s 1 normal forwards;
    animation-iteration-count: infinite;
}
/*Scroll text*/
.scroll-text {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    animation: scroll-left 15s linear infinite;
    display: inline-block;
}
@keyframes scroll-left {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/*Animated Heading Text Css Ends*/
/*Css Strats for Counter*/
.counter-wrapper {
    background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.counter-box {
    /* background: rgba(255,255,255,0.1);*/
    border-radius: 20px;
    transition: 0.3s;
    transform: scale(1);
    opacity: 0;
    background: #fff;
}
.counter-box p {
    color: #333;
}
.counter-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}
.counter-visible {
    opacity: 1 !important;
    animation: fadeIn 0.6s ease forwards;
}
.counter-box i {
    color: pink;
}
@keyframes fadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
h3.counter-number {
    font-weight: bold;
    color: purple;
}
/*Css Ends for Counter*/
.code_qr {
    text-align: center;
}
.code_qr h6 {
    text-align: center;
    font-size: 13px;
}
.code_qr img {
    border-radius: 5px;
    border: 1px solid #000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.05);
}
.footer-link {
    color: #f2e9f2;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 6px;
    text-decoration: none;
    font-size: 13px;
}
.footer-link:hover {
    color: #ffd700;
    text-decoration: underline;
}
.footer a {
    font-size: 13px !important;
}
.social-icons .social-icon {
    background-color: #fff;
    color: #5e3d6d;
    margin: 0 5px;
    font-size: 13px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.social-icons .social-icon:hover {
    background-color: #ffd54f;
    color: #000;
    transform: scale(1.1);
}
.footer-top-links h6 {
    font-weight: bold;
    border-bottom: 1px dashed #f61263;
    padding-bottom: 10px;
    text-transform: uppercase;
}
.footer-top-links a {
    transition: color 0.3s ease;
    font-size: 14px;
    color: #343a40;
    padding: 0 12px;
    border-right: 1px solid #343a40;
}
.footer-top-links a:hover {
    color: #f61263; /* Gradient color stop */
    text-decoration: underline;
}
/*Scroll Bottom to top Starts*/
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(50px);
    z-index: 1000;
}
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}
/*Scroll Bottom to top Ends*/
.counter-wrapper .counter-box:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}
.header-attractive {
    /*background: #ffffff;
  padding: 11px 5px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;*/
    /*  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.05);*/
    /*position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;*/ padding: 11px 5px;
    width: 100%;
}
.header-attractive::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #1a4ffc, #f61263, #ff7d48);
    border-radius: 0 0 12px 12px;
}
.hero-banner {
    height: 600px;
    background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 56px;
}
.hero-banner h1 {
    font-size: 3rem;
}
.btn-gradient {
    background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
}
.service-tile {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}
.service-tile:hover {
    transform: translateY(-10px);
}
.mission-vision-section {
    background: #f4f4f4;
    padding: 60px 0;
}
.mission-vision-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.logo_footer {
    margin-bottom: 10px;
    background: #fff;
    border-radius: 10px;
}
.footer_bottom {
    background:
        linear-gradient(135deg, #1a4ffc, #1b2e59);
    color: #fff;
    padding:
        40px 0 5px;
}
.footer_bottom h5 {
    color: #ff7d48;
    font-size: 13px;
    text-transform: uppercase;
}
.footer_bottom p {
    font-size: 13px;
}
footer a {
    color: #f61263;
    text-decoration: none;
}
/* Responsive Mega Menu on Mobile */
@media (max-width: 767.98px) {
    .mega-menu {
        position: static !important;
        display: none;
        background: linear-gradient(135deg, #1a4ffc, #f61263, #ff7d48);
        padding: 15px;
        margin-top: 10px;
    }
}
.gradient-text {
    background: linear-gradient(45deg, #1a4ffc, #f61263, #ff7d48);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*  font-weight: bold;*/
}
.services-section {
    padding: 60px 20px;
    background: #fff;
    margin-top: 100px;
}
.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
}
.ellipse-tile.active .ellipse-hover {
    opacity: 1;
    pointer-events: auto;
}
.ellipse-tile {
    position: relative;
    width: 100%;
    padding-top: 65%;
    background:
        linear-gradient(135deg, #1a4ffc, #f61263, #ff7d48);
    border-radius:
        58% / 13%;
    overflow:
        hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease;
    text-align: center;
    color: #fff;
    height: 55vh;
}
.ellipse-tile:hover {
    transform: translateY(-6px);
}
.ellipse-tile img {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius:
        50%;
    border:
        3px solid #fff;
    background:
        #fff;
}
.ellipse-title {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0 10px;
}
.ellipse-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 58% / 13%;
    background: blue;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}
.ellipse-hover h2 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: #fff;
}
.ellipse-hover p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.ellipse-hover a {
    background: #ff7d48;
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.ellipse-hover a:hover {
    background: #f61263;
}
.ellipse-tile:hover .ellipse-hover {
    opacity: 1;
}
/* Responsive tweaks */
@media (max-width: 767px) {
    .ellipse-tile {
        padding-top: 80%;
    }
    .ellipse-tile img {
        width: 60px;
        height: 60px;
    }
    .ellipse-title {
        font-size: 1rem;
    }
}
.navbar {
    background: #fff;
    padding-top: 0;
    padding-bottom: 0;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.05)*/
}
.navbar-light .navbar-brand {
    color: #2196F3;
}
.navbar-light .navbar-nav .nav-link {
    color: #333;
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: #1ebdc2;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}
.navbar-light .navbar-nav .nav-link {
    padding-top: 0px;
    padding-bottom: 22px;
    transition:
        0.3s;
    padding-left: 8px;
    padding-right: 22px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .nav-link:active {
    color: #f61263;
    transition: 0.3s;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1a4ffc !important;
}
.sm-menu {
    border-radius: 0px;
    border: 0px;
    top: 97%;
    box-shadow: rgba(173, 173, 173, 0.2) 1px 3px 4px 0px;
}
.dropdown-item {
    color: #3c3c3c;
    font-size: 14px;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #2196F3;
}
.navbar-toggler {
    outline: none !important;
}
.navbar-tog {
    color: #1ebdc2;
}
.megamenu-li {
    position: static;
}
.megamenu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 5px 8px 0px, rgba(0, 0, 0, 0.12) 0px 1px 14px 0px !important;
}
.megamenu h6 {
    margin-left: 21px;
    color: #1a4ffc;
}
.megamenu i {
    width: 20px;
}
.btn-read-more {
    margin-top: 10px;
    background: #fff;
    color: #ff7d48;
    padding: 6px 12px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: none;
}
@media (max-width: 767px) {
    .ellipse-tile {
        padding-top: 60%; /* Shorter height */
        height: auto;
        padding-bottom: 25%;
    }
    .ellipse-tile img {
        width: 100px; /* Bigger image */
        height: 100px;
    }
    .ellipse-title {
        font-size: 1rem;
        margin-top: 10px;
    }
}
@media (max-width: 767px) {
    .btn-read-more {
        display: inline-block;
    }
}