/* 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 */
/* Navigation */
.navbar {
    background: #082065;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 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;
    transition: opacity 0.3s ease;
    display: none;
    opacity: 0;
    z-index: 99;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

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

.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: 165px;
    height: 95px;
}

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

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

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

/* Mobile-specific styles */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }

    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .navbar-brand {
        font-size: 1.5rem; /* Slightly smaller for mobile */
    }

    .navbar-toggler {
        border: none;
        padding: 8px;
        font-size: 1.4rem;
        z-index: 1051; /* Ensure toggler is above menu */
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-toggler.active .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 4l22 22M4 26L26 4'/%3e%3c/svg%3e");
    }

  .navbar-collapse {
    background: #082065;
    margin-top: 10px;
    border-radius: 8px;
    padding: 15px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: none;
}

    .navbar-nav {
        padding: 10px 0;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 12px 15px;
        margin: 0;
    }

    .dropdown-menu {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-top: 5px;
        width: 100%;
    }

    .dropdown-item {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .logoimage {
        width: 100px;
        height: 60px;
    }

    .nav-btn {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px 0;
    }

    .nav-btn button {
        font-size: 10px;
        padding: 12px;
        width: 100%;
        text-align: center;
    }

    .btn-outline-primary {
        font-size: 1.1rem;
    }

    button.navbutton {
        padding: 12px;
    }
    .fixed-top {
    position: absolute;
}
.nav-btn a button {
    font-size: 10px;
    letter-spacing: 0;
    padding: 3px 5px;
}

.nav-btn a {
    width: max-content;
}
.container-fluid.px-5.mobileres {
    align-items: baseline;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.nav-btn {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 45px;
    left: 57%;
    transform: translate(-50%, -50%);
    gap: 10px !important;
}

.hero-image {
    left: 0;
}
}

.content-footer p {
    margin-bottom: 0;
}

.licence-list.mobile-view {
    display: none;
}
.swiper.mySwiper.education {
    margin-bottom: 0;
    padding-bottom: 35px;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-pagination {
    display: none;
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%); */
    color: white;
    position: relative;
    overflow: hidden;
    height: 100vh;
    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: 8px 16px;
    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: 17px;
    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: 70px;
    font-weight: 600;
    line-height: 80px;
    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: #fff;
    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;
    font-size: 25px;
}

/* 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 */
.team-section {
    padding: 70px 0;
    background: #082065;
    background-image: url('../images/footer-map.png');
}

.tab-content {
    width: 90%;
    float: right;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wrapper-test {
    width: 100%;
    height: auto;
    text-align: center;
}
.wrapper-test img {
    width: 260px;
    height: auto;
    object-fit: contain;
    margin: auto;
}

.jobcard-main a{
    text-decoration: unset;
}
.hero-buttons a {
    text-decoration: unset;
    color: #000;
}
.hero-buttons button:hover{
        background: #2E932D;
    border-color: #2E932D;
}
.hero-buttons button:hover a{
    color: #fff;
}
.about-div {
    background-color: #47AB47;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 17px;
    margin-bottom: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 150%;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.left-side-team.sticky-top {
    z-index: 99999;
    top: 100px;
}

.col-md-6.footer {
    padding-top: 0;
}

.col-lg-6.footer {
    margin-bottom: 20px;
}

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

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

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

.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:#ffffff !important;
    padding-top: 10px !important;
}

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

.blog-content {
    padding: 1.5rem;
    background: #082065;
}

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

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

.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 */
.footer {
    padding: 2rem 0 0rem;
    background: #082065;
}

.right-sidefooter {
    background: #47ab47;
    padding: 33px 30px;
    border-radius: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    margin-bottom: 30px;
}

.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;
}

ul.social li a {
    font-size: 15px;
    font-weight: 800;
}

.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: 0px;
}
.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;
    display: flex;
    width: 90%;
    margin: auto;
}

    .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: 85%;
    margin: auto;
    height: auto;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 50px;
}

