* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--body_font);
    color: var(--body_text_color);
}

:root {
    --theme_color: #630a10;
    --bttn_color: #98123f;
    --heading_font: "Poppins", sans-serif;
    --body_font: "Poppins", sans-serif;
    --bg_gradient: #1A4578;
    --body_text_color: #606060;
    --black_color: #212123;
    --white_color: #fff;
    --border-color: #1A4578;
}


.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

.loader .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

.loader p {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.d-none {
    display: none !important;
}

.custom-share-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 0.5rem;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
}

.custom-share-dropdown a {
    font-size: 14px;
    color: #333;
    padding: 4px 8px;
    border-radius: 5px;
}

.custom-share-dropdown a:hover {
    background-color: #f8f9fa;
}

.page .slide .title,
.container .slide .title {
    text-align: center;
    line-height: 100px;
}

.page .slide .paragraph,
.container .slide .paragraph {
    text-align: center;
}

.page .slide,
.container .slide {
    width: 100%;
    background: #e3e3e3;
}

.section_container {
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    padding: 80px 0;
}

.container {
    max-width: 1180px;
}

.padding_areaY {
    padding: 60px 0px;
}

section.inner_banner-sec {
    background: #ffefcb;
}

section.inner_main-sec {
    background: #face7f;
}

h3.shortcode-title {
    text-align: left;
    margin: 0 0 1.5rem;
    font-weight: 700;
    color: #313131;
    font-size: 26.6px;
}

.country-info {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Main header */
.header {
    background: #6b0212;
    position: sticky;
    top: 0;
    z-index: 1000;
}

h1.header-logo.header-logo--center {
    margin: 0px;
}

.header-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

img.normal_logo {
    width: 90px;
    height: auto;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #1e3c72;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-start;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffefcb;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 26px 0;
    position: relative;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--white_color);
}

.nav-link.has-dropdown::after {
    font-family: 'remixicon';
    content: "\ea4e";
    font-size: 18px;
    transition: transform 0.3s ease;
    color: #ffefcb;
}

.nav-item:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
    color: var(--white_color);
}

/* Regular dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 0px 0px 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

.dropdown.dropdown_mini {
    top: 100%;
    left: -83px;
    background: #fff;
    min-width: 185px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    padding: 13px;
}

.dropdown.dropdown_mini a i {
    margin-right: 5px;
}

.dropdown.dropdown_mini a {
    width: 93%;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    border-bottom: 1px solid #f5f5f5;
    padding: 0px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item a {
    display: inline-block;
    width: 100%;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 13px 20px;
}

.dropdown-item:hover {
    background: #8495a238;
}

.dropdown-item:hover a {
    color: #1e3c72;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    user-select: none;
}

.menu-close {
    display: none;
}

.dropdown.dropdown_mini a {
    color: #333;
    text-decoration: none;
    margin: 0 5px;
    padding: 0 1.25em;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 2.8em;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown.dropdown_mini a:hover {
    background: #face7f !important;
    color: #98123f !important;
}

.dropdown.dropdown_mini a svg:hover {
    filter: #98123f !important;
    stroke: #98123f !important;
}

.logininfo a.loing_bttn {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    padding: 0 1.25em;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 2.8em;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #98123f;
    text-decoration: none;
}

.logininfo .nav-item a {
    text-decoration: none;
}

.logininfo .nav-item a.user_icon {
    display: inline-block;
    padding: 18px 0;
}

.logininfo .nav-item a i.ri-user-3-fill {
    font-size: 22px;
    color: var(--white_color);
    cursor: pointer;
    transition: color 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #98123f;
}

.logininfo .nav-item a i.ri-user-3-fill:hover {
    background: #face7f !important;
    color: #98123f !important;
}

.logininfo span {
    color: #a9a9a9;
    margin-left: 0.5rem;
}

/* ======================== //// ====================== */
section.fixed-tray {
    background-color: #ffefcb;
    min-height: 468px;
    display: flex;
    align-items: center;
}

section.fixed-tray .banner-slide-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.fixed-tray .dictionary-search .page-title-text {
    font-weight: 700;
    font-size: 55px;
    transition: font-size .5s;
    color: #6b0212;
    line-height: 55px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

h3.hrone-h2.sans-font {
    font-size: 25px;
    padding: 0px 0px 17px;
    color: #73767c;
    font-weight: 700;
}

section.fixed-tray .dictionary-search p {
    color: var(--black_color);
    font-size: 15px;
    padding: 0px 0px 41px;
}

/* ==================== //workplace-way// ===================== */
section.workplace-services {
    padding: 60px 0px;
    background: #fff0cb;
}

.workplace_title-services {
    text-align: center;
}

.workplace_title-services .workplace-way-h2 {
    color: var(--theme_color);
    font-weight: 700;
    transition: font-size .5s;
    text-transform: capitalize;
}

.head-desc {
    color: var(--theme_color) !important;
    font-size: 15px !important;
    line-height: 21px !important;
}

.workplace_title-services .main-details {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 35px;
}

.workplace_title-services .main-details span:first-of-type {
    font-weight: 600;
    background-color: rgb(152 18 63) !important;
    color: var(--white_color) !important;
}

.workplace_title-services .main-details span:nth-of-type(2) {
    color: rgb(152 18 63) !important;
}

.workplace_title-services .main-details b {
    color: #ee8f7e;
    font-weight: 600;
}

.workplace_tabs {
    position: relative;
    max-width: 970px;
    margin: auto;
}

.workplace_tabs ul.tabs {
    display: flex;
    align-items: center;
    gap: 21px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 27px;
    margin-top: 27px;
}

.workplace_tabs ul.tabs li {
    margin: 0;
    cursor: pointer;
    background-color: #fff;
    flex-grow: 1;
    flex-basis: 0;
    padding-block: 28px;
    padding-left: 25px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.workplace_tabs ul.tabs li .tabs-details img {
    width: 50px;
    height: 50px;
}

.workplace_tabs ul.tabs li:hover {
    border: 1px dotted #face7f;
}

.workplace_tabs .desc ul span.ri-checkbox-circle-fill {
    color: var(--theme_color) !important;
}

.workplace_tabs ul.tabs li.active {
    background-color: #face7f;
    border: 1px dotted #face7f;
    display: block;
    box-shadow: 0 1.17px 6.055px rgba(0, 0, 0, .14);
}

section.legal-updates-section {
    padding: 60px 0px;
    background: #face7f;
}

@media (min-width: 768px) {
    section.legal-updates-section .px-md-5 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }
}

.workplace_tabs ul.tabs li p {
    margin-top: 18px !important;
    font-size: 17px;
    line-height: 18px;
    font-weight: 500;
    color: var(--theme_color);
}

.workplace_tabs .tab_container {
    width: 100%;
    background: #face7f;
    box-shadow: 0 0.17px 2.055px rgba(0, 0, 0, .14);
    overflow: auto;
    border-radius: 12px;
}

.workplace_tabs .tab-content {
    display: none;
    padding: 45px;
}

.workplace_tabs .tab-content.active {
    display: block;
}

.workplace_tabs .tab-content .content {
    display: flex;
    gap: 20px;
}

.workplace_tabs .tab-content .content .desc {
    width: 429px;
}

.image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.workplace_tabs .tab-content .content .desc .simplified-h3 {
    font-size: 26px;
    line-height: 31px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--theme_color) !important;
}

