/* Custom CSS for Brij Recruitment Website */
  @font-face {
    font-family: 'Arial';
    src: url("../fonts/Arial.eot?") format("eot"),
      url("../fonts/Arial.ttf") format("truetype");
  }

    @font-face {
    font-family: 'Helvetica';
    src: url("../fonts/Helvetica.eot?") format("eot"),
      url("../fonts/Helvetica.ttf") format("truetype");
  }




:root {
    --primary-color: #1e40af;
    --secondary-color: #2E932D;
    --success-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-color: #374151;
    --border-color: #e5e7eb;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family: Arial !important;
    letter-spacing: 1px;
}

p{
    font-family: Arial !important;
}

a{
    font-family: Arial !important;
}

span {
    font-family: Arial !important;
}

button{
    font-family: Helvetica !important;
}

div {
    font-family: Arial !important;
}
/* Navigation */
.navbar {
            background: #082065;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            padding: 0 0;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        }

        .navbar.scrolled {
            background: var(--primary-color);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: white !important;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }

        .dropdown-menu {
            background: #082065;
            border: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1050;
        }

        .dropdown-item {
            color: rgba(255, 255, 255, 0.9) !important;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white !important;
        }

        .btn-outline-primary {
            color: white;
            border-color: #2E932D;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: #2E932D;
            color: white;
            border-color: #2E932D;
        }

        .btn-success {
            background: #28a745;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-success:hover {
            background: #218838;
        }

/* .logoimage {
    width: 90px;
    height: 80px;
} */

.logoimage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-btn button {
    border-radius: 30px;
    border: 1px solid #fff;
    /* font-size: 14px; */
    letter-spacing: .5px;
}

button.navbutton {
    background: #2E932D;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #2E932D;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%); */
    color: white;
    position: relative;
    overflow: hidden;
    height: 120vh;
    background: #082065;
    background: linear-gradient(106deg,rgba(8, 32, 101, 1) 30%, rgba(71, 171, 71, 1) 70%);
}
.toptagbanner {
    width: fit-content;
    margin: auto;
    background: #47AB47;
    border-radius: 30px;
    padding: 5px 8px;
    margin-bottom: 27px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    align-items: baseline;
}

.swiper.mySwiper {
    margin-top: 15px;
    margin-bottom: 35px;
}
span.top-banner {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
}
/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
} */

.hero-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 105%;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    color: #F5F0EA;
    letter-spacing: .5px;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    animation: fadeInRight 1s ease 0.6s both;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.hero-buttons button {
    font-size: 16px;
    letter-spacing: .5px;
}

/* .hero-image img:hover {
    transform: translateY(-10px);
} */

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.top-content h2 {
    color: #2E932D;
    font-size: 50px;
    font-weight: 500;
    line-height: 105%;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
}