.warpper-herosection {
    height: 100%;
    position: absolute;
    z-index: 9;
    top: 0;
    width: 100%;
    /* background: url('../images/bannerback.png'); */
    background-position: top;
    background-size: 0% 100%;
    background-repeat: no-repeat;
    animation: backgroundExpand 1s forwards ease-in-out;
    transition: 5s all;
}

@keyframes backgroundExpand {
    from {
        background-size: 100% 0%;
    }
    to {
        background-size: 100% 100%;
    }
}

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

.warpper-herosection::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #08206536;
}

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

/* services css  */
section.services {
    background: #082065;
    color: #ffffff;
    padding: 55px 0;
    background: linear-gradient(127deg, rgba(8, 32, 101, 1) 10%, rgba(71, 171, 71, 1) 90%);
}

.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;
    left: 0;
    border-radius: 24px;
    background: #FFF;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 30%, rgb(10 10 10 / 88%) 85%);
    border-radius: 0;
    bottom: 0;
    border-bottom-right-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
}

.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: 8px 16px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 1px;
    line-height: 27px;
}

p.brij-pointter {
    font-weight: 600;
    font-size: 22px;
}

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

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

.thesmallcard-main {
    /* position: relative; */
    width: 100%;
    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: center;
    width: 44%;
    gap: 20px;
}

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

.theimage-services {
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
}

.right-sideimage {
    width: 400px;
    height: 400px;
    margin: auto;
}

.right-sideimage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

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

section#services {
    width: 100%;
    height: 50px;
    background: #ffffff;
}

.read-more-btn {
  background: none;
  border: none;
  color: #007BFF;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.read-wrrapper button.toggle-btn {
    border: 0;
    background: transparent;
    font-size: 14px;
    color: #47ab47;
    letter-spacing: .5px;
}

.review-card button.toggle-btn {
    border: 0;
    background: transparent;
    font-size: 14px;
    color: #47ab47;
    letter-spacing: .5px;
}

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

.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: 8px 16px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    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: 8px 16px;
    margin-right: 0px;
    margin-bottom: 10px;
    font-size: 16px;
    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;
    background: #2E932D;
    color: #fff !important;
    padding: 5px 20px;
    border: 1px solid #2E932D;
    width: fit-content;
    border-radius: 45px;
    margin-top: 19px;
}
        .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;
}


/* 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: 260px;
    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: 24px;
    border-radius: 24px;
    font-weight: bold;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: .5s all;
}

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

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

span.badge {
    background-color: #47AB47;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 33px;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    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;
    line-height: 27px;
}

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: 100%;
}

.top-view h5 {
    color: #000000;
    font-size: 24px;
    color: #0A0A00;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 100%;
    font-size: 22px;
}

/* 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;
            display: flex;
        align-items: center;
        flex-direction: row-reverse;
        justify-content: center;
}
.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-prev {
    color: #001854;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #fff;
}

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

.swiper-button-next-test, .swiper-button-prev-test {
    color: #001854;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.swiper-button-next-test.swiper-button-disabled, .swiper-button-prev-test.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%;
}

.right-button-blog .swiper-button-next.swiper-button-disabled, .right-button-blog .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}

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

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

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

.right-button-blog {
    width: 34%;
    float: right;
    margin-right: 70px;
}

.container-fluid.px-5.mobileres {
    justify-content: center;
}

/* 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;

}

a.nav-link {
    font-size: 14px;
}
/* Existing styles for .thesmallcard */
.thesmallcard {
    display: flex;
    justify-content: space-between;
    padding: 25px 50px;
    width: 100%;
    height: 450px;
    background: #0F1A5E;
    border-radius: 44px;
    margin: auto;
    margin-top: 100px;
    transition: width 0.5s ease, transform 0.5s ease;
}

.thesmallcard.numberthree.sticky-top {
    top: 176px;
}

.thesmallcard.thesmallcard-image.numberfour.sticky-top {
    top: 206px;
}

/* 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 */
}

.feature-btn {
    color: #000;
}

.thesmallcard.numberthree.sticky-top {
    background: #3A4BBA;
}

.thesmallcard.thesmallcard-image.numberfour.sticky-top {
    background: #4752ee;
}

.thesmallcard.bottom-cardsmall.sticky-top {
    background: #5675fa;
}