.workplace_tabs .tab-content .content .desc .simplified-p {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 15px !important;
    color: rgba(0, 0, 0, .8980392157);
}

.workplace_tabs .desc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-bottom: 6px;
}

.image img {
    border-radius: 9px;
}

.workplace_tabs .desc ul li {
    font-size: 14px;
    color: #272727;
    position: relative;
    margin-bottom: 8px !important;
    line-height: normal;
}

.workplace_tabs .desc ul li i {
    color: #E7473C;
    font-size: 16px;
}

.workplace_tabs .tab-content .content .desc .buttons a {
    padding-block: 5px;
    padding-inline: 21px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.workplace_tabs .tab-content .content .desc .buttons a i {
    font-size: 28px;
}

.green-btn {
    background-color: #630a10;
    padding-block: 16px;
    padding-inline: 21px;
    font-size: 14px;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #630a10;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s, color .3s;
    display: inline-block;
}

.workplace_tabs .tab-content .faq-link {
    margin-top: 31px;
}

.workplace_tabs .tab-content .faq-link h4 {
    color: #E7473C;
    font-size: 18px;
    font-weight: 700;
}

.workplace_tabs .tab-content .faq-link h4 .faq-link-a {
    font-size: 15px;
    line-height: 18px;
    border-bottom: 1px solid var(--logo_color);
    margin-left: 1%;
    font-weight: 500;
    color: var(--logo_color);
    text-decoration: none;
}

/* Container Styling */
.legal-slider .slick-slide {
    transform: scale(0.75);
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.legal-slider .slick-slide.slick-active {
    transform: scale(0.9);
}

.legal-slider .slick-slide.slick-active.slick-center {
    transform: scale(1.2);
    z-index: 2;
    opacity: 1;
}

.legal-slider .slick-track {
    padding: 50px 0;
}

.slick-slide.slick-active.left-slide {
    transform: scale(0.9) translateX(-33px);
}

.slick-slide.slick-active.right-slide {
    transform: scale(0.9) translateX(33px);
}

.legal-slider img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-updates-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.legal-updates-header h2 {
    font-size: 32px;
    color: var(--theme_color);
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-updates-header p {
    font-size: 16px;
    color: #333;
}

.chatbot-btn {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #F44336;
    color: #fff;
    padding: 10px 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slick-prev,
.slick-next {
    z-index: 99;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 35px;
    height: 35px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: white;
    border: none;
    outline: none;
    background: #000000ed;
    border-radius: 50%;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: #ffffff;
    outline: none;
    background: #000000;
}

.whatsapp-section {
    padding: 60px 0px;
    background: #fffaf1;
}

.whatsapp-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    max-width: 970px;
    margin: auto;
}

.whatsapp-text {
    width: 30%;
}

.whatsapp-button {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-text h2 {
    color: var(--theme_color);
    font-size: 44px;
    font-weight: 700;
    line-height: 44px;
    word-wrap: break-word;
    text-align: end;
}

.whatsapp-button p {
    font-size: 16px;
    color: var(--black_color);
    margin: 0;
}

.whatsapp-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bttn_color);
    color: white;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 60%;
}

.whatsapp-button a i {
    font-size: 25px;
    margin-right: 8px;
}

.whatsapp-button a:hover {
    background-color: #d6322d;
}


.featured-courses {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: var(--theme_color);
    font-weight: 600;
    margin-bottom: 30px;
}

.courses-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: #E7473C;
    border-radius: 20px;
    color: white;
    padding: 20px;
    overflow: hidden;
    margin: 0 10px;
}

.course-card img {
    width: 100%;
    height: 247px;
    object-fit: contain;
    background: #fff;
    line-height: 0;
    border-radius: 15px;
    object-position: center center;
}

.course-content {
    text-align: left;
    padding: 20px 7px;
}

.course-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.course-content h3 a {
    color: #ffefcb;
    text-decoration: none;
}

.course-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.enroll-btn {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

a:hover {
    color: var(--bttn_color);
}



.legal-blogs-slider .slick-slide {
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.legal-blogs-slider .slick-center {
    transform: scale(1.05);
    opacity: 1;
    z-index: 10;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    background: none;
    border: none;
    cursor: pointer;
}

.custom-arrow img {
    width: 36px;
    height: 36px;
}

.slick-prev {
    left: -45px;
}

.slick-next {
    right: -45px;
}


.faq-section {
    padding: 60px 0px;
    background: #face7f;
}


.faq-heading {
    font-size: 28px;
    font-weight: 700;
    color: #f45151;
    margin-bottom: 10px;
    text-align: center;
}

.faq-subheading {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-box {
    background: #FFEFCC;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-box.open {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    cursor: pointer;
    padding: 16px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
    color: var(--theme_color);
    text-align: center;
    background: #face7f;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.faq-icon i {
    line-height: normal;
}

.faq-text {
    flex: 1;
    color: var(--theme_color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 16px;
    font-size: 15px;
    color: #1f2937;
    line-height: 1.5;
}

/* ===================== */
.testimonial-section {
    padding: 60px 0px;
    background: #fcf0c8;
}

.testimonial-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme_color);
    margin-bottom: 10px;
}

.testimonial-subheading {
    font-size: 16px;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.testimonial-box {
    background: #face7f;
    border-radius: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
}

.testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #630a10;
}

.testimonial-description p {
    font-size: 15px;
    color: #630a10;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: #630a10;
}

.testimonial-designation {
    font-size: 14px;
    color: #1f2937;
}

.contact-us_area {
    padding: 60px 0px;
}

.course-card.course_wrapper {
    height: 100%;
}

.course_sec {
    padding: 25px 0px;
    background: #fff0cb;
}

.course_sec .course-banner img {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.course_sec li.list-inline-item {
    font-weight: 600;
    background-color: rgb(152 18 63) !important;
    color: var(--white_color) !important;
    margin: 0px;
    padding: 0px 5px;
}

.paragraph.paragraph_ul-li ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    padding-left: 20px;
}

.paragraph.paragraph_ul-li ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.paragraph.paragraph_ul-li ul li p {
    margin-bottom: 0px;
}

.paragraph.paragraph_ul-li ul li::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--theme_color);
}

h5.hero_title-cur {
    font-size: 22px;
    font-weight: 600;
    color: var(--theme_color);
    margin-top: 25px;
}



















/* =========================== //footer// =================================== */
.footer {
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    background: #630a10;
}

.footer::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="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-section.brand-section {
    margin-right: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    margin-bottom: 40px;
}

