@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

@font-face {
    font-family: "BellMT";
    src: url("../fonts/BellMT-Regular.woff2") format("woff2"),
         url("../fonts/BellMT-Regular.woff") format("woff"),
         url("../fonts/BellMT-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #0052a5;
    --secondary-color: #8981bd;
    --white-color: #fff;
    --black-color: #000;
    --dark-gray: #000;
    --bg-breadcrumb: #ecf2f8;

    /* Title Styles */
    --main-title-font-size: 52px;
    --title-font-size: 38px;
    --subtitle-font-size: 32px;
    --blog-title-font-size: 24px;
    --title-font-family: "Bell MT";
    --body-font-family: "Onest", sans-serif;
    --body-font-size: 16px;
    --body2-font-size: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  overflow-y: auto !important;
  overflow-x: hidden;
}

body.popup-open {
  width: 100%;
  overflow: hidden !important;
}

body {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    margin: 0;
    padding: 0;
    color: var(--black-color);
}

.mheight {
    min-height: 500px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "BellMT";
}

p {
    margin: 0px;
    padding: 0;
    font-family: var(--body-font-family);
}

/* Topbar */

.topbar {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 14px;
}

.topbar a {
    color: var(--white-color);
    text-decoration: none;
        margin-right: 15px;
}

.topbar i {
    margin-right: 5px;
    color: var(--white-color);
}

.topbar span.border-left {
    border-left: var(--white-color) solid 1px;
    padding-left: 8px;
}

.searchContainer {
    position: relative;
}

.searchContainer a i {
    margin-right: 0;
}

#searchForm {
    position: absolute;
    right: 0;
    border-radius: 4px;
    background: var(--white-color);
    padding: 15px;
    z-index: 9999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#searchForm form {
    display: flex;
    justify-content: center;
    gap: 6px;
}

#searchForm form input {
    border: none;
    background: #eff2f7;
    padding: 5px 12px;
    border-radius: 40px;
    color: var(--black-color);
    font-size: 14px;
}

#searchForm form input:focus {
    outline: none;
}

#searchForm form button {
    border: none;
    background: var(--primary-color);
    width: 36px;
    height: 34px;
    border-radius: 50px;
    text-align: center;
    margin: auto;
}

#searchForm form button i {
    margin-right: 0;
    color: var(--white-color);
    font-size: 14px;
}

#searchForm form button:focus {
    outline: none;
}

/* Header */
header.main-header {
    box-shadow: none;
    border-radius: 0;
    padding-top: 35px;
}

/* Sticky state */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding-top: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.35s ease;
    z-index: 11;
}

.main-header.sticky .container {
    box-shadow: none;
    padding: 5px 24px;
}

/* Smooth slide effect */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-header .container {
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 24px;
    border-radius: 7px;
}

.logo-section {
    max-width: 250px;
}

.logo-section img {
    max-width: 100%;
}

.logo-section h2 {
    color: var(--black-color);
    font-weight: bold;
    margin: 0;
    font-size: 28px;
}

.logo-section p {
    color: var(--black-color);
    margin: 0;
    font-size: 13px;
}