.thesmallcard.bottom-cardsmall.thesmallcard-image.sticky-top {
    background: #1C2B8D;
}

div#audio-control .fa-solid {
    color: #000;
}
div#audio-control {
    position: absolute;
    bottom: 6px;
    right: 8px;
    background: #cccccc85;
    padding: 2px 10px;
    cursor: pointer;
    z-index: 9;
    height: 37px;
    width: 37px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
p.avout-para {
    margin: 0;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}

.col-md-4.footer {
    padding-top: 0;
    padding-bottom: 0;
}

.col-lg-6.footer {
    padding-top: 0;
}

.nav-btn button {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 14px;
    width: 100%;
    font-size: 13px;
    line-height: 23px;
    /* font-family: 'Arial' !important; */
    font-family: 'Helvetica' !important;
}

.faq-buttuon a {
    text-transform: uppercase;
    padding: 10px 14px;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    font-family: 'Helvetica' !important;
    background: #2e932d;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0;
    transition: color 0.3s ease;
}

.faq-buttuon.sticky-top {
    text-align: center;
    top: 100px;
}

.faq-buttuon a .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.faq-buttuon:hover .arrow {
  transform: translateX(5px);
}

.faq-conatainer-arrow a {
    background: #47ab47;
    color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #47ab47;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
}

.faq-conatainer-arrow {
    text-align: center;
    width: fit-content;
    margin: auto;
}

.faq-conatainer-arrow {
    text-align: center;
    width: fit-content;
    margin: auto;
    position: relative;
    top: 12px;
}
.right-test.mobile-view {
    display: none;
}

.thesmalldejob {
    padding: 10px 0;
}
.thesmalldejob ul{
    list-style: none;
    padding: 0;
    padding-top: 5px;
}

.thesmalldejob ul li span{
    margin-right: 10px;
}
.thesmalldejob ul li {
    font-size: 13px;
    line-height: 16px;
    font-family: 'Arial';
}


.thesmalldejob p {
    font-size: 12px;
    line-height: 16px;
    font-family: 'Arial';
}
.applynowwws p {
    margin-right: 10px;
    font-size: 15px;
}
.applynowwws {
    display: flex;
    align-items: center;
    margin-top: 4px;
}
section.carersinglesinfos {
    padding: 70px 0;
}
.thetopesetheader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
}
.thesmallinfos ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.thesmallinfos {
    display: flex;
    align-items: center;
}

.thesmallinfos ul li:nth-child(1) {
    background: #1e40af;
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
}
.thesmallinfos ul li{
    margin-right: 10px;
}

.thesmallinfos ul li:nth-child(2) {
    background: #2e932d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
}

.thesmallinfos ul li:nth-child(3) {
    background: #994228;
    color: #fff;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
}
.thedescritos h1 {
    font-family: 'Arial';
    font-size: 26px;
    letter-spacing: 0;
}
.thedescritos h2 {
    letter-spacing: 0;
    font-size: 22px;
    font-family: 'Arial';
}
.thecareedsinnerinfos {
    padding-top: 25px;
}
a.theaplysbbtns {
    background: linear-gradient(106deg,rgba(8, 32, 101, 1) 30%, rgba(71, 171, 71, 1) 70%);
    font-size: 22px;
    padding: 10px 30px;
    text-decoration: unset;
    margin-top: 20px;
    display: inline-block;
    border-radius: 30px;
    color: #ffff;
}
.services .swiper-wrapper{
    justify-content: center;
}
.u-btn-group.sdgsdgdgs a {
    border-radius: 50px;
}
.u-btn-group.education a {
    border-radius: 68px;
}

li.licences img {
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
}

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

.footer li.licences {
    background: #fff;
    border-radius: 5px;
    padding: 0;
    width: 100px;
    display: flex;
    align-items: center;
}

.wrapper-footer.right-side {
    width: 70%;
}

.card a {
    text-decoration: none;
}

.card-title {
    color: #000;
}

ul.social li a i {
    color: #082065;
}

ul.social li {
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s all;
}

ul.social li:hover{
    transform: translateY(-5px);
}