p.brand-description {
    color: var(--white_color);
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white_color);
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--white_color);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: var(--white_color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    gap: 10px;
}

.footer-section ul li a i {
    color: var(--white_color);
    font-weight: bold;
    font-size: 15px;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffcd86;
}

.footer-section ul li a:hover i {
    transform: rotate(45deg);
    color: #ffcd86;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.brand-section {
    grid-column: span 1;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.newsletter {
    position: relative;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #d5effe;
    color: #ffffff;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #d5effe;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    padding: 12px 20px;
    background: #911f27;
    border: none;
    color: var(--white_color);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.newsletter-btn::before {
    content: 'â†’';
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid #d5effe;
    padding-top: 30px;
    text-align: center;
    color: var(--white_color);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0px;
}

.footer-bottom a {
    color: #ffedcf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffcd86;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:last-child {
    border-bottom: none;
}

.icon-container {
    width: 40px;
    height: 40px;
    background: #911f27;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.icon {
    width: 18px;
    height: 18px;
    fill: var(--white_color);
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--white_color);
    margin-bottom: 0px;
}

.contact-value {
    font-size: 14px;
    color: #ffedcf;
    text-decoration: none;
    transition: color 0.3s ease;
}


a.contact-value:hover {
    color: #ffcd86;
}

/* Responsive design */
@media (max-width: 480px) {
    .contact-container {
        padding: 0px;
        max-width: 100%;
    }

    .contact-item {
        gap: 12px;
    }

    .icon-container {
        width: 40px;
        height: 40px;
    }

    .icon {
        width: 18px;
        height: 18px;
    }
}

.social_media {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social_media li a {
    text-align: center;
    text-decoration: none;
    border-radius: 50% 50% 50% 50%;
    padding: 0px 0px 0px 0px;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 35px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--white_color);
}

ul.use_link li {
    display: flex;
    align-items: start;
}

ul.use_link li .icon_box {
    margin-right: 15px;
}

ul.use_link li .icon_box i {
    display: block;
    border: 1px solid var(--theme_color);
    color: var(--logo_color);
    width: 33px;
    height: 33px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .brand-section {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .brand-section {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }

    .brand-section {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 8px;
    }
}

.footer-section:nth-child(2) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.footer-section:nth-child(3) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.footer-section:nth-child(4) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 4s;
}


.pyq-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: #ffeecd;
    border-radius: 10px;
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-item:hover {
    background-color: var(--theme_color);
    color: var(--white_color);
    transform: translateY(-4px);
}

.category-item:hover .item-title {
    color: var(--white_color);
}

.item-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.item-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme_color);
}

.main-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--theme_color);
    margin-bottom: 20px;
    text-align: center;
}

.question-grid {
    display: grid;
    grid-template-columns: 1fr 150px;
    gap: 1rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.question-item {
    display: contents;
}

.question-title {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 0.75rem 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.question-pdf {
    text-align: center;
}

.view-pdf-btn {
    display: inline-block;
    background-color: #ec1d26;
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.view-pdf-btn:hover {
    background-color: #c8161d;
}

.no-question-message {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
}

.legal-dictionary-wrapper {
    margin: 0 auto;
    text-align: center;
}

.legal-characters {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0;
}

.legal-characters li {
    padding: 8px 14px;
    border: 1px solid #ffeecd;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    background-color: #ffeecd;
}

.legal-characters li.active {
    background-color: var(--theme_color);
    color: var(--white_color);
    font-weight: bold;
    border-color: var(--theme_color);
}

.legal-words {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.word-box {
    width: 100%;
    max-width: 700px;
    background: #FFEFCC;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.word-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    padding: 16px 23px;
}

.word-icon {
    font-size: 20px;
    transition: transform 0.2s ease;
    color: var(--theme_color);
    text-align: center;
    background: #face7f;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.word-icon i {
    line-height: normal;
}

.word-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0px 23px;
}

.word-box.open .word-content {
    max-height: 1000px;
}

span.word-text {
    color: var(--theme_color);
}

.word-meaning,
.word-sentence {
    line-height: 1.6;
    text-align: left;
    color: #1f2937;
}

.word-sentence {
    padding-bottom: 16px;
}

.audio-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f9f9f9;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    max-width: 400px;
}

.audio-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}


.draft-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.draft-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.draft-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.draft-item .icon-box img {
    width: 50px;
    height: auto;
    margin-bottom: 10px;
}

.draft-item .item-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.legalBlog_slider_item {
    margin-right: 15px;
}

.legalBlog_slider_item .lblogImag {
    height: 190px;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
}

.legalBlog_slider_item .lblogImag .blogmeta_gategory {
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 8px 20px;
    background: #fff;
    color: #000;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    z-index: 2;
}

.legalBlog_slider_item .lblogImag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.legalBlog_slider_item:hover .lblogImag img {
    transform: scale(1.02);
}

.legal-blogs-slider .slick-track {
    padding: 30px 0;
}

.lblogContent {
    margin-top: 20px;
    padding: 24px;
}

.lblogContent span.meta {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    display: inline-block;
}

.lblogContent .lblogTitle {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    color: #000;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lblogContent .lbog_btn {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    color: #000;
    padding-bottom: 7px;
    border-bottom: 1.79px solid #000;
}

.lblogContent .lbog_btn i {
    margin-left: 5px;
    transition: 0.5s;
}

/* =============== blog page section ================= */
.subtitle {
    display: inline-block;
    font-size: 14px;
    padding: 10px 20px;
    background: #98123f;
    border-radius: 20px;
    color: #fff;
    margin-bottom: 20px;
}

.main_title {
    font-size: 42px;
    font-weight: 600;
    color: var(--theme_color);
}

.breadcrumb_section {
    padding: 60px 0;
    padding-bottom: 30px;
}

.lblogotherlinks {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lblogotherlinks a {
    text-decoration: none;
    color: var(--bttn_color);
    font-weight: 500;
}

.lblogContent .lblogTitle a {
    text-decoration: none;
    color: #000;
    transition: 0.5s;
}

.lblogContent .lblogTitle a:hover {
    text-decoration: underline;
}

p.lblog_desc {
    color: #757575;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newsArticleBox {
    border-radius: 16px;
    border: none;
    height: 100%;
    background: #ffeecd;
}

.newsArticleBox.card .legalBlog_slider_item {
    margin: 0px;
}

.blog_wrapper_item {
    margin-bottom: 25px;
}

.lblogotherlinks a i {
    margin-right: 6px;
}

.lblogotherlinks a:not(:last-child) {
    margin-right: 15px;
}

/* =============== blog page section ================= */


/* ============== pagination =================  */
.categoryPagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    align-items: center;
}

.categoryPagination li:not(:last-child) {
    margin-right: 20px;
}

.categoryPagination li a {
    text-decoration: none;
}

.categoryPagination .pagination-nav-item a {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
}

.categoryPagination .pagination-nav-item a.active,
.categoryPagination .pagination-nav-item a:hover {
    background: #00206c;
    color: #fff;
}

.filter-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.filter-container input,
.filter-container select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #667085;
}