.navbar-nav .nav-link {
    color: var(--black-color);
    font-weight: 400;
    font-size: var(--body-font-size);
    padding: 8px 0px;
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.navbar-nav a.login-btn {
    background: var(--primary-color);
    color: var(--white-color) !important;
    text-decoration: none;
    padding: 6px 25px 7px 60px !important;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-nav a.login-btn span {
    transition: all 0.4s ease-in-out;
}

.navbar-nav a.login-btn img {
    position: absolute;
    left: -1px;
    width: 40px;
    height: auto;
    margin-right: 15px;
    transition: all 0.4s ease-in-out;
}

.navbar-nav a.login-btn:hover {
    background: var(--primary-color);
}

.navbar-nav a.login-btn:hover img {
    transform: translateX(91px);
    left: 1px;
}

.navbar-nav a.login-btn:hover span {
    transform: translateX(-25px);
}

.home-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    align-items: safe center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.home-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.home-popup-content {
    width: 100%;
    max-width: 680px;
    max-height: fit-content;
    background: #ffffff;
    border: 10px solid #255e84;
    border-radius: 0;
    padding: 15px;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
    overflow: visible;
}

.home-popup-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 34px;
    height: 34px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.home-popup-img-link {
    display: block;
}

.home-popup-img-link img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
    .home-popup-overlay {
        padding: 1.5rem 1rem;
    }

    .home-popup-content {
        border-width: 6px;
        max-width: 100%;
    }

    .home-popup-close {
        top: -14px;
        right: -14px;
        width: 30px;
        height: 30px;
    }
}

/* bg cover */
.bg_cover {
    background-image: url("../images/banner-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100%;
}

.bg_color {
    background: #ecf2f8;
    background-image: none !important;
}

/* Banner Section */
.banner_container .container {
    position: relative;
}

.banner_container img.banner-img {
    width: 100%;
    height: auto;
    z-index: 0;
    position: relative;
    cursor: pointer;
}

.banner-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.banner-content h1 {
    font-size: 46px;
    line-height: 1;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: var(--black-color);
}

.banner-content .btn {
    padding: 9px 35px;
    font-weight: 400;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-gray {
    background-color: var(--dark-gray);
    border: solid 2px var(--dark-gray);
    color: var(--white-color);
}

.btn-gray:hover {
    background-color: var(--dark-gray);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-gray-transparent {
    border: solid 2px var(--dark-gray);
    color: var(--dark-gray);
    background: transparent;
}

.btn-gray-transparent:hover {
    background-color: var(--dark-gray);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* .banner-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        .banner-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        } */

/* Info Cards Section */
.info-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.irro-imgs img {
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.section-title {
    margin-bottom: 7px;
}

.section-title h2 {
    font-size: var(--title-font-size);
    font-weight: 300;
    color: var(--black-color);
    margin: 0 0 8px 0;
}

.section-title p {
    color: var(--dark-gray);
    font-size: var(--body-font-size);
    margin-bottom: 17px;
    line-height: 24px;
}

.info-card {
    background: var(--white-color);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: var(--white-color);
}

.info-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--black-color);
}

.info-card p {
    color: var(--black-color);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-body {
    padding: 25px;
}

.service-card-body h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--black-color);
}

.service-card-body p {
    color: var(--black-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-card-body .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.service-card-body .btn-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.service-card-body .btn-link i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.service-card-body .btn-link:hover i {
    margin-left: 10px;
}


/* testimonial css */
.banner_container .testimonial-slider {
    position: absolute;
    top: 80px;
    right: 245px;
    background: var(--white-color);
    padding: 25px 35px 10px 25px;
    max-width: 360px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 180px;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.testimonial-card {
    text-align: left;
    padding-right:50px;
}

.testimonial-card img.profile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    margin: 0;
    font-size: 18px;
    color: #1c53a7;
}

.testimonial-card .company {
    color: var(--black-color);
    font-size: 14px;
}

.testimonial-card .text {
    margin-top: 10px;
    font-size: var(--body-font-size);
    line-height: 1.5;
    color: var(--dark-gray);
}

.userProfile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.member {
    background: var(--white-color);
    border-radius: 10px;
    max-width: 285px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 200px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 11;
    bottom: 150px
}

.member p {
    font-size: 18px;
    color: var(--black-color);
}

/* 25+ year experience */

.counter-section {
    padding: 50px 0;
    background: var(--white-color);
}

.counter-box {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    margin-top: 15px;
    padding-top: 28px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 185px;
    text-align: center;
}

.counter-box::after {
    content: '';
    position: absolute;
    background: rgba(4, 71, 138, 0.9);
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.counter-box span.counter {
    position: relative;
    z-index: 11;
    text-align: center;
    color: var(--white-color);
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
}

.counter-box span.plus {
    position: relative;
    z-index: 11;
    text-align: center;
    color: var(--white-color);
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
}

.counter-box p {
    position: relative;
    z-index: 11;
    margin: 0;
    font-size: 28px;
    color: var(--white-color);
    text-align: center;
    font-weight: 200;
}

.copyright-img img {
    border-radius: 7px;
}

.irro-box ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0;
}

.irro-box ul li {
    list-style: none;
    background-color: #e8eaf7;
    border-radius: 7px;
    padding: 16px 20px;
    transition: all 0.3s ease-in-out;
}

.irro-box ul li a {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.irro-box ul li h3 {
    margin: 0 0 4px;
    color: var(--black-color);
    font-size: 24px;
    line-height: 1.2;
}

.irro-box ul li p {
    font-size: var(--body2-font-size);
    color: var(--dark-gray);
    line-height: 1.2;
}

.irro-box ul li:hover {
    background-color: var(--primary-color);
}

.irro-box ul li:hover img {
    filter: brightness(0) invert(1);
}

.irro-box ul li:hover h3 {
    color: var(--white-color);
}

.irro-box ul li:hover p {
    color: var(--white-color);
}

.choose-irro {
    padding: 70px 0 190px;
    background: #f5f6fc;
}

.choose-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.choose-image {
    flex: 1 1 45%;
}

.choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.choose-content {
    flex: 1 1 45%;
}

.choose-content h2 {
    font-size: var(--title-font-size);
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 15px;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 2px solid #d5d8ef;
    margin-bottom: 20px;
}

.tab-link {
    padding: 10px 22px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--black-color);
    font-weight: 400;
}

.tabs button.tab-link {
    position: relative;
    top: 2px;
    font-family: "Onest", sans-serif;
    outline: none;
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content ul li {
    padding: 15px 0 10px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
}

.tab-content ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.tab-content ul li a:hover {
    margin-left: 5px;
    color: var(--primary-color);
}

.tab-content ul li::before {
    content: "\f061";
    font-weight: bold;
    margin-right: 10px;
    color: var(--primary-color);
    font-family: 'Font Awesome 7 Free';
}

section.why-choose-counter {
    margin-top: -140px;
}

.why-choose-counter ul {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.why-choose-counter ul li {
    list-style: none;
    border-radius: 100%;
    border: #d5d5d5 solid 1px;
    background: var(--white-color);
    width: 260px;
    height: 260px;
    line-height: 1.5;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-counter ul li:hover {
    border: var(--primary-color) solid 1px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.why-choose-counter ul li span.counter,
.why-choose-counter ul li span.plus {
    font-size: 5rem;
    color: var(--black-color);
    font-weight: 600;
    line-height: 1.1;
}

.why-choose-counter ul li:hover span.counter,
.why-choose-counter ul li:hover span.plus {
    color: var(--white-color);
}

.why-choose-counter ul li p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 175px;
    line-height: 1.2;
}

.why-choose-counter ul li:hover p {
    color: var(--white-color);
}

/* How it works */

.how-it-works {
    overflow: hidden;
    padding: 60px 0;
    position: relative;
}

h2.hiw-title {
    font-size: var(--title-font-size);
    font-weight: 300;
    color: var(--black-color);
    margin-bottom: 15px;
}

.hiw-carousel .hiw-box {
    position: relative;
    overflow: hidden;
    padding: 25px;
    background: #e8eaf7;
    border: 1.5px solid #e8eaf7;
    border-radius: 9px;
    transition: 0.3s;
    height: 400px;
    width: 100%;
}

.hiw-carousel .hiw-box .headSection {
    display: flex;
    justify-content: space-between;
}

.hiw-img {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.hiw-carousel .hiw-box:hover .hiw-img {
    opacity: 1;
    transform: scale(1.1);
}

.hiw-carousel .hiw-box:hover .hiw-img::before {
    content: '';
    background-color: rgba(4, 71, 138, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hiw-carousel .hiw-box .hiw-cont {
    position: relative;
    z-index: 1;
}

.hiw-carousel .hiw-box .hiw-cont hr {
    border-top: #979bb7 solid 1px !important;
    opacity: 1;
}

.hiw-carousel .hiw-box:hover .hiw-cont hr {
    border-top: var(--white-color) solid 1px !important;
}

.hiw-carousel .hiw-box .hiw-cont .headSection h3 {
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--black-color);
    font-size: 30px;
}

.hiw-carousel .hiw-box:hover .hiw-cont .headSection h3 {
    color: var(--white-color);
}

.hiw-carousel .hiw-box .hiw-cont .headSection h3 span {
    display: block;
}

.hiw-carousel .hiw-box .hiw-cont .headSection .num {
    margin-bottom: 10px;
    font-weight: 600;
    color: #c1c4d8;
    font-size: 30px;
}

.hiw-carousel .hiw-box:hover .hiw-cont .headSection .num {
    color: var(--white-color);
}

.hiw-carousel .hiw-box .hiw-cont p {
    font-size: var(--body-font-size);
    line-height: 1.5;
    color: var(--black-color);
    margin: 0;
}

.hiw-carousel .hiw-box:hover .hiw-cont p {
    color: var(--white-color);
}

.hiw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hiw-carousel .hiw-box img.icons {
    width: auto;
    position: absolute;
    bottom: 30px;
}

.hiw-carousel .hiw-box:hover img.icons {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* Dots styling */

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    margin: 5px;
    border-radius: 50%;
}

.owl-dots .owl-dot.active span {
    background: var(--black-color) !important;
}

.halfSlider {
    margin-right: -35%;
}

.halfSlider .owl-nav {
    position: absolute;
    top: -68px;
    right: 450px;
}

.halfSlider .owl-nav button {
    border: #dddddd solid 1px !important;
    width: 47px;
    height: 47px;
    margin: 0 3px;
    border-radius: 100%;
}

.how-it-works img.trangleLine {
    position: absolute;
    top: 120px;
    left: -15px;
}

/* get-started-today */

.get-started-today {
    background-image: url(../images/get-started-today-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
}

.get-started-today h2 {
    color: var(--white-color);
    font-size: var(--title-font-size);
}

.get-started-today p {
    color: var(--white-color);
    font-size: var(--body-font-size);
}

.get-started-today .get-a-licence {
    margin: 30px 0 40px;
}

.get-started-today .get-a-licence a {
    text-decoration: none;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 9px 27px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.get-started-today .get-a-licence a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-5px);
}

.get-started-today hr {
    border-top: var(--white-color) solid 1px !important;
    opacity: 1;
}

.get-started-today ul.list-buttons {
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.get-started-today ul.list-buttons li {
    list-style: none;
}

.get-started-today ul.list-buttons li a {
    text-decoration: none;
    color: var(--white-color);
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.get-started-today ul.list-buttons li a:hover {
    color: var(--secondary-color);
}

.get-started-today ul.list-buttons li a i {
    transition: all 0.3s ease-in-out;
}

.get-started-today ul.list-buttons li a:hover i {
    margin-left: 5px;
}

/* Latest Updates */

.latestUpdates {
    margin-top: 60px;
    position: relative;
}

.latestUpdates img.starIcon {
    position: absolute;
    top: 0;
    right: 0;
    width: 115px;
    height: auto;
}

.latestUpdates h2 {
    color: var(--black-color);
    font-size: var(--title-font-size);
    font-weight: 300;
    margin-bottom: 15px
}

.view-all-updates {
    text-align: right;
}

.view-all-updates a {
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: underline;
    font-style: italic;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.view-all-updates a:hover {
    color: var(--dark-gray);
    text-decoration: none;
}

.view-all-updates a i {
    margin-left: 8px;
    transition: all 0.3s ease-in-out;
}

.view-all-updates a:hover i {
    margin-left: 3px;
    transform: rotate(-30deg);
}

.latestUpdates .newsUpdates {
    background: #f3f4fb;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.latestUpdates .newsUpdates a {
    text-decoration: none;
}

.latestUpdates .newsUpdates .thumb {
    height: 350px;
    overflow: hidden;
}

.latestUpdates .newsUpdates .thumb img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.latestUpdates .newsUpdates:hover img {
    transform: scale(1.1);
}

.newsUpdates .content {
    padding: 25px 35px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.newsUpdates .content .date {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1;
}

.newsUpdates a .content h3 {
    margin: 0;
    padding: 0;
}

.newsUpdates a .content h3 {
    color: var(--primary-color);
    font-size: var(--blog-title-font-size);
    color: var(--black-color);
    text-decoration: none;
    line-height: 1.2;
    display: block;
    font-family: var(--body-font-family);
    font-weight: 400;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    line-clamp: 2;
    /* Unprefixed for modern browsers */
}

.newsUpdates a .content .halfLine {
    height: 2px;
    width: 20%;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.newsUpdates a:hover .content .halfLine {
    width: 0;
}

.latestUpdates .newsUpdates.order2 a {
    display: flex;
    flex-direction: column-reverse;
}

/* client logo */

.memberLogo {
    margin: 60px 0;
}

.memberLogo .row {
    display: flex;
    align-items: center;
}

.memberLogo h2 {
    font-size: var(--title-font-size);
    color: var(--black-color);
    margin-bottom: 15px;
    font-weight: 300;
}

.memberLogo .custom-arrows {
    border-left: #b6b6b6 solid 1px;
    height: 85px;
    display: flex;
    justify-content: end;
    gap: 5px;
    align-items: center;
}

.custom-arrows button {
    outline: none;
    border: var(--primary-color) solid 1px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-weight: 300;
    border-radius: 100px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}

.custom-arrows button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

/* footerNavBg */

.footerNavBg {
    background-image: url(../images/footerNavBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-top: 60px; */
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0;
}

.footerNavBg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 76%);
    z-index: -1;
}

.footerNavBg h3 {
    color: var(--white-color);
    font-size: 25px;
    margin-bottom: 24px;
}

.footerNavBg p {
    color: var(--white-color);
    font-size: var(--body-font-size);
    font-weight: 300;
    margin-bottom: 15px;
}

.footerNav {
    display: flex;
    justify-content: center;
}

.footerNav ul {
    margin: 35px 0 15px;
    padding: 0px;
    display: flex;
    border: rgba(255, 255, 255, 0.5) solid 1px;
}

.footerNav ul li {
    list-style: none;
    border-left: rgba(255, 255, 255, 0.5) solid 1px;
    display: inline-block;
}

.footerNav ul li:first-child {
    border-left: 0px;
}

.quicklinks ul {
    margin: 0;
    padding: 0;
}

.quicklinks ul li {
    list-style-type: none;
    margin-bottom: 8px;
}

.quicklinks ul li a {
    color: #fff;
    text-decoration: none;
}

.footerNav ul li a {
    display: block;
    padding: 0;
    border: none;
    font-size: var(--body-font-size);
    color: var(--white-color);
    padding: 20px 35px;
    margin: -1px;
    font-weight: 600;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: hsla(0, 0%, 100%, .2);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footerNav ul li a:hover {
    color: var(--black-color);
    background: var(--white-color);
}

.socialIcons {
    margin-top: 35px;
}

.socialIcons ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: start;
    gap: 10px;
}

.socialIcons ul li {
    list-style: none;
}

.socialIcons ul li a i {
    background: var(--dark-gray);
    color: var(--white-color);
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.socialIcons ul li a i:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

footer {
    background: var(--primary-color);
    padding: 12px 0;
}

footer .footer-bottom {
    text-align: center;
    color: var(--white-color);
    font-size: var(--body-font-size);
}

.go-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    font-size: 18px;
    width: 50px;
    height: 50px;
    line-height: 23px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    z-index: 1;
    display: none;
    border: #fff solid 4px;
}


/* Nav */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
}

@media (max-width: 991px) {
    .dropdown-submenu>.dropdown-menu {
        left: 0;
        margin-left: 1rem;
    }
}

/* Side Navigation */
/* ===== Desktop multi-level dropdown ===== */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

@media (min-width: 992px) {
    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }
}

/* ===== Mobile side menu ===== */
.mobile-menu {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
}

.submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9;
}

.submenu.show {
    display: block;
}

/* ===== Mobile Side Menu ===== */

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    align-items: center;
}

.mobile-menu .submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9;
}

.mobile-menu .submenu a {
    font-size: 14px;
}

.mobile-menu .arrow {
    font-weight: 400;
    font-size: 28px;
    line-height: 0;
}

/* Active submenu */
.mobile-menu .submenu.show {
    display: block;
    padding-left: 38px;
}


/* About Page/ Overview */

.bredcrumb {
    background-color: var(--bg-breadcrumb);
    padding: 40px 0 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-size: 14px;
    gap: 0px;
    margin: 0px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    padding: 5px 8px;
}

.breadcrumb-item a {
    color: var(--black-color);
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 4px;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    background: rgba(26, 84, 144, 0.1);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--dark-gray);
    margin: 0 4px;
    user-select: none;
}

.page-title {
    color: var(--primary-color);
    font-size: 2.2em;
    font-weight: 300;
    text-align: center;
}

/* overview section */
.overview-section {
    padding: 60px 0 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h1 {
    color: var(--black-color);
    font-size: var(--title-font-size);
    margin: 0;
    line-height: 1;
}

.section-label {
    color: var(--primary-color);
    font-size: var(--body-font-size);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 3.8em;
    font-weight: 400;
    color: var(--black-color);
    line-height: 1.15;
    font-family: var(--body-font-family);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Left Column */

.left-column {
    position: relative;
}

.image-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.protectingSection {
    display: flex;
    column-gap: 25px;
}

.protectingSection img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mission-section h3 {
    font-size: var(--subtitle-font-size);
    font-weight: 400;
    color: var(--black-color);
    margin-bottom: 15px;
}

.mission-item {
    margin-bottom: 25px;
}

.mission-item p {
    font-size: var(--body2-font-size);
    color: var(--dark-gray);
    line-height: 22px;
    margin: 0;
    padding: 0;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.mission-header img.security-icon {
    width: 30px;
    height: 30px;
}

.mission-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.mission-item h3 {
    font-weight: 400;
    color: var(--black-color);
    font-size: 22px;
    margin: 0;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details {
    flex: 1;
}

.contact-details p {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 0px;
    font-family: var(--title-font-family);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: normal;
    font-size: 1.05em;
}

.learn-more-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 13px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.learn-more-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.info-paragraph {
    font-size: var(--body-font-size);
    color: var(--dark-gray);
    line-height: 25px;
    margin: 0;
    padding: 0;
}

.security-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.security-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG Icons */
.shield-icon {
    width: 28px;
    height: 28px;
}

/* Fade Divider */

.fade-divider {
    position: relative;
    height: 1px;
    width: 100%;
    background: linear-gradient(to right,
            rgba(200, 200, 200, 0) 0%,
            rgba(200, 200, 200, 0.3) 5%,
            rgba(200, 200, 200, 0.8) 20%,
            rgba(200, 200, 200, 1) 50%,
            rgba(200, 200, 200, 0.8) 80%,
            rgba(200, 200, 200, 0.3) 95%,
            rgba(200, 200, 200, 0) 100%);
    margin: 40px 0;
}

/* Alternative version with border */
.fade-divider-alt {
    position: relative;
    height: 1px;
    width: 100%;
    margin: 40px 0;
    overflow: hidden;
}

.fade-divider-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            #ddd 15%,
            #ccc 50%,
            #ddd 85%,
            transparent 100%);
}


/* Reprographic Section */

.repro-wrapper {
    padding-top: 20px;
}

.repro-wrapper .top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 35px;
}

.repro-wrapper h2 {
    font-size: var(--title-font-size);
    color: var(--black-color);
    flex: 0 0 auto;
}

.intro-text {
    font-size: var(--body-font-size);
    line-height: 1.7;
    color: var(--dark-gray);
    max-width: 650px;
}

.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: center;
}

.img-box {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 408px;
    object-fit: cover;
}

.img-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.list-box {
    background: #f0f2f8;
    padding: 30px;
    height: 408px;
    border-radius: 20px;
}

.list-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 11px 0;
    border-bottom: 1px solid #d5d9e5;
}

.list-row:last-child {
    border-bottom: none;
}

.row-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.row-text {
    font-size: 18px;
    color: var(--black-color);
}

/* IRRO Work */
.works-area {
    background: linear-gradient(135deg, #0d5cb6 0%, #1976d2 100%);
    padding: 180px 0 60px;
    margin-top: -110px;
    color: #fff;
}

.works-heading {
    font-size: var(--title-font-size);
    font-weight: 400;
    font-family: var(--title-font-family);
    text-align: center;
    margin-bottom: 20px;
    color: var(--white-color);
}

.works-intro {
    font-size: var(--body-font-size);
    text-align: center;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 60px;
    opacity: 0.95;
}

.mandate-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.mandate-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.box-counter {
    font-family: var(--body-font-family);
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
}

.box-heading {
    font-size: 25px;
    font-weight: 400;
    font-family: var(--title-font-family);
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white-color);
}

.box-content {
    font-size: var(--body-font-size);
    line-height: 1.7;
    opacity: 0.9;
    font-family: var(--body-font-family);
}


/* Governing Body */

.team-wrapper {
    padding: 60px 0 130px;
    background: #fafafa;
    overflow-x: hidden;
}

.team-wrapper .halfSlider {
    margin-right: -35%;
}

.team-title {
    font-size: var(--title-font-size);
    font-family: var(--title-font-family);
    text-align: center;
    color: var(--black-color);
    margin-bottom: 35px;
}

.member-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 0px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.member-card:hover .member-info {
    background: linear-gradient(to top, rgba(21, 101, 192, 0.9) 0%, transparent 100%);
}

.member-name {
    font-size: var(--blog-title-font-size);
    font-weight: 400;
    font-family: var(--title-font-family);
    margin-bottom: 5px;
}

.member-role {
    font-size: var(--body2-font-size);
    opacity: 0.95;
    font-family: var(--body-font-family);
}

.team-wrapper .owl-nav {
    position: absolute;
    bottom: -90px;
    top: unset;
    left: 0;
}

.team-wrapper .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #ddd !important;
    margin: 0 10px;
    font-size: 20px !important;
    color: #333 !important;
    transition: all 0.3s ease;
}

.team-wrapper .owl-nav button:hover {
    background: #f5f5f5 !important;
    border-color: #bbb !important;
}

.team-wrapper .owl-nav button span {
    line-height: 50px;
}

.team-wrapper .owl-dots {
    display: none;
}

.team-wrapper .owl-theme .owl-nav [class*=owl-] {
    border-radius: 55px;
}

.team-wrapper .owl-nav span i {
    font-size: 18px;
}

/* India The World */

.comparison-area {
    background: #f0f0f5;
    padding: 60px 0;
}

.image-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
    margin-right: 50px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.secondary-image {
    position: absolute;
    bottom: 15px;
    right: 0px;
    z-index: 3;
    border-radius: 20px;
    overflow: hidden;
    border: #ffff solid 4px;
    width: 250px;
}

.secondary-image img {
    width: 100%;
    height: auto;
    display: block;
}

.decorative-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    z-index: 1;
    opacity: 0.3;
}

.content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-heading {
    font-size: var(--title-font-size);
    font-weight: 400;
    font-family: var(--title-font-family);
    color: var(--black-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.description-text {
    font-size: var(--body-font-size);
    line-height: 1.5;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

/* Past Chairmen */
.past-chairmen {
    padding: 60px 0;
}


/* IRRO Grievance */
.irro-grievance .hiw-cont ul {
    margin-top: 15px;
    padding: 0 0 0 20px;
}

.irro-grievance .hiw-cont ul li {
    color: var(--black-color);
    font-size: var(--body2-font-size);
}

.irro-grievance .hiw-carousel .hiw-box:hover .hiw-cont ul li {
    color: var(--white-color);
}

.padleft {
    padding-left: 100px;
}

/* Styling for Social Icons in Table */
.action-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Font Awesome 7 Icon Colors */
.fa-globe {
    color: #555;
}

.fa-facebook {
    color: #1877F2;
}

.fa-x-twitter {
    color: #000000;
}

/* Modern X icon */
.fa-linkedin {
    color: #0A66C2;
}

.fa-youtube {
    color: #FF0000;
}

.action-icons a:hover {
    opacity: 0.7;
}

.agm-detail-row {
    transition: all 0.3s ease;
}

.agm-detail-row:hover {
    background-color: #fcfdfe;
}

.agm-detail-row h5 {
    font-size: 1.05rem;
    line-height: 1.4;
    position: relative;
}

.agm-detail-row .text-muted {
    font-size: 15px;
    line-height: 1.7;
}

.tags-content {
    border-radius: 0 0 10px 10px;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.agms-section .list-row {
    padding: 0;
}

.agms-section .list-row .listing li {
    margin-top: 15px;
}

/* Contact Us  */

.contactSocial ul {
    display: flex;
    gap: 10px;
    padding: 0px;
}

.contactSocial ul li {
    list-style-type: none;
}

.contactSocial ul li a {
    text-decoration: none;
    color: var(--black-color);
    border: #ddd solid 1px;
    border-radius: 100px;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.contactSocial ul li a:hover {
    background-color: var(--secondary-color);
    border: var(--secondary-color) solid 1px;
    color: var(--white-color);
}

.mandate-box ul {
    padding: 0;
    margin: 0;
}

.mandate-box ul li {
    margin-bottom: 5px;
    padding-left: 18px;
    position: relative;
    list-style-type: none;
}

.mandate-box ul li i {
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 6px;
}

.mandate-box ul li:last-child {
    margin-bottom: 0;
}

.download-box {
    padding: 40px !important;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, .1);
}

.welcome_list {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    column-gap: 25px;
}

.irro-box {
    background-color: #e8eaf7;
    border-radius: 7px;
    padding: 16px 15px 0px;
    display: flex;
    align-items: center;
}
/* #works-car .owl-nav{
        display: none;
} */
#works-car .owl-stage{
    display: flex;
}
#works-car .owl-nav button{
    position: absolute;
    top: 50%;
}
#works-car .owl-nav button span{
    display: none;
}

#works-car .owl-nav .owl-prev{
    left: -45px;
    background: url(../images/left-arw.png) no-repeat center center;
    width: 33px;
    height: 33px;
    transform: translateY(-16px);
}
#works-car .owl-nav .owl-next{
    right: -45px;
    background: url(../images/right-arw.png) no-repeat center center;
    width: 33px;
    height: 33px;    
    transform: translateY(-16px);
}
 table a{
    color:var(--primary-color);
    text-decoration: none;
 }
 table a:hover{
    color:var(--black-color);
    text-decoration: none;
 }

 .footer .container {
    display: flex;
    justify-content: space-between;
}
.footer .container .text-left p {
    color:var(--white-color);
}
.footer .container .text-right p {
    color:var(--white-color);
}
.footer .container .text-right a {
    color:var(--white-color);
    text-decoration: none;
}