ul.social li:hover i{
    color: #10b981;
}
.footer___image img {
    width: 166px;
    filter: invert(1);
    filter: invert(1) brightness(2);
    margin-bottom: 57px;
}
button.btn.btn-outline-light.btn-lg.me-3 {
    margin-right: 10px !important;
}
.footer___image.mobile-view {
    display: none;
}
@media screen and (min-width: 1200px) and (max-width: 1440px) {
    .right-button-blog {
        width: 34%;
    }
}


@media screen and (min-width: 1000px) and (max-width: 1350px) {
    .right-button-blog {
        width: 40%;
    }
}
@media screen and (min-width:1000px) and (max-width:1400px) {

    .container-fluid.px-5.mobileres {
    padding: 0px 16px!important;
}

/*
    .right-button-blog {

    margin-right: 25px;
}
*/
}
section.blogsingles {
    padding-top: 140px;
}
.datetine {
    display: flex;
    align-items: center;
}

.datetine .datess:first-child{
    margin-right: 10px;
}
.datetine .datess span{
    margin-right: 5px;
}
.blogdatrtione {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.sharesocials {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
ul.sharesocials li {
    margin: 0 4px;
}
ul.sharesocials li a {
    background: #082065;
    color: #fff;
    padding: 7px 10px;
    border-radius: 5px;
}
.blogsimmages {
    height: 500px;
    padding-top: 25px;
}
.blogsimmages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
section.bloogsinfospars {
    padding-top: 38px;
}
.bottompdf {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.thecontactsdivs a {
    color: #000;
    text-decoration: none;
}

.about-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.logo_wrap svg {
    width: 100%;
    padding: 0 10px;
}
@media screen and (min-width:320px) and (max-width:720px) {
.right-test.mobile-view {
    display: block;
    width: 100%;
    display: flex;
}
  .warpper-herosection {
    height: 100%;
    background-size: 100% 120%;
    width: 100%;
    background-position: 0 90px;
    background-repeat: no-repeat;
    left: 0;
}
.thewrapper-hero {
    width: 100%;
    margin-top: 0;
    margin: auto;
    height: auto;
    top: 50%;
    /* position: relative; */
    left: 0;
    transform: translate(0, -50%);
    text-align: center;
    padding-top: 110px;
}

.hero-section {
    height: 60vh;
}

.hero-image {
    height: 100%;
}

.about-section {
    overflow-x: hidden;
}

.hero-buttons .btn {
    font-size: 14px;
}

.jobcard-warpper {
    grid-template-columns: repeat(1, 1fr);
}
.marquee-container {
    overflow: hidden;
}
.top-service-theheading {
    width: 100%;
    padding-bottom: 30px;
}
.right-side-section h3 {
    font-size: 30px;
    line-height: 40px;
    padding: 0px 15px;
}
.top-content h2 {
    font-size: 40px;
}
.top-service-theheading h1 {
    font-size: 40px;
}
.thesmallcard.mobile-view-card {
    display: flex !important;
    flex-direction: column-reverse !important;
}

.thesmallcard.sticky-top {
    display: block;
    height: 515px;
    position: relative;
    top: 0;
    margin-top: 0;
    margin-bottom: 50px;
}

.thesmallcard {
    padding: 25px 25px;
}

.thesmallcard.bottom-cardsmall.shrunk {
    width: 100%;
}
.left-sidecontent {
    margin-bottom: 10px;
    width: 100%;
    padding-top: 20px;
}
.left-sidecontent {
    gap: 5px;
}
.right-sideimage {
    width: 100%;
    max-height: 220px;
    height: 100%;
}

.thesmallcard.numberthree.sticky-top {
    top: 0;
}

.thesmallcard.thesmallcard-image.numberfour.sticky-top {
    top: 0;
}

.theimage-services {
    height: 430px;
    width: 90%;
    margin: auto;
}
.top-service-theheading.sticky-top {
    position: relative;
    top: 0;
}
.thesmallcard.bottom-cardsmall.thesmallcard-image.sticky-top.shrunk {
    width: 100%;
    top: 0;
    transform: none !important;
}

.thesmallcard.bottom-cardsmall.thesmallcard-image.sticky-top {
    transform: none !important;
    top: 0;
}
section#about h1 {
    font-size: 40px;
}
.tab-content {
    /* display: none; */
    text-align: center;
    float: unset;
    margin: auto;
    margin-top: 40px;
}
.learn-more {
    justify-content: left;
}
textarea.form-control {
    margin-top: 10px;
}
.header-section h1 {
    font-size: 40px;
}
.contact-info {
    margin-top: 0;
    padding-left: 0;
    text-align: center;
}
.contact-info h3 {
    font-size: 40px;
}
.contact-form {
    width: 100%;
    float: unset;
}
.top-team-wrapper {
    display: flex;
    display: block;
}
.about-div {
    margin: auto;
    margin-bottom: 20px;
}
.right-side-section {
    width: 100%;
    text-align: center;
}
.left-theteams {
    width: 100%;
}
.stats-section.animated {
    width: 100%;
    padding: 20px 16px;
}

.col-md-3.about {
    width: 25%;
}
.stat-item {
    margin-bottom: 0;
}

.stat-item p {
    font-size: 10px;
}
.stat-item h3 {
    font-size: 24px;
}
.team-image {
    width: 100%;
}

.mySwipertestimonials {
    margin-top: 70px;
}

.right-test {
    width: 85%;
    float: unset;
    top: 30px;
    margin: auto;
}
.left-test {
    margin-bottom: 0;
}

.left-test {
    text-align: center;
}
.left-test h2 {
    font-size: 30px;
}
.blog-left {
    margin-bottom: 0;
}
.swiper.mySwiperblog {
    margin-top: 50px;
}
.right-button-blog {
    width: 40%;
    float: unset;
    margin: auto;
    margin-bottom: 50px;
}

.blog-card {
    margin-bottom: 0;
}

.blog-left h2 {
    margin-bottom: 20px;
}

.col-md-6.footer {
    width: 50%;
}

.col-lg-6.footer {
    width: 50%;
}

.wrapper-footer {
    width: 80%;
    float: unset;
    margin: auto;
    margin-bottom: 0;
}

.licence-list ul {
    width: 87%;
    margin: auto;
    margin-left: 0;
}

ul.social {
    flex-wrap: wrap;
}

.bottom-content-teams p {
    text-align: center;
}
.stat-item h3 {
    font-size: 24px;
}
.navbar-toggler {
    width: fit-content;
    position: absolute;
    right: 0;
    top: 20px;
}
.contact-form .row.mb-3 {
    margin-bottom: 0 !important;
}

form#contactForm input {
    margin-bottom: 10px;
}
.thewrapper-hero h1{
    font-size: 30px;
}
.thewrapper-hero p{
    font-size: 14px;
    width: 95%;
}

    section.faq-section {
    overflow: hidden;
}
.hero-buttons{
    width: 100%;
    justify-content: center;
}
.hero-buttons .btn {
    font-size: 14px;
    padding: 0;
    width: fit-content;
    margin: 0 !important;
    padding: 4px 13px;
    margin-bottom: 10px !important;
}
.hero-buttons button:first-child{
    margin-right: 10px !important;
    margin-left: 20px !important;
}

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



.theimage-services::after {
    width: 90%;
    height: 430px;
    margin: 0;
    left: unset;
    top: 0px;
}

.thewrapper-hero {
    padding-bottom: 20px;
}

.col-md-4.footer {
    width: 30%;
}

.row.align-items-center.footer-bottoms {
    margin: auto;
    justify-content: space-between;
}

.left-side-team.sticky-top {
    position: relative;
    top: 0;
}

.licence-list {
    margin-bottom: 20px;
}

.services .swiper-wrapper {
    justify-content: flex-start !important;
}

.about-features {
    /* display: flex; */
    overflow: scroll;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    overflow-x: scroll;
    justify-content: flex-start;
}

.feature-btn {
    padding: 5px 12px;
    height: 45px;
    width: -webkit-fill-available;
    width: 210px;
}
.swiper-button-prev.courses {
    border: 1px solid #082065;
    color: #082065;
}
.thetopesetheader {
    flex-wrap: wrap;
}
.thesmallinfos {
    flex-wrap: wrap;
}
section.carersinglesinfos {
    padding: 70px 10px;
}
.swiper-pagination {
    display: block;
}
button.feature-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.licence-list {
    display: none;
}
.about-section p {
    margin-top: 25px;
}
.tab-content {
    margin-top: 0;
}
.reviews-section {
    padding: 0rem 0 5rem;
}
.tab-pane .tab-content h2 {
    margin-top: 30px;
}
.licence-list.mobile-view {
    display: block;
    padding: 0 16px;
}
.wrapper-footer.right-side {
    width: 85%;
}
.faq-question {
    gap: 5px;
}
.footer___image {
    display: none;
}
.footer___image.mobile-view {
    display: block;
    margin-left: 10px;
}
}

p.review-text {
    margin-bottom: 0;
}
.blog-content h6 {
    color: #fff!important;
}
.blog-content h6 {
    color: #fff!important;
    height: 38px;
}
.faq-section {
    width: 100%;
}
.footer___image img {
    margin-left: -10px;
}

@media screen and (min-width:1200px) and (max-width:1440px) {
  /* .thesmallcard {
    height: 390px;
} */
a.nav-link {
    font-size: 13px;
}
a.nav-link {
    font-size: 13px;
    padding: 0 0 0 0 !important;
}

.nav-btn button {
    font-size: 10px;
    padding: 10px 15px;
}

.right-test {
    width: 50%;
}

.right-button-blog {
    width: 40%;
}

.col-md-3.text-end.small-screen {
    padding-left: 0;
}

.nav-btn.d-flex.justify-content-end.gap-3.small-screen {
    gap: 10px !important;
}
}


@media screen and (min-width:767px) and (max-width:1020px) {
    .marquee-container {
    overflow: hidden;
}

button.navbar-toggler.collapsed {
    top: 19px;
    position: absolute;
    right: 0;
}
.fixed-top {

    height: 86px;
}

.logoimage {

    position: absolute;
    top: 19px;
}

div#navbarNav {
    position: absolute;
    right: 0;
    width: 50%;
}

button.navbar-toggler {
    position: absolute;
    right: 0;
    top: 19px;
}

.nav-btn a button {
    font-size: 12px;
    letter-spacing: 0;
    padding: 7px 14px;
}
.services .swiper-wrapper {
    justify-content: flex-start;
}
.jobcard-warpper {
    grid-template-columns: repeat(2, 1fr);
}
.contact-form {
    width: 100%;
}
.contact-info {
    margin-top: 0;
    padding-left: 0;
    text-align: center;
}
.left-theteams {
    width: 100%;
}
.stats-section.animated {
    width: 100%;
}
.bottom-content-teams {
    padding-bottom: 20px;
    text-align: center;
}
.team-image {
    width: 100%;
}
.left-test {
    justify-content: center;
    align-items: center;
}
.col-md-4.tabview {
    width: 100%;
    text-align: center;
}
.right-test {
    width: 100%;
    padding: 20px 0;
}
.col-lg-6.footer {
    width: 50%;
}

.col-lg-3.tabview {
    width: 40%;
}
.col-md-9.tabview {
    width: 60%;
}

.logoimage.tabview {
    top: unset;
    bottom: 0;
    position: relative;
}
.wrapper-footer.right-side {
    width: 100%;
}

.wrapper-footer {
    width: 84%;
    float: right;
    margin-bottom: 0px;
}
.nav-btn button {

    padding: 5px 8px;

    font-size: 10px;

}
.footer___image {
    display: none;
}
.footer___image.mobile-view {
    display: block;
}
}

@media screen and (min-width:1020px) and (max-width:1100px) {
    .marquee-container {
    overflow: hidden;
}
.right-button-blog {
    width: 50%;
}
.bottompdf a {
    font-size: 12px;
}
.blog-content p {
    font-size: 12px;
}
section#about h1 {
    font-size: 30px;
}
.nav-btn button {
    padding: 3px 8px;
}
}