.filter-container select {
    width: 151px;
    appearance: none;
    background: url('../images/down-arrow.svg') no-repeat 8px center;
    background-size: 24px;
    background-position-x: calc(100% - 10px);
}

.filter-container input::placeholder {
    color: #667085;
}

.filter-container input[type="search"] {
    padding-left: 30px;
    background: url('../images/search-icon.svg') no-repeat 8px center;
    background-size: 16px;
    width: 320px;
}

.filter-container input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(0) sepia(1) saturate(10) hue-rotate(180deg);
}

/* ============== pagination =================  */

/* ============== leagal watch =========== */
.wath_card_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
}

.wath_card_items .news-card {
    display: flex;
    background: #ffefcb;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    padding: 20px;
}

.wath_card_items .news-image {
    flex: 0 0 232px;
    border-radius: 10px;
    overflow: hidden;
    height: 309px;
}

.wath_card_items .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wath_card_items .news-content {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.wath_card_items .news-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.wath_card_items .news-description {
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 15px;
}

.wath_card_items .news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}

.wath_card_items .news-actions .left,
.wath_card_items .news-actions .right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wath_card_items .news-actions i {
    color: var(--bttn_color);
    font-size: 18px;
    cursor: pointer;
}

.wath_card_items .news-actions span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
}

.news-actions .share_andSave a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
}

.news-actions .share_andSave a:not(:last-child) {
    margin-right: 16px;
}

.news-actions .share_andSave {
    display: flex;
}

.news-actions .share_andSave a i {
    margin-right: 8px
}

.wath_card_items .news-title a {
    text-decoration: none;
    color: var(--theme_color);
}

.wath_card_items .news-title a:hover {
    text-decoration: underline;
}

.wath_card_items .news-description p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.read_more a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.read_more a i {
    font-size: 20px;
    margin-right: 5px;
    color: var(--bttn_color);
}

/* ============== leagal watch =========== */

/* ============== Jobs =========== */
.job-title-box a {
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    color: var(--theme_color);
}

.search-container input,
.select-container select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    color: #667085;
}

.search-container input:focus,
.select-container select:focus {
    box-shadow: none;
    border-color: var(--theme_color);
}

.jobs_box-section {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffeecd;
}

.space-y-2 {
    padding: 20px 24px;
}

.space-y-2 .text-gray-600 {
    color: #6b7280;
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.space-y-2 .text-gray-600:last-child {
    border-bottom: none;
}

.space-y-2 .text-gray-600:nth-child(odd) {
    background-color: #f9fafb;
    margin: 0 -24px;
    padding: 16px 24px;
}

.space-y-2 .text-gray-600:nth-child(even) {
    background-color: #f3f4f6;
    margin: 0 -24px;
    padding: 16px 24px;
}

.space-y-2 .font-medium {
    font-weight: 600;
    color: #374151;
    display: inline-block;
    min-width: 100px;
    margin-right: 8px;
}

.space-y-2 .not-specified {
    font-style: italic;
    color: #9ca3af;
}

.styles_other-details__oEN4O {
    padding: 20px 24px !important;
    padding-top: 0px !important;
}

.styles_education__KXFkO {
    padding: 20px 24px !important;
    padding-top: 0px !important;
}

.styles_details__Y424J {
    color: #6b7280 !important;
    margin: 0 !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid #e5e7eb !important;
    transition: background-color 0.2s ease !important;
}

.styles_details__Y424J:last-child {
    border-bottom: none !important;
}

.styles_details__Y424J:nth-child(odd) {
    background-color: #f9fafb !important;
    margin: 0 -24px !important;
    padding: 16px 24px !important;
}

.styles_details__Y424J:nth-child(even) {
    background-color: #f3f4f6 !important;
    margin: 0 -24px !important;
    padding: 16px 24px !important;
}

.styles_other-details__oEN4O .styles_details__Y424J label {
    font-weight: 600 !important;
    color: #374151 !important;
    display: inline-block !important;
    min-width: 160px !important;
    margin-right: 8px !important;
    font-size: 15px !important;
}

.styles_other-details__oEN4O .styles_details__Y424J span {
    color: #374151 !important;
    display: inline-block !important;
    font-size: 15px !important;
}

.styles_heading__veHpg {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--theme_color) !important;
    margin-left: -23px !important;
    margin-bottom: 20px !important;
}

.jobsPage_description ul ol li.styles_ul-li {
    list-style: none !important;
    margin-left: -18px !important;
}