.top-content p {
    color: #F5F0EA;
    font-size: 20px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    letter-spacing: .5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

/* .service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
} */

/* .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-color), #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-features {
    margin-top: 50px;
}

.row.specialised {
    margin-top: 65px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Team Section */

.aboutachieveds .right-side-section {
    width: 80%;
    margin-right: auto;
    margin-bottom: 50px;
    padding-top: 20px;
    text-align: center;
    margin-left: auto;
}

.aboutachieveds .about-div {
    background-color: #47AB47;
    color: #fff;
    padding: 16px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin: 0 auto;
    margin-bottom: 17px;
}

.tab-content {
    width: 90%;
    float: right;
}

.about-div {
    background-color: #47AB47;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 150%;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.wrapper-testimonials {
    width: 95%;
    margin: auto;
}

.right-side-section {
    width: 55%;
    margin-right: 0;
    margin-bottom: 60px;
}

.top-team-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-image {
    width: 80%;
    margin-right: 0;
    float: right;
}

.right-side-section h3 {
    color: #fff;
    letter-spacing: 0;
    font-size: 40px;
    margin-bottom: 0;
}

.team-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.team-stats {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.team-stats li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.about-image {
    width: 90%;
    height: 370px;
    margin: auto;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
}

.job-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.job-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); */
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-header h5 {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.job-type {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.view-more:hover .top-view h5 {
    color: #2e932d;
}

.view-more:hover .job-title {
    color: #2e932d;
}

.view-more:hover span.icon-right{
    background: #2e932d;
}

.job-location {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-salary {
    font-weight: 600;
    color: var(--success-color);
}

/* Contact Section */
/* .contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--success-color) 0%, #2E932D 100%);
    color: white;
} */

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 20px;
}

/* .contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
} */

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
}

.stat-item h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

span.plus {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wrapper-clientss {
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
    height: 40px;
}
.stat-item p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 0;
}

.stats-section.animated {
    background: #47AB47;
    padding: 20px 0px;
    border-radius: 12px;
    width: 90%;
}

.left-theteams {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 30px;
    width: 90%;
}

.bottom-content-teams p {
    font-size: 16px;
    color: #fff;
    letter-spacing: 0;
}

.stat-item {
    color: #FFFFFF;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    top: 50%;
    left: auto;
}

.mid-tesst {
    position: relative;
    height: 100%;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    height: 100%;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.review-header h6 {
    margin: 0;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background: #fff;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

/* .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.swiper.mySwiperblog {
    padding: 10px 10px;
    background: transparent !important;
    padding-top: 10px !important;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    background: #082065;
    min-height: 175px;
}

.blog-content small {
    color: #fff;
    font-size: 12px;
    letter-spacing: .5px;
}

.blog-content p {
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
    height: 65px;
}

.blog-content h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 1rem;
}

.accordion-button {
    background: #E0E0E0;
    border: none;
    font-weight: 600;
    color: var(--dark-color);
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background: #d2d2d2;
    color: #1f2937;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Footer */

.mid-footer h4 {
    color: #082065;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.bottom-form input {
    background: transparent;
    border: 0;
    border-bottom: .5px solid #FFFFFF;
    width: 100%;
    padding-bottom: 10px;
    letter-spacing: .5px;
}

footer.footer h6 {
    color: #47aa47;
    font-size: 16px;
}

ul.social {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

address {
    color: #fff;
    width: 90%;
}

ul.conatct {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.licence-list ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.licence-list ul li a {
    color: #fff;
}

.mid-fff a {
    color: #46a846;
    text-decoration: underline !important;
}


.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.right-ffooot p {
    color: #E1C58E;
    margin-bottom: 0;
    opacity: 50%;
    font-size: 14px;
}

.wrapper-footer {
    width: 60%;
    float: right;
    /* margin-bottom: 45px; */
}

.right-ffooot {
    text-align: right;
}

.mid-fff {
    text-align: center;
}

.linedevider {
    width: 100%;
    height: .5px;
    background: #45a745;
    margin: 10px 0;
}

.bottom-form input::placeholder {
    font-size: 11px;
    color: #fff;
}

.form-control.selects::placeholder{
      font-size: 11px;
    color: #fff;
}



.footer h5, .footer h6 {
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0;
}

ul.list-unstyled {
    padding-left: 0;
    margin-bottom: 0;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer a:hover {
    color: var(--success-color) !important;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--success-color) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        text-align: center;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .service-card,
    .job-card,
    .blog-card {
        margin-bottom: 2rem;
    }

    .contact-form {
        margin-top: 2rem;
    }

    .stat-item {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .job-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .job-footer .btn {
        width: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Button hover effects */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background: #2E932D;
    border-color: #2E932D;
}

/* Loading animation for stats */
.stat-number {
    transition: all 0.3s ease;
}

/* header banner  */

.thewrapper-hero {
    width: 60%;
    margin: auto;
    height: 100%;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 160px;
}

.warpper-herosection {
    height: 475px;
    position: absolute;
    z-index: 9;
    /* background: #1e40af; */
    /* background: #082065; */
    /* background: linear-gradient(106deg,rgba(8, 32, 101, 1) 30%, rgba(71, 171, 71, 1) 70%); */
    background: url('../images/bannerback.png');
    top: 0;
    background-size: 100%;
    width: 100%;
    background-position: bottom;
}

.hero-image {
    animation: fadeInRight 1s ease 0.6s both;
    position: absolute;
    z-index: 1;
    top: 0;
    height: 120vh;
    width: 100%;
}

.hero-buttons button {
    color: #001854;
    background: #ffffff;
    border-color: #ffffff;
    border-radius: 30px;
}

/* services css  */
section.services {
    background: #082065;
    color: #ffffff;
    padding: 55px 0;
}

.service-card p {
    color: #000;
}

.bottom-services {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 35px 25px;
    width: 100%;
}

.theimage-services img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.theimage-services::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #00000070;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 24px;
    background: #FFF;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 30%, rgb(10 10 10 / 88%) 85%);
}

.service-card {
    max-height: 410px;
    position: relative;
}

.bottom-services a {
    color: #47AB47;
    text-transform: capitalize;
}

.top-service-theheading h1 {
    padding: 20px 0 0;
}

span.service {
    background: #082065;
    padding: 6px 12px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.left-sidecontent h4 {
    color: #fff;
}

/* .service-thebigcard-container {
    position: relative;
} */

.thesmallcard-main {
    /* position: relative; */
    width: 95%;
    margin: auto;
}

.thesmallcard {
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
    width: 100%;
    height: 370px;
    background: #082065;
    border-radius: 24px;
}

.thesmallcard.thesmallcard-image {
    /* position: absolute; */
    top: 30px;
    background: #3B507D;
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
}

.left-sidecontent {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-sidecontent h4 {
    color: #fff;
}

.right-sideimage img {
    width: 100%;
    height: 100%;
}

.top-service-theheading.sticky-top {
    top: 100px;
}

.thesmallcard.sticky-top {
    top: 300px;
}

.thesmallcard.thesmallcard-image.sticky-top {
    top: 350px;
}

.thesmallcard.bottom-cardsmall {
    width: 100%;
}

.thesmallcard {
    width: 95%;
    margin: auto;
    margin-top: 50px;
}

.thebottom-card {
    /* position: absolute; */
    top: 78px;
    width: 98%;
    margin: auto;
}

section.service {
    padding: 50px 0;
}

.top-service-theheading {
    width: 70%;
    margin: auto;
    text-align: center;
}

.top-service-theheading h1 {
    color: #000000;
    font-size: 50px;
    font-weight: 500;
    line-height: 105%;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
}

.top-service-theheading p {
    color: #000000;
    font-size: 18px;
    letter-spacing: .5px;
    margin-bottom: 0;
}

.service-thebigcard-container {
    margin-top: 0px;
}

.bottom-card-thecontent p {
    color: #fff;
}

.bottom-card-thecontent a {
    color: #47AB47;
    text-transform: capitalize;
}

/* team css  */
.specialization-tag {
    background-color: #47AB47;
    color: white;
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 12px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}
        section#about h1 {
    color: #000000;
    font-size: 50px;
    font-weight: 500;
    line-height: 105%;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
            margin-bottom: 20px;
}
        .about-section p {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 30px;
        }
       .feature-btn {
    border: 1px solid #000;
    border-radius: 30px;
    padding: 4px 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    background-color: white;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Arial' !important;
    letter-spacing: .5px;
}
        .feature-btn.active {
            background-color: #082065;
            color: white;
            border-color: #082065;
        }
        .feature-btn:hover {
            background-color: #f0f0f0;
            cursor: pointer;
        }
      .about-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.learn-more {
    color: #47AB47;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 7px;
}
        .learn-more:hover {
            text-decoration: underline;
        }
        /* .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        } */

.tab-content h2 {
    color: #000000;
    font-size: 30px;
    font-weight: 600;
    line-height: 100%;
    opacity: 90%;
}

.about-section p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 30px;
    margin-top: 25px;
    letter-spacing: .5px;
    font-weight: 400;
}


/* job section css  */
.header-section {
            text-align: center;
            padding: 20px 0;
        }
.header-section h1 {
    color: #000000;
    font-size: 50px;
    font-weight: 500;
    line-height: 105%;
    animation: fadeInUp 1s ease;
    letter-spacing: 1px;
    margin-bottom: 20px;
    margin-top: 15px;
}
.filter-section {
    display: flex;
    align-items: center;
    margin-bottom: 45px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.job-dropdown {
    display: flex;
    gap: 10px;
}
.filter-section label {
    font-weight: 600;
    margin-right: 0;
    color: #000;
    letter-spacing: .5px;
}
.filter-section select {
    margin-right: 0;
    padding: 5px 10px;
    border: 1px solid #000000;
    border-radius: 30px;
    margin-bottom: 0;
    height: 33px;
    font-size: 14px;
    width: 160px;
}
.clear-btn {
    background-color: #f8f9fa;
    border: 1px solid #000000;
    border-radius: 30px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    height: 33px;
    font-family: 'Arial' !important;
    font-size: 14px;
    letter-spacing: .5px;
}
        .clear-btn .close-icon {
            margin-left: 5px;
            font-weight: bold;
        }
.job-card {
    background-color: #E0E0E0;
    border-radius: 24px;
    padding: 35px 35px;
    margin-bottom: 0;
    position: relative;
    height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.job-card .tags {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.job-card .tags span {
    background-color: #47AB47;
    color: white;
    padding: 3px 10px;
    border-radius: 24px;
    margin-right: 0;
    font-size: 10px;
}

.job-card h5 {
    color: #0A0A00;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 100%;
    font-size: 22px;
}
.job-card p {
    margin: 5px 0;
    line-height: 100%;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    letter-spacing: .5px;
}
     p.job-title {
    font-weight: 400;
    font-size: 16px;
    margin-top: 12px;
}
        .job-card .arrow {
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }
.view-more {
    background-color: #e0e0e0;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 24px;
    font-weight: bold;
    height: 285px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: .5s all;
}

.view-more:hover {
    background-color: #003087;
}

.top-view {
    width: 75%;
}
        .jobcard-warpper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

span.badge {
    background-color: #47AB47;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 100%;
    display: flex;
    width: fit-content;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    padding-top: 9px;
}

span.icon-right {
    width: 25px;
    height: 25px;
    background: #000;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.icon-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.bottom-jobcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-jobcard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: .5px solid #47AB47;
    padding-top: 7px;
}

.top-view {
    width: 70%;
}

.top-view h5 {
    color: #000000;
    font-size: 24px;
}

/* contact section  */

.contactform-warpper {
    background: #082065;
    background: linear-gradient(127deg,rgba(8, 32, 101, 1) 10%, rgba(71, 171, 71, 1) 90%);
    padding: 33px 35px;
    border-radius: 24px;
}

.contact-info h3 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-info p {
    color: white;
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    float: right;
}

.form-control {
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 10px 16px;
    font-size: 12px;
    color: #6B7280;
}

.form-control::placeholder {
    color: #082065;
    opacity: 56%;
}

.form-control:focus {
    border-color: #3B82F6;
    box-shadow: none;
}

textarea.form-control {
    border-radius: 15px;
}

.upload-resume {
    display: block;
    text-align: center;
    border: 2px dashed #D1D5DB;
    border-radius: 15px;
    padding: 15px;
    font-size: 0.9rem;
    color: #6B7280;
    cursor: pointer;
}

.upload-resume small {
    color: #9CA3AF;
}

/* .upload-resume::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M7 16a4 4 0 01-4-4V5a2 2 0 012-2h5l2 2h5a2 2 0 012 2v7a4 4 0 01-4 4H7z" /><path stroke-linecap="round" stroke-linejoin="round" d="M12 12v4m0 0l-3-3m3 3l3-3" /></svg>');
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
} */

span.logo-upload {
    width: 20px;
    height: 20px;
    display: flex;
    margin: auto;
    margin-top: 5px;
}

span.logo-upload img {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-primary {
    background-color: #1E40AF;
    border: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #1E3A8A;
}

.privacy-text {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #000000;
    opacity: 50%;
    font-weight: 600;
    letter-spacing: .5px;
    line-height: 100%;
}

form#contactForm input {
    border: .2px solid #082065;
    border-radius: 30px;
    opacity: 56%;
}

textarea.form-control {
    border-radius: 12px !important;
}

.upload-resume {
    display: block;
    text-align: center;
    border: 2px dashed #bdc3d3;
    border-radius: 12px;
    padding: 15px;
    font-size: 12px;
    color: #6B7280;
    cursor: pointer;
    height: 120px;
}

label.upload-resume span {
    color: #001854;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 100%;
    font-size: 16px;
}

label.upload-resume span.text-form {
    font-size: 12px;
    font-weight: 400;
}

form#contactForm button {
    background: #072165;
    width: fit-content;
}

form#contactForm button {
    background: #072165;
    width: fit-content;
    border-radius: 30px;
    padding: 12px 30px;
    color: #F5F0EA;
    border: .2px solid #072165;
    font-size: 12px;
    letter-spacing: .5px;
}

select.form-control.selects {
    border: .2px solid #082065;
    border-radius: 30px;
    opacity: 56%;
}

.submit-btn-div.w-100 {
    text-align: center;
}

.contact-info {
    margin-top: 50px;
    padding-left: 50px;
}

.right-test {
    position: relative;
    height: 100%;
    width: 40%;
    float: right;
}
.testimonial-main {
    background: #082065;
    background: linear-gradient(127deg, rgba(8, 32, 101, 1) 10%, rgba(71, 171, 71, 1) 90%);
    padding: 50px 35px;
    border-radius: 24px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '';
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    background: transparent;
    color: #fff;
}

.left-test {
    color: #fff;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mid-tesst {
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-button-blog {
    position: relative;
    height: 100%;
}
.swiper-button-prev.courses {
    border: 1px solid #47ab47;
    color: #fff;
    background: #47ab47;
}
.right-button-blog .swiper-button-next.swiper-button-disabled, .right-button-blog .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    background: transparent;
    color: #082065;
    border: 1px solid #082065;
}

.right-button-blog .swiper-button-next, .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #47ab47;
}

.right-test.swiper-button-next, .swiper-button-prev {
    color: #001854;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #fff;
}

.blog-left {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-left h2 {
    color: #000000;
    margin-bottom: 0;
}

/* FAQ css  */
.marquee-container {
    width: 100%;
    overflow: visible;
    white-space: nowrap;
    text-align: center;
}
            .marquee-text {
                display: inline-block;
                animation: marquee 15s linear infinite;
            }
          .section-title {
    font-size: 75px;
    color: #001854;
    margin: 0;
    display: inline;
    letter-spacing: 1px;
    line-height: 150%;
}
            @keyframes marquee {
                0% { transform: translateX(0%); }
                100% { transform: translateX(-33.33%); }
            }

/* accordion css  */
.accordion-button::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: bold;
    background-image: none !important;
    transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
    font-size: 1.5rem;
    font-weight: bold;
    background-image: none !important;
    position: relative;
    top: 5px;
}

.accordion-button:focus {
    box-shadow: none;
}




/* Ensure sticky behavior for .top-service-theheading */
.top-service-theheading.sticky-top {
    position: sticky;

}

/* Existing styles for .thesmallcard */
.thesmallcard {
    display: flex;
    justify-content: space-between;
    padding: 30px 30px;
    width: 95%;
    height: 370px;
    background: #082065;
    border-radius: 24px;
    margin: auto;
    margin-top: 50px;
    transition: width 0.5s ease, transform 0.5s ease; /* Add transform for covering effect */
}

/* Initial width for .bottom-cardsmall */
.thesmallcard.bottom-cardsmall {
    width: 100%;
    transition: width 0.5s ease, transform 0.5s ease;
}

/* Shrunk state for .bottom-cardsmall */
.thesmallcard.bottom-cardsmall.shrunk {
    width: 95%; /* Match other cards */
}
.header_industry {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f5f5f5;
    padding: 20px;
}
.g_heading h1 {
    font-weight: 600;
    padding-top: 14px;
    margin-bottom: -7px;
    color: #082065;
}

.btn-primary {
    background: #082065;
    color: #fff;
}
.header_content-wrapper-industry {
    display: flex;
    width: 100%;

    gap: 40px;
}
.header_image-wrapper-industry {
    width: 100%;
    height: 535px!important;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 65px;
}
.header_content-left-industry {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.u-display-contents {
    display: contents;
}

.g_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.label_tag {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    transition: background 0.3s;
}

.label_tag:hover {
    background: #ffffff;
    cursor: default;
}

.icon-small img {
    width: 20px;
    height: 20px;
}

.u-flex-noshrink {
    flex-shrink: 0;
}

.label_text_link_wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-xsmall svg {
    width: 12px;
    height: 12px;
}

.g_heading h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.g_paragraph p {
    font-size: 1.2rem;
    color: #4a4a4a;
    max-width: 50ch;
    line-height: 1.6;
}

.u-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-animate-chars {
    position: relative;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: #fff;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.btn-animate-chars__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    transform: scaleX(0);
    transform-origin: left;
}

.btn-animate-chars:hover .btn-animate-chars__bg {
    transform: scaleX(1);
}

.btn-animate-chars__text span {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.btn-animate-chars:hover .btn-animate-chars__text span {
    transform: translateY(-5px);
    opacity: 0.7;
}

.header_content-right-industry {
    flex: 0 0 47%;
}

.header_image-wrapper-industry {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.header_video-industry {
    width: 100%;
    height: 100%;
}

.header_video-industry video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header_content-wrapper-industry {
        flex-direction: column;
        gap: 20px;
    }

    .header_content-right-industry {
        flex: 0 0 100%;
    }

    .header_image-wrapper-industry {
        height: 300px !important;
    }

    .g_heading h1 {
        font-size: 2rem;
    }

    .g_paragraph p {
        font-size: 1rem;
    }
    .top-content h2 {
    font-size: 40px;
}
}



   .section_logos_partners {
            padding: 60px 0;
            background-color: #f6f6f6;
            text-align: center;
        }

        .u-container-small {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .g_heading {
            margin-bottom: 0px;
        }

        .g_heading h2 {
            font-size: 2rem;
            font-weight: 500;
            color: #666;
            line-height: 1.3;
        }

        .logo_partners_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            justify-items: center;
            align-items: center;
        }

        .logo_wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 200px;
            height: 80px;
        }

        .logo_img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            fill: #666;
        }

        .u-max-width-16ch {
            max-width: 16ch;
        }

        .u-max-width-12ch {
            max-width: 12ch;
        }

        .u-max-width-10ch {
            max-width: 10ch;
        }

        .cta_logo_partner {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            text-decoration: none;
            color: #333;
            font-weight: 600;
            transition: background-color 0.3s, border-color 0.3s;
        }

        .cta_logo_partner:hover {
            background-color: #f0f0f0;
            border-color: #bbb;
        }

       .icon-small {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}

.u-flex-noshrink {
    line-height: 100%;
}

.g_content a {
    align-items: center;
}

        .pads_remove {
            padding: 0;
        }

        @media (max-width: 768px) {
            .logo_partners_grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 15px;
            }

            .logo_wrap {
                max-width: 150px;
                height: 60px;
            }

            .g_heading h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {


            .logo_wrap {
                max-width: 120px;
                height: 50px;
            }

            .cta_logo_partner {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }


.g_heading h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    /* margin-bottom: -46px!important; */
}

.logo_partners_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0px;
    justify-items: center;
    align-items: center;
}
.row.specialised.align-items-center .row.specialised.align-items-center {
    background: #fff;
    box-shadow: 0px 0px 9px 3px #0000001c;
    border-radius: 13px;
    padding: 45px 2px;
}
.logo_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 212px;
    height: 80px;
    border: 1px solid #00000036;
    background: #fff;
}
.row.specialised.align-items-center {
    margin-top: 12px;
    width: 89%;
    margin-left: auto;
    margin-right: auto;
}
.row.specialised.align-items-center.d__00006777 div#fgf {
    padding-left: 32px;
}
.row.specialised.align-items-center.d__000022 div#fgf {
    padding-left: 40px;
}
.g_heading h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 30px;
}

.btn-primary {
    background: #082065!IMPORTANT;
    color: #fff;
}

.btn-secondary {
    background: #2e932d!IMPORTANT;
    color: #fff;
}

.right-side-section p {
    color: #fff;
}
@media screen and (min-width:320px) and (max-width:767px) {
    .navbar {
    padding: 10px 0;
}
.header_industry {
    margin-top: 120px;
}
.g_content {
    /* justify-content: center; */
    /* align-items: center; */
}

.g_heading {
    margin-bottom: 40px;
    /* text-align: center; */
}

.g_paragraph p {
    font-size: 1rem;
}

.row.specialised.align-items-center {
    width: 100%;
}

.contact-form {
    width: 100%;
}

.contact-info {
    margin-top: 0;
    padding-left: 0;
}

.marquee-container {
    overflow: hidden;
}

.right-side-section {
    width: 100%;
    text-align: center;
}

.right-side-section p {
    color: #fff;
}

.stats-section.animated {
    width: 100%;
    padding: 20px 16px;
}

.left-theteams {
    width: 100%;
}

.team-image {
    width: 100%;
}
.stat-item {
    margin-bottom: 0;
}
.stat-item p {
    font-size: 10px;
}
.blog-card {
    margin-bottom: 0;
}
.logo_wrap {
    height: 130px;
}
}