.jobsPage_detail-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 10px;
}

.jobsPage-title a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--theme_color);
}

.back-to-jobsPage a {
    display: inline-block;
    font-size: 14px;
    padding: 9px 20px;
    background: var(--theme_color);
    border-radius: 20px;
    color: var(--white_color);
    text-decoration: none;
}

.jobsPage_description h2 {
    font-size: 22px;
    font-weight: 600;
    color: var(--theme_color);
}

.jobsPage_description p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 24px;
}

.jobsPage_description ul {
    padding: 0px;
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.jobsPage_description ul ol li {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    color: #555 !important;
}

@media (max-width: 640px) {
    .space-y-2 {
        padding: 15px 20px;
    }

    .space-y-2 .text-gray-600 {
        padding: 12px 0;
        font-size: 14px;
    }

    .space-y-2.text-gray-600:nth-child(even),
    .space-y-2 .text-gray-600:hover {
        margin: 0 -20px;
        padding: 12px 20px;
    }
}

/* ============== form_mainContainer =========== */
.form_mainContainer {
    background: #f6f5f3;
    padding: 50px 0px;
}

.login-form {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    background-color: var(--white_color);
}

.formHeading {
    color: var(--black_color);
    font-size: 28px;
    font-weight: bold;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 8px;
    margin-bottom: 40px;
}

.addBorderCenter {
    position: relative;
}

.addBorderCenter::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 120px;
    height: 4px;
    background: var(--theme_color);
    border-radius: 5px;
    transform: translateX(-50%);
}

.form_group input {
    border: 1px solid #e6e6e6;
    padding: 8px;
    padding-left: 20px;
    border-radius: 8px;
    color: var(--black_color);
}

.form_group input:focus {
    box-shadow: none;
    border-color: var(--theme_color);
}

button.sendBttn {
    color: #fff;
    text-decoration: none;
    padding: 6px 1.25em;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 2.8em;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    background-color: #8795A3;
    transition: all 0.3s ease;
    background: var(--bttn_color);
    border: none;
}

.contact-form {
    margin: 0 auto;
    padding: 40px;
    position: relative;
    background: var(--white_color);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form_grid .form-group {
    position: relative;
}

.form-group label {
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--theme_color);
    box-shadow: none;
}

.checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 18px;
}

.checkbox-wrap input[type="checkbox"] {
    accent-color: #ffd08c;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.checkbox-wrap a {
    color: var(--theme_color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-wrap a:hover {
    text-decoration: underline;
}

.checkbox-wrap strong {
    color: var(--black_color);
}


/* =========================== */
.modal_content-popup {
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    background-color: var(--white_color);
}

.modal_content-popup .formHeading {
    color: var(--black_color);
    font-size: 24px;
    font-weight: 600;
    border-bottom: none;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.modal_content-popup .modal-header {
    justify-content: center;
}

.modal_content-popup button.btn-close {
    position: absolute;
    top: 24px;
    right: 24px;
}

.form_group input {
    border: 1px solid #e6e6e6;
    padding: 8px;
    padding-left: 20px;
    border-radius: 8px;
    color: var(--black_color);
}

.form_group input:focus {
    box-shadow: none;
    border-color: var(--theme_color);
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.header_contact {
    background: var(--theme_color);
    color: var(--white_color);
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.header_contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

.header_contact h2 {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}

.contact-card .contact-info {
    background: #ffd08c;
    padding: 40px 30px;
}

.contact-card .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #ffefcb;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card .contact-item:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.contact-card .contact-item:last-child {
    margin-bottom: 0;
}

.contact-card .icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--theme_color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-card .icon {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-card .contact-details {
    flex: 1;
}

.contact-card .contact-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.contact-card .contact-value {
    font-size: 14px;
    color: var(--theme_color);
    font-weight: 500;
    line-height: 1.4;
}

.contact-card .contact-value a {
    color: var(--theme_color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card .contact-value a:hover {
    color: var(--theme_color);
    text-decoration: underline;
}

.submenu-toggle {
    display: none;
}

#vacancy-results {
    margin-top: 48px;
}

/* ============================== services_details */
.banner_section-inkpot {
    padding: 30px 0px 50px 0px;
}

.banner-inkpot {
    position: relative;
    margin: 0;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 25px;
}

.banner-inkpot video {
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.banner-inkpot:after {
    content: '';
    width: 100%;
    height: 98%;
    position: absolute;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(rgba(0, 0, 0, .333)), to(#000));
    background: -o-linear-gradient(top, #000, rgba(0, 0, 0, .333), #000);
    background: linear-gradient(180deg, #000, rgba(0, 0, 0, .333), #000);
    opacity: 0.7;
    border-radius: 30px;
}

.banner-inkpot i.ri-play-large-fill {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white_color);
    font-size: 45px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.main_title-h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--theme_color);
}

.grid-key-features {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 30px;
}

.key-features ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.key-features ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.key-features ul li img {
    width: 25px;
}

.key-features ul li span {
    font-size: 17px;
}

/* ============== banner_section-testimonial */
.banner_section-testimonial {
    background: #EFEFEF;
    padding: 50px 0px;
}

.testimonial_grid-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.testimonial_grid-box .testimonial-box {
    text-align: left;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.testimonial_grid-box .testimonial-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial_grid-box .testimonial-profile img {
    margin-bottom: 0px;
}

/* ======== section_objectivesProgram */
.section_objectivesProgram {
    padding: 50px 0px;
}

.image_objectivesProgram img {
    width: 100%;
    height: 639px;
    object-fit: cover;
    border-radius: 40px;
}

.objectivesProgram-content {
    padding: 48px;
    border-radius: 40px;
    background: #FDE6E9;
}

.objectivesProgram-content ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-top: 25px;
}

.objectivesProgram-content ul li {
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
}

.objectivesProgram-content ul li::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--theme_color);
}

.objectivesProgram-content a.green-btn {
    text-decoration: none;
    border-radius: 10px;
}

.objectivesProgram-content a.green-btn:hover {
    color: #1B2A50 !important;
    background: #ffcb3d;
    border-color: #ffcb3d;
}

/* ============== banner_section-testimonial */
.banner_section-procedure {
    background: #EFEFEF;
    padding: 50px 0px;
}

.procedure_grid-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.procedure-box {
    background-color: #464646;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.procedure-description p {
    font-size: 14px;
    margin-bottom: 0px;
    color: #fff;
}

.procedure_countNo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffcd86;
    color: var(--theme_color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.procedure-box .buttons {
    text-align: center;
    margin-top: 16px;
}

.procedure-box a.green-btn {
    text-decoration: none;
    border-radius: 10px;
    width: 70%;
    font-size: 15px;
    text-align: center;
    padding-block: 12px;
}

.procedure-box a.green-btn:hover {
    color: #1B2A50 !important;
    background: #ffcb3d;
    border-color: #ffcb3d;
}

/* ================ schedule-call-sec */
.schedule-call-sec {
    padding: 50px 0px;
}

.schedule-call-box {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.schedule-call-text {
    max-width: 750px;
}

.schedule-call-text p {
    font-size: 15px;
}

.schedule-call-box a.green-btn {
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    padding: 14px 25px;
}

.schedule-call-box a.green-btn:hover {
    color: #1B2A50 !important;
    background: #ffcb3d;
    border-color: #ffcb3d;
}

/* ================ services-bought_sec */
.services-bought_sec {
    background: #face7f;
    padding: 50px 0px;
}

.services-bought-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.services-bought-box {
    background: #ffeecd;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.services-bought-box h3 a {
    display: inline-block;
    text-decoration: none;
    font-size: 24px;
    line-height: 24px;
    color: var(--theme_color);
}

.breadcrumb_section .section.paragraph p {
    font-size: 15px;
}

.services-bought-box p {
    font-size: 15px;
}

.services-bought-box a.know_more {
    text-decoration: none;
    color: var(--theme_color);
}

/* =================== services_category */
.services_category {
    background: #EFEFEF;
    padding: 50px 0px;
}

.custom-tabs {
    max-width: 740px;
    margin: auto;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    row-gap: 15px;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 30px;
}

.tab-buttons li a {
    display: block;
    padding: 16px 12px;
    background: #F44336;
    color: #fff;
    text-decoration: none;
    border-radius: 16px;
    transition: background 0.3s;
}

.tab-buttons li a.active,
.tab-buttons li a:hover {
    background: #00206c;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services_category-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    margin-top: 30px;
}

.services_category-box {
    background: #fde6e5;
    width: 360px;
    padding: 20px 0px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #00206c;
}

.services_category-box h3 {
    margin-bottom: 0px;
}

.services_category-box h3 a {
    font-size: 22px;
    text-decoration: none;
    font-weight: 600;
}

.services_category-box span {
    font-size: 20px;
    font-weight: 600;
    color: #F44336;
}


.services_category-box .buttons a {
    text-decoration: none;
    background: transparent;
    border: 1px solid #F44336;
    color: #F44336;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
}

.services_category-box .buttons a:hover {
    background: #00206c;
    color: #fff;
    border-color: #00206c;
}

.deal-breaking_row {
    margin-top: 30px;
}

.services_category-grid.deal-breaking .services_category-box {
    width: 565px;
}


.blog_details-sec {
    position: relative;
}

.blog_section {
    padding: 60px 0px;
    background: #face7f;
}

.legalBlog_slider_item {
    background: #ffefcb;
    border-radius: 12px;
}

img.span_image-banner {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50%;
    display: none;
}

.breadcrumb_top-sec {
    padding: 60px 0px;
    background: #fff0cb;
}

.breadcrumb-bottom-area {
    background: #face7f;
    padding: 10px 0px;
}

.breadcrumb-bottom-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    list-style: none;
    max-width: 960px;
    margin: auto;
}

.breadcrumb-bottom-area ul li {
    display: inline;
    font-size: 12px;
}

.breadcrumb-bottom-area ul li {
    padding-left: 2px;
    margin-bottom: 10px;
    padding-bottom: 0px;
    color: var(--theme_color);
}

.breadcrumb-bottom-area ul li span {
    font-size: 15px;
}

.breadcrumb-bottom-area ul li a {
    font-size: 15px;
    color: var(--theme_color);
    transition: all 0.5s ease 0s;
    text-decoration: none;
}

.blog_para-p p {
    font-family: var(--body_font) !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    text-align: left !important;
    text-indent: 0px !important;
    padding-left: 0px !important;
    line-height: 27px !important;
}

.blog_para-p ul,
.blog_para-p ol {
    padding: 0px !important;
    margin: 0px !important;
}

.blog_para-p ul li {
    margin-left: 20pt;
}

.blog_para-p h2,
.blog_para-p h3,
.blog_para-p h4 {
    font-family: var(--body_font) !important;
    line-height: 20px !important;
}

.blog_para-p h2 span,
.blog_para-p h3 span,
.blog_para-p h4 span {
    font-family: var(--body_font) !important;
    line-height: 20px !important;
}

.blog_para-p ol ul {
    margin-left: 20pt !important;
}

.blog_para-p p span {
    font-family: var(--body_font) !important;
    font-size: 16px !important;
    margin: 0px !important;
    text-align: justify !important;
    text-decoration: none !important;
}

.breadcrumb-top-area {
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 100%;
    background: #face7f;
    box-shadow: 0 0.17px 2.055px rgba(0, 0, 0, .14);
    overflow: auto;
    border-radius: 12px;
    position: relative;
    max-width: 970px;
    margin: auto;
    padding: 45px;
}

.blog-banner {
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 12px;
}

.blog-banner_legalWatch {
    right: 225px;
    top: 185px;
}

.blogMain_title {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.blogMain_title h2 {
    color: var(--theme_color);
    margin: 0px;
    font-size: 28px;
}

ul.blog-meta {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    list-style: none;
}

ul.blog-meta li {
    display: inline;
}

.blog-meta {
    margin-bottom: 35px !important;
}

.blog-meta .meta-category {
    color: var(--theme_color) !important;
    font-size: 17px !important;
    font-weight: 600;
}

.meta-date {
    color: #1f2937 !important;
    font-size: 17px !important;
}

.blog-meta .divider {
    color: var(--theme_color) !important;
    font-size: 17px !important;
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.paginationWrapper {
    margin-top: 20px;
}

.blog_paragraph .blog_para-p p {
    margin-bottom: 0px;
}

/* ========================= about_sec-area */
.about_sec-area {
    background: #face7f;
}

.hero-card {
    position: relative;
}

.hero-card h2 {
    font-size: 32px;
    color: var(--theme_color);
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-card p {
    font-size: 15px;
    color: #1f2937;
}

.about_image-low img {
    width: 100%;
}

.about_sec-cards {
    width: 100%;
    background: #ffeecd;
    box-shadow: 0 0.17px 2.055px rgba(0, 0, 0, .14);
    overflow: auto;
    border-radius: 12px;
    padding: 45px;
    margin-top: 40px;
}

.about_sec-cards h2 {
    font-size: 32px;
    color: var(--theme_color);
    font-weight: 700;
    margin-bottom: 10px;
}

.about_sec-cards p {
    font-size: 15px;
    color: #1f2937;
}

.about_sec-cards p:last-child {
    margin-bottom: 0px;
}

.about_sec-cards .our_cards {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about_sec-cards .our_cards .our_cards-title {
    width: 40%;
}

.about_sec-cards .our_cards aside {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 60%;
}

.about_sec-cards .our_cards aside .card {
    background: var(--theme_color);
    border-radius: 12px;
    padding: 28px;
    border: 0;
    width: 100%;
}

.about_sec-cards .our_cards aside .card h3 {
    color: var(--white_color);
}

.about_sec-cards .our_cards aside .card p {
    font-size: 14px;
    margin-bottom: 0px;
    color: var(--white_color);
}


.Join-section {
    padding: 60px 0px;
    background: #fffaf1;
}

.Join-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    max-width: 970px;
    margin: auto;
}

.Join-text {
    width: 37%;
}

.Join-para {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.Join-text h2 {
    color: var(--theme_color);
    font-size: 44px;
    font-weight: 700;
    line-height: 44px;
    word-wrap: break-word;
    text-align: end;
}

.Join-para p {
    font-size: 16px;
    color: var(--black_color);
    margin: 0;
}

.course_sec .header_contact h2 {
    font-size: 20px;
}

.course_sec .card {
    border-radius: 12px;
}

.course_sec .header_contact {
    padding: 20px;
    border-radius: 12px 12px 0px 0px;
}

.course_sec .sendBttn {
    padding: 0px 1.25em;
}

.course_sec .form-group input,
.course_sec .form-group select,
.course_sec .form-group textarea {
    padding: 9px 10px;
    font-size: 14px;
    margin-bottom: 0px;
}

.formMsg_error .alert.alert-danger {
    padding: 8px 13px;
    font-size: 14px;
    border-radius: 8px;
}


.course_sec .form-group small {
    font-size: 13px;
}


































/* ============================ MOBILE STYLING ========================= */
@media (max-width: 991px) {

    .logininfo {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-item {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
    }

    .main-nav.active .nav-item {
        display: flex;
    }

    .nav-item {
        width: 100%;
        position: relative;
    }

    .nav-link {
        padding: 14px 20px;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        border-radius: 0;
    }

    .dropdown.dropdown_mini {
        position: absolute;
        top: 100%;
        opacity: 0;
        left: -150px;
        background: #fff;
        min-width: 185px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 6px;
        padding: 13px;
    }

    .nav-item:hover .dropdown.dropdown_mini {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item.open .dropdown {
        display: block;
    }

    .nav-item.open .nav-link.has-dropdown::after {
        transform: rotate(180deg);
    }

    .main_navMobile.active {
        right: 0px;
    }

    .main_navMobile {
        position: fixed;
        top: 50%;
        right: -350px;
        transform: translateY(-50%);
        width: 280px;
        height: auto;
        padding: 0;
        background: #fff;
        box-shadow: 0 2px 11px 0 rgba(0, 0, 0, .2);
        box-sizing: border-box;
        transition: .5s;
        z-index: 1002;
        display: block;
        height: 100%;
        padding-top: 50px;
    }

    .menu-close {
        position: absolute;
        top: 0px;
        right: 15px;
        font-size: 34px;
        font-weight: 500;
        cursor: pointer;
        z-index: 1005;
        color: #333;
        transition: color 0.3s ease;
        display: block;
    }

    .menu-close:hover {
        color: #00226e;
    }

    .nav-link.has-dropdown::after {
        display: none;
    }

    .submenu-toggle {
        display: block;
        font-size: 22px;
        transition: transform 0.3s ease;
        color: #999;
        position: absolute;
        top: 9px;
        right: 20px;
    }

    .dropdown-item:last-child {
        border-bottom: 1px solid #f5f5f5;
    }

    #vacancy-results {
        margin-top: 20px;
    }

    .draft-list {
        padding: 0px;
    }
}

@media (max-width: 767px) {

    section.fixed-tray {
        min-height: 400px;
    }

    section.fixed-tray .dictionary-search .page-title-text {
        font-size: 36px;
        line-height: 40px;
    }

    .header {
        padding: 10px 12px;
    }

    .dictionary-search:first-of-type {
        width: 55%;
    }

    .dictionary-search:last-of-type {
        width: 45%;
    }

    .dictionary-search img {
        width: 100%;
    }

    .workplace_title-services .main-details {
        font-size: 20px !important;
        padding-bottom: 15px !important;
    }

    .head-desc {
        font-size: 13px !important;
    }

    .workplace_tabs .tab-content .content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        /* optional spacing */
    }

    .workplace_tabs .tab-content .content .image {
        order: -1;
    }

    .slick-next {
        right: 15px;
    }

    .slick-prev {
        left: 15px;
    }

    .legal-slider img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .workplace_tabs ul.tabs {
        gap: 10px;
    }

    .workplace_tabs ul.tabs li {
        padding-block: 15px;
    }

    .tabs-details img {
        width: 40px;
        height: 40px;
    }

    .workplace_tabs ul.tabs li p {
        font-size: 13px;
    }

    .workplace_tabs .tab-content {
        padding: 25px;
    }

    .workplace_tabs .tab-content .content .image img {
        width: 100%;
    }

    .workplace_tabs .desc ul li {
        margin-bottom: 0px !important;
    }

    .whatsapp-section {
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .footer-section.brand-section {
        margin-right: 0px;
    }

    .testimonial-wrapper {
        gap: 15px;
        justify-content: space-around;
    }

    .testimonial-section {
        padding: 30px 0px;
    }

    .testimonial-box {
        padding: 15px;
        max-width: 220px;
    }

    .testimonial-description p {
        font-size: 13px;
    }

    .testimonial-designation {
        font-size: 12px;
        color: #666;
    }

    .whatsapp-button a i {
        font-size: 22px;
        margin-right: 8px;
    }

    .about-us_area {
        padding-top: 30px;
    }

    .contact-us_area {
        padding-top: 30px;
    }

    .breadcrumb_section {
        padding: 30px 0;
        padding-bottom: 10px !important;
    }

    .contact-form {
        margin-bottom: 30px;
    }

    .main_title {
        margin-bottom: 12px;
    }

    .section.paragraph p span {
        font-size: 15px;
    }

    .wath_card_items .news-card {
        flex-direction: column;
    }

    .wath_card_items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 25px;
    }

    .wath_card_items .news-content {
        padding-left: 0px;
    }

    .course-card {
        margin-bottom: 25px;
        padding: 15px;
    }

    .course-card img {
        height: auto;
    }

    .course-content h3 {
        font-size: 18px;
    }

    .course-content {
        padding-bottom: 0px;
    }

    .newsArticleBox {
        margin-bottom: 25px;
    }

    .paginationWrapper {
        margin-top: 10px;
    }

    .login-form {
        padding: 20px;
    }

    .formHeading {
        margin-bottom: 30px;
    }

    .form-check label.form-check-label {
        font-size: 14px;
    }

    a.text-decoration-none {
        font-size: 14px;
    }

    .footer {
        padding: 30px 0 30px;
    }

}


@media (max-width: 480px) {
    .contact-card {
        border-radius: 15px;
    }

    .header_contact {
        padding: 20px 15px;
    }

    .header_contact h2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .contact-card .contact-info {
        padding: 30px 20px;
    }

    .contact-card .contact-item {
        padding: 12px;
    }

    .contact-card .icon-container {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }

    section.fixed-tray .banner-slide-container {
        flex-direction: column;
    }

    .dictionary-search:first-of-type {
        width: 100%;
    }

    .dictionary-search:last-of-type {
        width: 100%;
    }

    section.fixed-tray .dictionary-search p {
        padding: 0px 0px 0px;
    }

    section.fixed-tray .dictionary-search .page-title-text {
        font-size: 28px;
        line-height: 36px;
    }

    section.fixed-tray .dictionary-search .page-title-text br {
        display: none;
    }

    h3.hrone-h2.sans-font {
        font-size: 17px;
        padding: 0px;
    }

    h3.hrone-h2.sans-font br {
        display: none;
    }

    section.fixed-tray {
        min-height: auto;
        padding: 30px 0px;
    }

    .workplace_tabs ul.tabs {
        gap: 10px;
        overflow-x: auto;
        white-space: nowrap;
        width: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .testimonial-box {
        padding: 15px;
        max-width: 100%;
    }

    .workplace_tabs ul.tabs li {
        padding: 15px 20px;
    }

    .workplace_tabs .tab-content .content .desc .simplified-h3 {
        font-size: 22px !important;
    }

    .workplace_tabs .tab-content .faq-link {
        margin-top: 15px;
    }

    .workplace_tabs .tab-content .content .desc .buttons a {
        padding-block: 4px;
    }

    .whatsapp-section {
        padding: 15px;
    }

    .whatsapp-box {
        gap: 12px;
    }

    .whatsapp-button a {
        padding: 8px 16px;
    }

    .whatsapp-button a i {
        font-size: 18px;
        margin-right: 8px;
    }

    .legal-updates-header h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .featured-courses {
        padding: 30px 5px;
    }

    .faq-section {
        padding: 0px;
    }

    .course-content p {
        font-size: 14px;
        margin-bottom: 10px;
        -webkit-line-clamp: 4;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .faq-question {
        padding: 10px;
        font-size: 13px;
    }

    .chatbot-btn {
        top: 96px;
        font-size: 11px;
    }

    .workplace_title-services .main-details {
        font-size: 16px !important;
        padding-bottom: 15px !important;
    }

    img.normal_logo {
        width: 60px;
    }

    .workplace_tabs .tab-content {
        padding: 15px;
    }

    .whatsapp-text p {
        font-size: 14px;
        color: #333;
        margin: 0;
    }

    .main_title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 10px;
    }

    .form_grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .contact-form {
        margin-bottom: 30px;
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 9px 15px;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .filter-container input[type="search"] {
        width: 100%;
    }

    .filter-container input,
    .filter-container select {
        font-size: 12px;
    }

    .wath_card_items .news-title {
        font-size: 16px;
        margin-top: 12px;
    }

    .pyq-categories-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(163px, 1fr));
        gap: 15px;
    }

    .jobsPage-title a {
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
    }

    .space-y-2 .text-gray-600:nth-child(odd) {
        padding: 16px 15px;
    }

    .space-y-2 .text-gray-600:nth-child(even) {
        padding: 16px 15px;
    }

    .styles_details__Y424J:nth-child(odd) {
        padding: 16px 15px !important;
    }

    .styles_details__Y424J:nth-child(even) {
        padding: 16px 15px !important;
    }

    .styles_other-details__oEN4O .styles_details__Y424J label {
        min-width: 130px !important;
        margin-right: 0px !important;
        font-size: 13px !important;
    }

    .styles_other-details__oEN4O .styles_details__Y424J span {
        font-size: 13px !important;
    }

    .procedure_grid-box {
        grid-template-columns: 1fr;
    }

    .banner_section-procedure {
        padding: 30px 0px;
    }

    .banner_section-inkpot {
        padding: 30px 0px 30px 0px;
    }

    .services-bought-grid {
        grid-template-columns: 1fr;
    }

    .services-bought-box h3 a {
        font-size: 18px;
    }

    .testimonial_grid-box {
        grid-template-columns: 1fr;
        margin-top: 15px;
    }

    .image_objectivesProgram img {
        height: auto;
    }

    .breadcrumb_section {
        padding-bottom: 0px !important;
    }

    .main_title-h2 {
        font-size: 28px;
    }

    .objectivesProgram-content {
        padding: 25px;
        margin-top: 20px;
    }

    .tab-buttons {
        margin-top: 15px;
    }

    .tab-buttons li {
        width: 100%;
    }

    .objectivesProgram-content h2 span {
        font-size: 22px;
    }

    .services_category {
        padding: 30px 0px;
    }

    .services_category-grid {
        margin-top: 15px;
    }
}

.slide.container.py-4.mt-4.blog_paragraph {
    background: #fff;
}
